/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary: #1A1A1A;
    --secondary: #E9ECEF;
    --accent: #C9A961;
    --light: #F8F9FA;
    --muted: #A7AFB6;
    --border: #DEE2E6;
    --dark: #0D0D0D;
}

/* ============================================
   GLOBAL RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   BODY
   ============================================ */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--primary);
    overflow-x: hidden;
    background: var(--light);
    padding-top: 80px;
}

.fixed-top {
    height: 92px !important;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    transition: all 0.3s ease;
    z-index: 10;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.navbar-toggler {
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-left {
    flex: 1;
}

.navbar-icons {
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    color: var(--primary);
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-info-box {
    background: white;
    border-radius: 18px;
    padding: 3rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 2rem;
    transition: transform 0.4s ease;
}

.contact-info-box:hover .contact-icon {
    transform: rotate(-8deg) scale(1.1);
}

.contact-info-box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info-box p {
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contact-info-box a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-section {
    background: white;
    border-radius: 18px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-form-section p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--secondary);
}

.map-container {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Quick Section */
.faq-quick {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.faq-quick h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-quick p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-faq {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-faq:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* ============================================
   SEARCH BAR
   ============================================ */
.search-container {
    position: relative;
}

.search-input {
    width: 220px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.1);
    width: 280px;
}

.submit-input {
    width: 220px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.submit-input:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.1);
    width: 280px;
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-icon:hover {
    color: var(--secondary);
}

.submit-icon {
    right: 2rem;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-icon:hover {
    color: var(--secondary);
}

/* ============================================
   ICON LINKS
   ============================================ */
.icon-link {
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.icon-link:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.badge-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* ============================================
   MOBILE SEARCH MODAL
   ============================================ */
.search-modal-container {
    max-width: 500px;
    padding: 2rem;
}

.search-modal-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-modal-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.15);
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    background: var(--light);
    padding: 100px 0 60px;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
}

.page-header::before {
    display: none;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--muted);
}

.page-header-small {
    padding: 140px 0 60px;
    background: var(--light);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.breadcrumbs {
    font-size: .95rem;
    margin-bottom: .6rem;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 .4rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(212,175,55,0.03)" stroke-width="1"/></svg>');
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 100px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: textFadeUp 1s ease forwards;
}

.animate-text.delay-1 {
    animation-delay: 0.3s;
}

.animate-text.delay-2 {
    animation-delay: 0.6s;
}

@keyframes textFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-custom {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-custom:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-light-custom {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid white;
    background: white;
    color: var(--dark);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-light-custom:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-next,
.btn-prev {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-next {
    background: var(--accent);
    color: white;
}

.btn-next:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-prev {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-prev:hover {
    border-color: var(--primary);
}

.btn-submit {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-submit:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-save {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-save:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-checkout:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-continue {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-continue:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-load-more {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-load-more:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-small {
    background: var(--accent);
    color: white;
}

.btn-primary-small:hover {
    background: var(--primary);
    color: white;
}

.btn-secondary-small {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-secondary-small:hover {
    border-color: var(--primary);
}

.btn-primary-custom {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    color: white;
}

.btn-secondary-custom {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-add-cart {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-remove {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: #dc3545;
    border: 2px solid var(--border);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-remove:hover {
    border-color: #dc3545;
    background: #dc3545;
    color: white;
}

.btn-browse {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-browse:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    color: white;
}

.btn-apply {
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--accent);
}

/* ============================================
   SECTIONS
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--muted);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
    padding: 100px 0;
    background: var(--secondary);
}

.category-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.category-card:hover::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.8) 100%);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: white;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.category-card:hover .category-content {
    transform: translateY(-10px);
}

.category-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-content p {
    font-size: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.category-card:hover .category-content p {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 100px 0;
    background: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-overlay p {
    color: var(--secondary);
    font-size: 1rem;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-container {
    padding: 60px 0;
}

/* ============================================
   FILTER SECTION
   ============================================ */
.filter-section {
    padding: 40px 0;
    background: var(--light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-btn {
    padding: 0.7rem 2rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.3rem;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ============================================
   MASONRY GRID
   ============================================ */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
    grid-auto-rows: 20px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.masonry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.masonry-item.small {
    grid-row-end: span 12;
}

.masonry-item.medium {
    grid-row-end: span 18;
}

.masonry-item.large {
    grid-row-end: span 24;
}

.masonry-item.xlarge {
    grid-row-end: span 30;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.08);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.item-overlay p {
    color: var(--accent);
}

.masonry-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.masonry-item:hover .item-overlay h3 {
    transform: translateY(0);
}

.item-overlay p {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease 0.15s;
}

.masonry-item:hover .item-overlay p {
    transform: translateY(0);
}

.item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.masonry-item:hover .item-tags {
    transform: translateY(0);
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
}

.item-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.masonry-item:hover .item-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.action-btn:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.action-info-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.action-info-btn:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.item-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ============================================
LIGHTBOX
============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--secondary);
    color: white;
    transform: rotate(90deg);
}

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
}

.lightbox-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: var(--accent);
    font-size: 1.1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--secondary);
    color: white;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* ============================================
STATS SECTION
============================================ */
.stats {
    padding: 80px 0;
    background: var(--dark);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ============================================
CTA SECTION
============================================ */
.cta {
    padding: 100px 0;
    background: #fff;
    text-align: center;
    color: var(--dark);
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* ============================================
WHY CHOOSE US
============================================ */
.why-choose-us {
    padding: 100px 0;
    background: var(--light);
}

.why-box {
    background: white;
    border-radius: 18px;
    padding: 3rem 2.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-box:hover::before {
    opacity: 1;
}

.why-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 2.2rem;
    transition: transform 0.4s ease;
}

.why-box:hover .why-icon {
    transform: rotate(-8deg) scale(1.1);
}

.why-box h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.why-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
}

.why-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* ============================================
ABOUT SECTION
============================================ */
.about-section {
    padding: 100px 0;
    background: var(--light);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.about-content-section {
    padding: 100px 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* ============================================
MISSION & VISION
============================================ */
.mission-vision {
    padding: 100px 0;
    background: var(--secondary);
}

.mv-box {
    background: white;
    border-radius: 18px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.mv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mv-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.mv-box .icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* ============================================
VALUES SECTION
============================================ */
.values-section {
    padding: 100px 0;
    background: var(--light);
}

.value-box {
    background: white;
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 2rem;
}

.value-box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.value-box p {
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================
TEAM SECTION
============================================ */
.team-section {
    padding: 100px 0;
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.team-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.team-member .role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--muted);
    line-height: 1.6;
}

/* ============================================
PRODUCT SECTION
============================================ */
.product-section {
    padding: 100px 0;
}

.product-image {
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
}

.product-image img {
    width: 100%;
    transition: 0.4s;
}

.product-image:hover img {
    transform: scale(1.05);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stock {
    font-weight: 600;
    color: green;
}

/* ============================================
TABS
============================================ */
.nav-pills .nav-link {
    border-radius: 30px;
    padding: 0.6rem 1.6rem;
    border: 1px solid var(--border);
    color: var(--primary);
}

.nav-pills .nav-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}


.tab-content.active {
    display: block;
}

/* ============================================
RELATED PRODUCTS
============================================ */
.related-products {
    padding: 100px 0;
}

/* ============================================
CART SECTION
============================================ */
.cart-section {
    padding: 80px 0;
}

.cart-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.cart-item-details p {
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--primary);
}

.quantity-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem;
    font-weight: 600;
}

.remove-btn {
    color: #dc3545;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.remove-btn:hover {
    color: #a71d2a;
    transform: scale(1.1);
}

.remove-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-icon:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}

/* ============================================
CART SUMMARY
============================================ */
.cart-summary {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

.summary-row.total .amount {
    color: var(--accent);
}

/* ============================================
COUPON SECTION
============================================ */
.coupon-section {
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--accent);
}

/* ============================================
EMPTY CART
============================================ */
.empty-cart {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.empty-cart p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============================================
CHECKOUT SECTION
============================================ */
.checkout-section {
    padding: 60px 0 100px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--accent);
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-weight: 600;
    color: var(--muted);
    display: none;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--primary);
}

.step-divider {
    width: 50px;
    height: 2px;
    background: var(--border);
}

.checkout-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.checkout-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkout-form h3 i {
    color: var(--accent);
}

.billing-toggle {
    background: var(--light);
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* ============================================
PAYMENT METHODS
============================================ */
.payment-method {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method:hover {
    border-color: var(--accent);
    background: var(--light);
}

.payment-method.active {
    border-color: var(--accent);
    background: rgba(201, 169, 97, 0.05);
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
}

.payment-icon {
    font-size: 2rem;
    color: var(--accent);
}

.payment-details {
    display: none;
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 10px;
}

.payment-details.active {
    display: block;
}

/* ============================================
ORDER ITEMS
============================================ */
.order-summary {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-details h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.order-item-details p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.order-item-price {
    font-weight: 700;
    color: var(--accent);
}

.order-list {
    list-style: none;
    padding: 0;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.order-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.order-date {
    color: var(--muted);
    font-size: 0.9rem;
}

.order-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-processing {
    background: #ffc107;
    color: #000;
}

.status-shipped {
    background: #17a2b8;
    color: #fff;
}

.status-delivered {
    background: #28a745;
    color: #fff;
}

.order-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.order-info {
    flex: 1;
}

.order-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.order-info p {
    color: var(--muted);
    margin: 0;
    font-size: 0.85rem;
}

.order-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

.order-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
ORDER CONFIRMATION
============================================ */
.confirmation-section {
    padding: 100px 0;
    min-height: 80vh;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 4rem;
    color: white;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-animation {
    text-align: center;
    padding: 3rem 0;
}

.confirmation-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 3rem;
}

.confirmation-box h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.confirmation-box p {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.order-number {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.order-number strong {
    color: var(--accent);
    font-size: 1.3rem;
}

.details-box {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.details-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.details-box h3 i {
    color: var(--accent);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--primary);
}

.info-value {
    color: var(--muted);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.next-steps {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.next-steps h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.next-steps li i {
    color: var(--accent);
    font-size: 1.3rem;
}

.confirmation-details {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

/* ============================================
ACCOUNT SECTION
============================================ */
.account-section {
    padding: 80px 0 100px;
}

.account-sidebar {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 100px;
}

.user-profile {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
}

.user-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.user-email {
    color: var(--muted);
    font-size: 0.9rem;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--light);
    color: var(--accent);
}

.sidebar-menu a i {
    font-size: 1.2rem;
    width: 20px;
}

.content-box {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.content-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
}

/* ============================================
WISHLIST SECTION
============================================ */
.wishlist-section {
    padding: 80px 0;
}

.wishlist-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.wishlist-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.wishlist-image {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
}

.wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.wishlist-image:hover img {
    transform: scale(1.1);
}

.wishlist-details h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.wishlist-details p {
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.wishlist-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
}

.availability {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.in-stock {
    background: #d4edda;
    color: #155724;
}

.out-stock {
    background: #f8d7da;
    color: #721c24;
}

.wishlist-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.empty-wishlist {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-wishlist i {
    font-size: 5rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.empty-wishlist h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.empty-wishlist p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============================================
FORMS
============================================ */
.form-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.15);
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* ============================================
TERMS & POLICY SECTIONS
============================================ */
.terms-content {
    padding: 80px 0;
}

.terms-sidebar {
    position: sticky;
    top: 100px;
}

.terms-nav {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.terms-nav h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.terms-nav ul {
    list-style: none;
    padding: 0;
}

.terms-nav li {
    margin-bottom: 0.8rem;
}

.terms-nav a {
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.terms-nav a:hover,
.terms-nav a.active {
    color: var(--accent);
    border-left-color: var(--accent);
}

.terms-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.terms-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.terms-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.terms-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.terms-section ul,
.terms-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.terms-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 0.8rem;
}

.last-updated {
    background: var(--light);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.highlight-box {
    background: var(--light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* ============================================
ACCORDION (FAQ)
============================================ */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary);
    background: white;
    padding: 1.2rem 1.5rem;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--accent);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a961'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--muted);
    line-height: 1.8;
}

.accordion-body p {
    margin-bottom: 1rem;
}

.accordion-body ul,
.accordion-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.accordion-body li {
    margin-bottom: 0.5rem;
}

/* ============================================
LOAD MORE SECTION
============================================ */
.load-more-section {
    text-align: center;
    padding: 40px 0 80px;
}

/* ============================================
FOOTER
============================================ */
footer {
    background: var(--secondary);
    color: var(--primary);
    padding: 60px 0 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--dark);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--muted);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
    color: white;
}

/* ============================================
ICONS
============================================ */
.bi {
    color: var(--muted);
}

/* ============================================
RESPONSIVE MEDIA QUERIES
============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-link {
        padding: 0.8rem 0;
        width: 100%;
    }

    .nav-link::after {
        left: 0;
        transform: none;
    }

    .nav-link:hover::after {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .category-card {
        height: 250px;
    }

    .gallery-item img {
        height: 300px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .navbar-brand img {
        height: 35px;
    }

    .icon-link {
        font-size: 1.2rem;
    }

    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-gap: 20px;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-nav {
        display: none;
    }

    .lightbox-info {
        position: static;
        margin-top: 1rem;
    }

    .cart-item {
        padding: 1.5rem;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-summary {
        position: static;
        margin-top: 2rem;
    }

    .account-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .confirmation-box {
        padding: 2rem 1.5rem;
    }

    .details-box {
        padding: 2rem 1.5rem;
    }

    .order-item {
        flex-direction: column;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .wishlist-item {
        padding: 1.5rem;
    }

    .wishlist-image {
        width: 100px;
        height: 100px;
    }

    .wishlist-actions {
        flex-direction: column;
    }

    .btn-add-cart,
    .btn-remove {
        width: 100%;
    }

    .step-label {
        display: none !important;
    }

    .step-divider {
        width: 30px;
    }
}

@media (min-width: 768px) {
    .step-label {
        display: block;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Auth Section */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.auth-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.auth-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--muted);
    font-size: 1rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating label {
    color: var(--muted);
}

.form-control {
    padding: 1rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.15);
}

.password-toggle {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--muted);
    z-index: 10;
    font-size: 1.2rem;
}

.password-toggle:hover {
    color: var(--accent);
}

.form-check {
    margin-bottom: 1.5rem;
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-label {
    color: var(--primary);
    font-weight: 500;
}

.forgot-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-auth:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.carousel {
    position: relative;
    width: 100% !important;
}

/* ============================================
Button states
============================================ */

.wishlist-btn {
    position: relative;
    transition: all 0.3s ease;
}

.wishlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wishlist-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.wishlist-btn i {
    transition: all 0.3s ease;
}

.wishlist-btn:hover i {
    transform: scale(1.2);
}

.wishlist-btn[data-in-wishlist="true"] i {
    color: #e74c3c;
}

/* Order Status Badges */
.badge.bg-warning {
    background-color: #ffc107 !important;
}

.badge.bg-info {
    background-color: #0dcaf0 !important;
}

.badge.bg-primary {
    background-color: #0d6efd !important;
}

.badge.bg-success {
    background-color: #198754 !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

/* Order Card Hover Effect */
.order-card {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Language Switcher Styling */
.dropdown-item.active {
    background-color: #d4af37;
    color: white;
}

.dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   ARTWORK VIDEO CONTAINER
   ============================================ */
.artwork-video-container {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.artwork-video-container iframe {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.artwork-video-container iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .artwork-video-container {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .artwork-video-container iframe {
        width: 100%;
        height: 250px;
    }
}

.modal-xxxl-artwork {
    --bs-modal-width: 95%;
}

@media (min-width: 1200px) {
    .modal-xxxl-artwork {
        --bs-modal-width: 95%;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 3px solid #d4a574;
}

.cookie-consent:not(.hidden) {
    transform: translateY(0);
}

.cookie-consent .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-content {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e5e7eb;
}

.cookie-consent-content a {
    color: #d4a574;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-content a:hover {
    color: #b8935f;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cookie-consent .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ============================================
   NEWSLETTER MODAL
   ============================================ */
/* ============================================
   SINGULART STYLE NEWSLETTER MODAL
   ============================================ */
.newsletter-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-modal-overlay.hidden {
    display: none;
}

.newsletter-modal-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: all;
}

.newsletter-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: modalAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.newsletter-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.newsletter-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-modal-close:hover {
    background: #fff;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-modal-left {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.newsletter-modal-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    background-size: 100% 100%;
}

.newsletter-badge {
    position: absolute;
    top: 24px;
    left: 40px;
}

.badge-text {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-headline {
    margin-bottom: 40px;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discount-text {
    color: #FFD700;
    -webkit-text-fill-color: #FFD700;
    position: relative;
    display: inline-block;
}

.discount-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}

.newsletter-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.benefit-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.newsletter-modal-right {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.newsletter-form {
    width: 100%;
    max-width: 400px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    color: #333;
}

.newsletter-input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.1);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.2);
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.3);
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.newsletter-submit-btn:active {
    transform: translateY(0);
}

.newsletter-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    font-size: 16px;
    font-weight: 600;
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.newsletter-skip-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.newsletter-skip-btn:hover {
    color: #333;
    text-decoration-thickness: 2px;
}

.newsletter-terms {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.newsletter-terms p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.newsletter-terms a {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.newsletter-terms a:hover {
    color: #333;
}

.newsletter-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 36px;
    font-weight: bold;
    animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.newsletter-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.newsletter-success p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-modal-overlay {
        padding: 1rem;
    }

    .newsletter-modal-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .newsletter-modal-left {
        padding: 40px 24px;
    }

    .newsletter-modal-right {
        padding: 40px 24px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-subtitle {
        font-size: 16px;
    }

    .badge-text {
        font-size: 10px;
        padding: 6px 12px;
    }

    .benefit-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .benefit-text {
        font-size: 14px;
    }

    .newsletter-modal {
        max-width: 95%;
    }

    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-subtitle {
        font-size: 14px;
    }

    .newsletter-modal-left,
    .newsletter-modal-right {
        padding: 32px 20px;
    }

    .newsletter-input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .newsletter-submit-btn {
        padding: 16px 20px;
        font-size: 14px;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.share-facebook {
    background-color: #1877f2;
    color: white;
}

.share-facebook:hover {
    background-color: #0d65d9;
}

.share-twitter {
    background-color: #1da1f2;
    color: white;
}

.share-twitter:hover {
    background-color: #0c8bd9;
}

.share-linkedin {
    background-color: #0077b5;
    color: white;
}

.share-linkedin:hover {
    background-color: #005885;
}

.share-whatsapp {
    background-color: #25d366;
    color: white;
}

.share-whatsapp:hover {
    background-color: #1da851;
}

.cookie-consent {
    z-index: 10000 !important;
    position: fixed !important;
}

/* ============================================
   TWO-FACTOR AUTHENTICATION STYLES
   ============================================ */

/* 2FA Settings Page */
.two-factor-container {
    max-width: 900px;
    margin: 0 auto;
}

.two-factor-status-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.two-factor-header {
    background: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    padding: 2rem;
    border-bottom: 3px solid #a67c52;
}

.two-factor-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.two-factor-icon i {
    font-size: 2rem;
    color: white;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge.enabled {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.disabled {
    background: #fee2e2;
    color: #991b1b;
}

/* QR Code Section */
.qr-code-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.qr-code-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

.secret-code-box {
    background: white;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.secret-code-box code {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #1e293b;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Code Input */
.code-input-group {
    max-width: 400px;
    margin: 1.5rem auto 0;
}

.code-input {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-align: center;
    padding: 1rem;
    border: 2px solid #cbd5e1;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.code-input:focus {
    border-color: #d4a574;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
    outline: none;
}

/* Buttons */
.btn-2fa-primary {
    background: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-2fa-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    color: white;
}

.btn-2fa-secondary {
    background: #6b7280;
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-2fa-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
    color: white;
}

.btn-2fa-danger {
    background: #dc2626;
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-2fa-danger:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    color: white;
}

/* Alert Boxes */
.alert-2fa {
    border-radius: 12px;
    border: none;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-2fa.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left: 4px solid #059669;
}

.alert-2fa.info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.alert-2fa.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.alert-2fa.danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

/* Recovery Codes */
.recovery-codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.recovery-code-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    text-align: center;
    font-weight: bold;
    color: #1e293b;
    transition: all 0.3s ease;
}

.recovery-code-item:hover {
    border-color: #d4a574;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Danger Zone */
.danger-zone {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    border-radius: 12px;
    padding: 2rem;
}

.danger-zone h3 {
    color: #991b1b;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* Challenge Page Specific */
.challenge-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.challenge-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
}

.challenge-header {
    background: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    padding: 2rem;
    text-align: center;
    color: white;
}

.challenge-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-icon-wrapper i {
    font-size: 2.5rem;
}

.challenge-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.challenge-tab {
    flex: 1;
    padding: 0.75rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.challenge-tab.active {
    background: white;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.4s ease-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .two-factor-header {
        padding: 1.5rem;
    }

    .qr-code-section {
        padding: 1rem;
    }

    .recovery-codes-grid {
        grid-template-columns: 1fr;
    }

    .code-input {
        font-size: 1.2rem;
        letter-spacing: 0.3rem;
    }
}

/* Print Styles for Recovery Codes */
@media print {
    body * {
        visibility: hidden;
    }

    .recovery-codes-print,
    .recovery-codes-print * {
        visibility: visible;
    }

    .recovery-codes-print {
        position: absolute;
        left: 0;
        top: 0;
    }

    .btn,
    button {
        display: none !important;
    }
}