:root {
    --gold: #f6c84c; /* matching the image button color */
    --gold-light: #fad674;
    --white: #ffffff;
    --text-gray: #e6e6e6;
    --bg-dark: #0f0714;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 7, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo img {
    height: 75px; 
    object-fit: contain;
}

.mobile-login {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.icon-link {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: var(--gold);
}

.btn-login {
    background-color: var(--gold);
    color: #000;
    padding: 0.6rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: var(--gold-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px; 
}

/* Add a subtle overlay to ensure text is readable */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15, 7, 20, 0.85) 0%, rgba(15, 7, 20, 0.4) 50%, rgba(15, 7, 20, 0.1) 100%);
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.hero-content {
    max-width: 700px;
}

.sub-heading-top {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    padding-top: 3rem;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.gold-text {
    color: var(--gold);
}

.sub-heading-main {
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: var(--text-gray);
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 3rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background-color: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-outline {
    background-color: rgba(20, 10, 30, 0.4); 
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: #000;
}

/* Stats Section */
.stats-section {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding-right: 2.5rem;
    align-items: center;
    text-align: center;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(246, 200, 76, 0) 0%, rgba(246, 200, 76, 1) 50%, rgba(246, 200, 76, 0) 100%);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
}

.stat-text h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.stat-text p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.3;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.indicator {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 2rem;
}

.indicator:hover {
    color: var(--white);
}

.indicator.active {
    color: var(--gold);
}

.indicator:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    height: 1rem;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.indicator.active::after {
    background-color: var(--gold);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Collections Section */
.collections-section {
    background-color: #f8f5f0;
    padding: 6rem 0;
    color: #1a0b2e;
}

.collections-container {
    flex-direction: column;
}

.collections-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    width: 100%;
}

.section-heading {
    font-family: 'Playfair Display', serif;
}

.section-heading.dark-text {
    color: #2b1636;
    margin-bottom: 0;
    font-size: 3.5rem;
}

.decorative-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    width: 250px;
}

.decorative-line-stroke {
    flex-grow: 1;
    height: 1px;
    background-color: var(--gold);
}

.decorative-diamond {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    transform: rotate(45deg);
}

.decorative-diamond.small {
    width: 5px;
    height: 5px;
}

.header-right-btn {
    padding-bottom: 1rem;
}

.btn-outline-dark {
    background-color: transparent;
    color: #2b1636;
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark i {
    color: var(--gold);
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--gold);
    color: #fff;
}

.btn-outline-dark:hover i {
    color: #fff;
}

.collections-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.carousel-btn {
    background-color: #fff;
    color: var(--gold);
    border: 1px solid #e0d5c1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.carousel-btn:hover {
    background-color: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.collections-grid {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}
.collections-grid::-webkit-scrollbar {
    display: none;
}

.collection-card {
    min-width: 200px;
    flex: 1;
    height: 380px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(20, 5, 30, 0.9) 0%, rgba(20, 5, 30, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.card-divider {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 60%;
    margin-bottom: 1rem;
}

.card-divider::before, .card-divider::after {
    content: '';
    flex-grow: 1;
    height: 1px;
}

.card-divider::before {
    background: linear-gradient(to right, transparent, var(--gold));
}

.card-divider::after {
    background: linear-gradient(to left, transparent, var(--gold));
}

.view-designs {
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s ease;
    color: #e6e6e6;
}

.view-designs i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-designs:hover {
    color: var(--gold);
}

.view-designs:hover i {
    transform: translateX(3px);
}

/* Trust Section */
.trust-section {
    background-size: cover;
    background-position: center;
    padding: 5rem 0 6rem 0;
    color: var(--white);
    text-align: center;
}

.trust-container {
    flex-direction: column;
    align-items: center;
}

.trust-header {
    margin-bottom: 4rem;
}

.trust-header .section-heading {
    font-size: 3.5rem;
    margin-top: 0.5rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.trust-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
}

.trust-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

.feature-icon-circle {
    width: 125px;
    height: 125px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.feature-icon-circle i {
    font-size: 3.2rem;
    color: var(--gold);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    margin: 0;
    transition: all 0.3s ease;
}

.trust-feature:hover .feature-icon-circle {
    background-color: var(--gold);
    box-shadow: 0 0 25px rgba(246, 200, 76, 0.5);
    transform: translateY(-5px);
}

.trust-feature:hover .feature-icon-circle i {
    color: var(--bg-dark);
}

.trust-feature h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.trust-feature p {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 300;
}

.feature-divider {
    height: 140px;
    width: 2px;
    background-color: var(--gold);
    opacity: 0.6;
}

/* Section 4: Popular Post */
.popular-post-section {
    background-color: #FAF8F5;
    padding: 6rem 0;
    color: #1a0b2e;
}

.popular-post-section .container {
    flex-direction: column;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.popular-header-left {
    flex: 1;
}

.popular-header-right {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.popular-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.btn-dark {
    background-color: #1a0b2e;
    color: var(--gold);
    padding: 0.9rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid #1a0b2e;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-dark i {
    margin-left: 0.5rem;
}

.btn-dark:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #1a0b2e;
}

.popular-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.popular-cards {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 1rem;
}

.popular-cards::-webkit-scrollbar {
    display: none;
}

.popular-card {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.popular-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.card-meta {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.popular-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a0b2e;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.popular-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-actions {
    display: flex;
    gap: 0.8rem;
}

.btn-dark-small {
    background-color: #1a0b2e;
    color: var(--gold);
    padding: 0.7rem 0;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid #1a0b2e;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-dark-small i {
    margin-left: 0.4rem;
}

.btn-dark-small:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #1a0b2e;
}

.btn-outline-small {
    background-color: transparent;
    color: #a0814c;
    padding: 0.7rem 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid #d8cbbc;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-outline-small i {
    margin-left: 0.4rem;
}

.btn-outline-small:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.carousel-nav-btn {
    background-color: transparent;
    border: 2px solid #1a0b2e;
    color: #1a0b2e;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    z-index: 5;
    transition: all 0.3s ease;
    top: 160px;
    transform: translateY(-50%);
}

.carousel-nav-btn:hover {
    background-color: #1a0b2e;
    color: #fff;
}

.carousel-nav-btn i {
    font-size: 1.2rem;
}

.popular-carousel-wrapper .prev-btn {
    left: -22px;
}

.popular-carousel-wrapper .next-btn {
    right: -22px;
}

.carousel-indicators-bottom {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicators-bottom .indicator {
    width: 35px;
    height: 2px;
    background-color: #dcdcdc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators-bottom .indicator.active {
    background-color: #1a0b2e;
}

@media (max-width: 992px) {
    .popular-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .popular-header-right {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .popular-card {
        min-width: 250px;
    }
    .popular-carousel-wrapper .carousel-nav-btn {
        display: none;
    }
}

/* Section 5: Global Reach */
.global-reach-section {
    background-size: 100% 100%;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 6rem 0;
    color: var(--white);
    overflow: hidden;
}

.global-reach-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.global-reach-left {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.logo-circle {
    width: 280px;
    height: 280px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(246, 200, 76, 0.15);
    overflow: hidden;
    padding: 2rem;
}

.logo-circle img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
}

.global-reach-right {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.text-left {
    text-align: left;
}

.global-reach-right .section-heading {
    color: var(--white);
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.reach-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 95%;
}

.reach-stats-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 2.5rem;
    width: 100%;
    background: rgba(26, 8, 38, 0.4);
    backdrop-filter: blur(10px);
}

.reach-stat {
    text-align: center;
    flex: 1;
}

.reach-stat h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.reach-stat p {
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.4;
}

.reach-divider {
    width: 1px;
    height: 70px;
    background-color: var(--gold);
    opacity: 0.8;
    margin: 0 1rem;
}

/* Section 6: Tradition Meets Innovation */
.tradition-innovation-section {
    background-color: #fcf9f5;
    padding-top: 6rem;
    color: #1a0b2e;
}

.ti-container {
    margin-bottom: 4rem;
}

.ti-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.ti-left-content {
    flex: 1;
}

.ti-left-content .section-heading {
    font-size: 3.5rem;
    color: #1a0b2e;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.ti-decorative-line {
    width: 150px;
    margin-bottom: 2rem;
    margin-top: 0;
}

.ti-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 3rem;
    max-width: 90%;
}

.ti-features {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3rem;
}

.ti-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ti-feature img {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.ti-feature p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.ti-right-image {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ti-right-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Bottom Banner */
.ti-bottom-banner {
    background-color: #f8f4ec;
    background-image: linear-gradient(135deg, #fcf9f5 0%, #f4eee6 50%, #fcf9f5 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ti-banner-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.ti-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.ti-banner-item img {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.8rem;
}

.ti-banner-item p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.banner-divider {
    height: 50px;
    width: 1px;
    background-color: var(--gold);
    opacity: 0.4;
    margin: 0 1rem;
}

@media (max-width: 992px) {
    .collections-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .trust-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
    }
    .feature-divider {
        display: none;
    }
    .trust-feature {
        min-width: 30%;
        flex: unset;
    }
    .global-reach-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .global-reach-right {
        align-items: center;
    }
    .text-left {
        text-align: center;
    }
    .reach-description {
        max-width: 100%;
    }
    .ti-top-row {
        flex-direction: column;
        gap: 3rem;
    }
    .ti-right-image {
        width: 100%;
        justify-content: center;
    }
    .ti-banner-features {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
    .banner-divider {
        display: none;
    }
    .ti-banner-item {
        min-width: 30%;
        flex: unset;
    }
}

@media (max-width: 768px) {
    .section-heading.dark-text {
        font-size: 2.2rem;
    }
    .collection-card {
        min-width: 250px;
    }
    .carousel-btn {
        display: none; 
    }
    .trust-header .section-heading {
        font-size: 2.2rem;
    }
    .trust-feature {
        min-width: 45%;
    }
    .reach-stats-box {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    .reach-divider {
        width: 60px;
        height: 1px;
        margin: 0;
    }
    .logo-circle {
        width: 200px;
        height: 200px;
    }
    .global-reach-right .section-heading {
        font-size: 2.5rem;
    }
    .ti-left-content .section-heading {
        font-size: 2.2rem;
    }
    .ti-banner-item {
        min-width: 45%;
    }
    .ti-features {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .main-heading {
        font-size: 4.5rem;
    }
}

@media (max-width: 992px) {
    .main-heading {
        font-size: 3.8rem;
    }
    .stats-section {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .stat-box {
        padding-right: 1.5rem;
    }
    .slider-indicators {
        display: none; 
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .desktop-login {
        display: none;
    }
    
    .mobile-login {
        display: block;
    }
    
    .mobile-login .btn-login {
        background: transparent;
        color: var(--white);
        padding: 0.6rem 0;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        font-weight: 500;
        font-size: 0.95rem;
    }
    
    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        background: rgba(15, 7, 20, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: top 0.4s ease-in-out;
        padding: 80px 5% 20px;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        top: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-menu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .nav-menu a::after {
        content: '\f061';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 1rem;
        color: var(--gold);
        opacity: 0;
        transform: translateX(-15px);
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover::after, .nav-menu a.active::after {
        opacity: 1;
        transform: translateX(0);
    }
    
    .header {
        justify-content: space-between;
    }
    
    .logo {
        order: 2;
    }
    
    .menu-toggle {
        order: 1;
    }
    
    .header-actions {
        order: 3;
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    
    .header-actions .icon-link {
        font-size: 1.1rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .sub-heading-main {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }
    
    .stats-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        width: 100%;
    }
    
    .stat-box:not(:last-child)::after {
        display: none;
    }
    
    .stat-box {
        padding-right: 0;
        width: 100%;
    }
    
    .stat-text h3 {
        font-size: 1.5rem;
    }
    
    .stat-text p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .stat-box {
        width: 100%;
    }
    .main-heading {
        font-size: 2.2rem;
    }
}

/* Section 7: Art of Elegance */
.art-of-elegance-section {
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 6rem 0;
}

.art-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.art-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.art-subheading {
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: #1a0b2e;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.art-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: #4a2e5d;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.art-btn {
    background-color: #2b1035;
    color: #c9a871;
    border: 1px solid #c9a871;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.art-btn:hover {
    background-color: #c9a871;
    color: #2b1035;
}

@media (max-width: 768px) {
    .art-heading {
        font-size: 3rem;
    }
    .art-of-elegance-section {
        min-height: 450px;
    }
}
@media (max-width: 480px) {
    .art-heading {
        font-size: 2.2rem;
    }
    .art-of-elegance-section {
        padding: 4rem 0;
    }
}

/* Section 8: Discover Collection */
.discover-collection-section {
    background-color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.discover-collection-section .container {
    flex-direction: column;
    align-items: center;
}

.discover-header {
    margin-bottom: 4rem;
}

.discover-subheading {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #1a0b2e;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 0.8rem;
}

.discover-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 500;
}
.discover-heading .light-purple {
    color: #7b5887; 
}
.discover-heading .dark-purple {
    color: #2b1035;
}

.discover-box {
    width: 100%;
    border: 1px solid #ebdccc;
    border-radius: 8px;
    padding: 2.5rem 1rem;
    background-color: #ffffff;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.discover-box::-webkit-scrollbar {
    display: none;
}

.discover-items-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 1000px;
}

.discover-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}

/* Vertical dividers */
.discover-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #ebdccc;
}

.discover-item img {
    height: 90px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}
.discover-item:hover img {
    transform: scale(1.1);
}

.discover-label {
    font-size: 0.75rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.discover-line {
    width: 30px;
    height: 1px;
    background-color: #ebdccc;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.discover-line span {
    width: 5px;
    height: 5px;
    background-color: #ebdccc;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .discover-heading {
        font-size: 2.5rem;
    }
    .discover-collection-section {
        padding: 4rem 0;
    }
}

/* Footer Styles */
.footer,
.site-footer {
    background-color: #170928;
    color: #ffffff;
    padding: 6.5rem 0 3rem 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    flex-direction: column;
}

.footer-cta-banner,
.footer-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
    padding-top: 1.5rem;
    gap: 2rem;
}

.cta-left {
    max-width: 650px;
    text-align: left;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    text-align: left;
}

.cta-subtext {
    font-size: 0.95rem;
    color: #e0e0e0;
    text-align: left;
    margin-top: 0.4rem;
}

.cta-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

.btn-partner {
    background: linear-gradient(135deg, #f3d488 0%, #c19b55 100%);
    color: #170928;
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
    border: none;
    transition: opacity 0.3s;
    text-decoration: none;
}
.btn-partner:hover {
    opacity: 0.9;
    color: #170928;
}

.btn-contact {
    background-color: transparent;
    color: #c9a871;
    border: 1px solid #c9a871;
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-contact:hover {
    background-color: #c9a871;
    color: #170928;
}

.footer-divider {
    height: 1px;
    background-color: rgba(201, 168, 113, 0.3);
    width: 100%;
    margin: 0;
}

.footer-content-row {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col {
    width: 20%;
}
.newsletter-col {
    width: 28%;
}
.links-col {
    width: 12%;
}
.contact-col {
    width: 18%;
}
.hallmark-col {
    width: 10%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    object-fit: contain;
}
.brand-text {
    font-size: 0.8rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}
.social-icons {
    display: flex;
    gap: 0.8rem;
}
.social-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(201, 168, 113, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}
.social-icons a:hover {
    background-color: #c9a871;
    color: #170928;
    border-color: #c9a871;
}

.footer-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.gold-title {
    color: #c9a871;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.newsletter-col .footer-col-title {
    font-size: 1.4rem;
}
.newsletter-text {
    font-size: 0.75rem;
    color: #cccccc;
    margin-bottom: 1rem;
}
.newsletter-form {
    display: flex;
    width: 100%;
}
.newsletter-form input {
    flex-grow: 1;
    background-color: transparent;
    border: 1px solid rgba(201, 168, 113, 0.3);
    border-right: none;
    padding: 0.8rem;
    color: #fff;
    font-size: 0.8rem;
    outline: none;
}
.newsletter-form input::placeholder {
    color: #888;
}
.newsletter-form button {
    background: linear-gradient(135deg, #f3d488 0%, #c19b55 100%);
    color: #170928;
    border: none;
    padding: 0 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
}

.footer-mini-divider {
    width: 20px;
    height: 1px;
    background-color: rgba(201, 168, 113, 0.5);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
.footer-mini-divider span {
    width: 4px;
    height: 4px;
    background-color: #c9a871;
    transform: rotate(45deg);
}

.links-col ul, .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.links-col ul li {
    margin-bottom: 0.6rem;
}
.links-col ul li a {
    color: #cccccc;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
}
.links-col ul li a:hover {
    color: #c9a871;
}

.contact-info li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #cccccc;
    font-size: 0.8rem;
    line-height: 1.4;
}
.contact-info li i {
    color: #c9a871;
    margin-top: 0.2rem;
}

.hallmark-divider {
    height: 80px;
    width: 1px;
    background-color: rgba(255,255,255,0.2);
    margin-right: 1.5rem;
}
.hallmark-box {
    text-align: center;
}
.hallmark-box p {
    font-size: 0.7rem;
    color: #cccccc;
    line-height: 1.3;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: #888888;
}
.footer-legal a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal a:hover {
    color: #c9a871;
}
.footer-legal .separator {
    margin: 0 0.8rem;
}

/* Responsiveness */
@media (max-width: 992px) {
    .footer-content-row {
        flex-wrap: wrap;
    }
    .brand-col, .newsletter-col {
        width: 48%;
        margin-bottom: 2rem;
    }
    .links-col, .contact-col, .hallmark-col {
        width: 30%;
    }
    .hallmark-divider {
        display: none;
    }
}
@media (max-width: 768px) {
    .footer-cta-banner,
    .footer-cta-row {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .cta-left {
        text-align: center;
        max-width: 100%;
    }
    .cta-heading {
        text-align: center;
        font-size: 1.9rem;
    }
    .cta-subtext {
        text-align: center;
    }
    .cta-right {
        flex-direction: column;
        width: 100%;
    }
    .cta-right a {
        justify-content: center;
        width: 100%;
    }
    .brand-col, .newsletter-col {
        width: 100%;
        margin-bottom: 2rem;
    }
    .links-col, .contact-col, .hallmark-col {
        width: 45%;
        margin-bottom: 2rem;
    }
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ==========================================
   Page Hero / Inner Page Banner
========================================== */
.page-hero {
    position: relative;
    padding: 10rem 5% 5rem 5%;
    background: linear-gradient(135deg, rgba(15, 7, 20, 0.95), rgba(30, 15, 40, 0.9)), url('../images/bg1.png') center/cover no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(246, 200, 76, 0.2);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-breadcrumbs a {
    color: #e6e6e6;
    transition: color 0.3s;
}

.page-breadcrumbs a:hover {
    color: var(--gold);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================
   About Page Styles
========================================== */
.about-story-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.story-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(246, 200, 76, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: #d1d1d1;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

/* Values Grid */
.values-section {
    padding: 6rem 0;
    background: #140a1b;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 200, 76, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(246, 200, 76, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: var(--gold);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.value-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   Contact Page Styles
========================================== */
.contact-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 200, 76, 0.2);
    border-radius: 12px;
    padding: 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(246, 200, 76, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(246, 200, 76, 0.1);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.contact-card-text p, .contact-card-text a {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card-text a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 200, 76, 0.25);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-form-card p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.form-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-alert.success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: rgba(15, 7, 20, 0.8);
    border: 1px solid rgba(246, 200, 76, 0.3);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(246, 200, 76, 0.3);
}

select.form-control {
    color: var(--white);
}

select.form-control option {
    background-color: #0f0714;
    color: var(--white);
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--gold-light);
    box-shadow: 0 0 20px rgba(246, 200, 76, 0.4);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 4rem 0 6rem 0;
    background: var(--bg-dark);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(246, 200, 76, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: invert(90%) hue-rotate(180deg);
}

@media (max-width: 992px) {
    .story-grid, .contact-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 3rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .page-title {
        font-size: 2.5rem;
    }
}

/* ==========================================
   Auth (Login & Register) Styles
========================================== */
.auth-section {
    padding: 6rem 0 8rem 0;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-card {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 200, 76, 0.3);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

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

.auth-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.auth-footer-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #b0b0b0;
}

.auth-footer-text a {
    color: var(--gold);
    font-weight: 500;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

/* Form Helper Row */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #cccccc;
    margin-bottom: 1.8rem;
}

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

.forgot-link {
    color: var(--gold);
}

.forgot-link:hover {
    text-decoration: underline;
}

/* ==========================================
   Manufacturing Process Styles
========================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 200, 76, 0.2);
    border-radius: 16px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(246, 200, 76, 0.2);
}

.process-step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 700;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.process-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.process-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.process-card p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Filter Tabs for Collections */
.collection-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid var(--gold);
    color: #1a0b2e;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover, .filter-btn.active {
    background: #1a0b2e;
    color: var(--gold);
    border-color: #1a0b2e;
    box-shadow: 0 6px 20px rgba(26, 11, 46, 0.25);
}

/* ==========================================
   Collections Redesign V2 Styles
========================================== */
.collections-page-wrapper {
    background-color: var(--bg-dark);
    padding: 4rem 0 6rem 0;
}

.collections-control-bar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 200, 76, 0.25);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
}

.search-filter-box {
    position: relative;
    flex: 1;
    min-width: 260px;
    max-width: 400px;
}

.search-filter-box input {
    width: 100%;
    background: rgba(15, 7, 20, 0.9);
    border: 1px solid rgba(246, 200, 76, 0.3);
    border-radius: 30px;
    padding: 0.75rem 1.2rem 0.75rem 2.8rem;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-filter-box input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(246, 200, 76, 0.3);
}

.search-filter-box i {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.9rem;
}

.collection-count-badge {
    color: #cccccc;
    font-size: 0.95rem;
}

.collection-count-badge span {
    color: var(--gold);
    font-weight: 600;
}

/* Collections Grid V2 */
.collections-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.collection-card-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 200, 76, 0.2);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.collection-card-v2:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(246, 200, 76, 0.2);
}

.card-v2-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #0b050e;
}

.card-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collection-card-v2:hover .card-v2-image img {
    transform: scale(1.08);
}

.card-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 7, 20, 0) 40%, rgba(15, 7, 20, 0.85) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.card-badge-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 7, 20, 0.85);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.card-purity-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.card-v2-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-v2-category {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.card-v2-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.collection-card-v2:hover .card-v2-title {
    color: var(--gold);
}

.card-v2-desc {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-v2-specs {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(246, 200, 76, 0.2);
    font-size: 0.85rem;
    color: #d1d1d1;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.spec-item i {
    color: var(--gold);
}

.card-v2-actions {
    margin-top: auto;
    display: flex;
    gap: 0.8rem;
}

.btn-card-primary {
    flex: 1;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-card-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 0 15px rgba(246, 200, 76, 0.4);
}

.btn-card-outline {
    background: transparent;
    border: 1px solid rgba(246, 200, 76, 0.4);
    color: var(--white);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-card-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(246, 200, 76, 0.1);
}

/* Quick View Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 14, 0.88);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-card {
    background: #14071c;
    border: 1px solid var(--gold);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: rgba(246, 200, 76, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.modal-img-col {
    background: #08030b;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img-col img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    border-radius: 12px;
}

.modal-info-col {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.modal-info-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.modal-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-specs-list {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.modal-specs-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(246, 200, 76, 0.15);
    font-size: 0.9rem;
    color: #cccccc;
    display: flex;
    justify-content: space-between;
}

.modal-specs-list li strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .modal-content-card {
        grid-template-columns: 1fr;
    }
    .collections-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Collections Model 3 - Royal Atelier Gallery
========================================== */
.atelier-hero {
    position: relative;
    padding: 8.5rem 5% 4rem 5%;
    background: radial-gradient(circle at top center, rgba(35, 18, 50, 0.85) 0%, rgba(10, 5, 13, 0.98) 75%), url('../images/bg7.png') center/cover no-repeat;
    border-bottom: 1px solid rgba(246, 200, 76, 0.2);
}

.atelier-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.atelier-hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.atelier-hero-left h1 span.gold {
    color: var(--gold);
}

.atelier-hero-desc {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.atelier-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.atelier-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.highlight-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(246, 200, 76, 0.3);
    background: radial-gradient(circle at center, #261133 0%, #08030b 100%);
    padding: 0.5rem;
}

.highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlight-info h4 {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.highlight-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.highlight-info p {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.4;
}

/* Category Navigation Ribbon & Search Bar */
.category-ribbon-section {
    background: #0f0714;
    padding: 2.5rem 0 1.5rem 0;
    border-bottom: 1px solid rgba(246, 200, 76, 0.15);
}

.ribbon-controls-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.category-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.ribbon-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 200, 76, 0.25);
    padding: 0.75rem 1.6rem;
    border-radius: 30px;
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ribbon-item i {
    color: var(--gold);
}

.ribbon-item:hover, .ribbon-item.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(246, 200, 76, 0.4);
}

.ribbon-item:hover i, .ribbon-item.active i {
    color: var(--bg-dark);
}

/* Grid & Cards */
.atelier-gallery-section {
    padding: 4rem 0 6rem 0;
    background: var(--bg-dark);
}

.atelier-grid-uniform {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.atelier-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(246, 200, 76, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.atelier-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(246, 200, 76, 0.2);
}

.atelier-card-img {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1f0d2b 0%, #08030b 100%);
    height: 280px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atelier-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.atelier-card:hover .atelier-card-img img {
    transform: scale(1.08);
}

.atelier-badge-container {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.tag-gold {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
}

.tag-glass {
    background: rgba(15, 7, 20, 0.85);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.atelier-card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.atelier-category {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.atelier-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    color: var(--white);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.atelier-desc {
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.atelier-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-top: 1px dashed rgba(246, 200, 76, 0.2);
    border-bottom: 1px dashed rgba(246, 200, 76, 0.2);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #d1d1d1;
}

.atelier-meta-bar span i {
    color: var(--gold);
    margin-right: 0.35rem;
}

.atelier-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.btn-atelier-primary {
    flex: 1;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.85rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-atelier-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 0 20px rgba(246, 200, 76, 0.4);
}

.btn-atelier-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-atelier-icon:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

@media (max-width: 992px) {
    .atelier-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .atelier-grid-uniform {
        grid-template-columns: 1fr;
    }
}
