* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--comp-color);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Main Container representing the screen */
.viewport-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Background floating nail images */
.bg-nail-img {
    position: absolute;
    filter: blur(4px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    opacity: 0.8;
    z-index: 0;
}

/* Main Liquid Glass Card */
.glass-card {
    position: relative;
    width: 95%;
    max-width: 1200px;
    height: auto;
    max-height: 800px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(130%);
    -webkit-backdrop-filter: blur(25px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.08),
        inset 0 2px 3px rgba(255, 255, 255, 0.8),
        inset 0 -2px 3px rgba(255, 255, 255, 0.3);
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 40px 60px;
}

.glass-cardab {
    position: relative;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 800px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(130%);
    -webkit-backdrop-filter: blur(25px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.08),
        inset 0 2px 3px rgba(255, 255, 255, 0.8),
        inset 0 -2px 3px rgba(255, 255, 255, 0.3);
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding: 40px 60px;
}

/* Categories Section */
.category-section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #7a0031;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.category-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 2px 3px rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08), inset 0 2px 3px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.9);
}

.category-icon-wrapper {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.8), 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease;
}

.category-card img {
    width: 120px;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


.category-card:hover .category-icon-wrapper {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #7a0031;
    margin-bottom: 10px;
}

.category-desc {
    font-size: 0.95rem;
    color: #b85b73;
    line-height: 1.5;
    flex-grow: 1;
}

.explore-more {
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ff2a70;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.explore-more i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.category-card:hover .explore-more {
    color: #d10046;
}

.category-card:hover .explore-more i {
    transform: translateX(6px);
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto 90px;
    padding: 40px 20px 80px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 42px;
}

.testimonial-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.testimonials-section .section-title {
    margin-bottom: 0;
}

.testimonial-card {
    height: 100%;
    padding: 34px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 45px rgba(113, 0, 20, 0.07), inset 0 2px 4px rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 30px 56px rgba(113, 0, 20, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.testimonial-card.featured {
    background: linear-gradient(145deg, rgba(122, 0, 49, 0.9), rgba(96, 26, 53, 0.82));
    color: #fff;
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    color: var(--gold-color);
    font-size: 1rem;
}

.testimonial-text {
    margin: 0;
    color: #7a0031;
    font-size: 1rem;
    line-height: 1.75;
    flex: 1;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(122, 0, 49, 0.12);
    color: #7a0031;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(122, 0, 49, 0.12);
}

.testimonial-card.featured .testimonial-avatar {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.testimonial-author h4 {
    margin: 0 0 3px;
    color: #7a0031;
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-author span {
    color: #b85b73;
    font-size: 0.86rem;
}

.testimonial-card.featured .testimonial-author h4,
.testimonial-card.featured .testimonial-author span {
    color: #fff;
}

/* Site Footer */
.site-footer {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px 34px;
}

.site-footer .container {
    padding: 34px 38px 22px;
    border-radius: 30px 30px 0 0;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 -18px 40px rgba(113, 0, 20, 0.06), inset 0 2px 4px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.7fr;
    gap: 34px;
    align-items: start;
}

.footer-brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-brand img {
    width: 58px;
    height: auto;
    flex: 0 0 auto;
}

.footer-brand h3,
.footer-contact h4,
.footer-links h4 {
    margin: 0 0 10px;
    color: #7a0031;
    font-weight: 700;
}

.footer-brand h3 {
    font-size: 1.35rem;
}

.footer-brand p,
.footer-contact p,
.footer-contact a,
.footer-links a {
    color: #8d3958;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-brand p,
.footer-contact p {
    margin: 0;
}

.footer-contact,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a,
.footer-links a {
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--gold-color);
    transform: translateX(3px);
}

.footer-contact i {
    color: var(--gold-color);
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(122, 0, 49, 0.1);
    color: rgba(122, 0, 49, 0.62);
    font-size: 0.86rem;
    text-align: center;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 0 12px 24px;
    }

    .site-footer .container {
        padding: 28px 22px 20px;
        border-radius: 24px 24px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Navbar */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 20;
}

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #7a0031;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #c06c84;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.6);
    color: #7a0031;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-links a:hover:not(.active) {
    color: #900c3f;
    background: rgba(255, 255, 255, 0.3);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gold-color) !important;
}

.nav-icons i {
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
    color: var(--gold-color);
}

.nav-icons i:hover {
    color: #ff2a70;
}

.bag-wrapper {
    position: relative;
}

.bag-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #555;
    color: #fff;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Hero Content Area */
.hero-area {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 15;
}

.text-content {
    max-width: 500px;
}

.premium-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #b85b73;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-badge i {
    color: #ff8da1;
    font-size: 0.9rem;
}

.main-heading {
    font-size: 4rem;
    font-weight: 500;
    color: #601a35;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.subtext {
    font-size: 1.05rem;
    color: #c06c84;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 380px;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(224, 160, 184, 0.75);
    /* Muted pink glass */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 28px;
    border-radius: 30px;
    color: #4a2835;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(224, 160, 184, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.shop-btn:hover {
    background: rgba(224, 160, 184, 0.9);
    transform: translateY(-2px);
    color: #2b141d;
}

/* Right Side Graphics */
.graphics-area {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.circle-line {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.sparkle-icon {
    position: absolute;
    top: 10%;
    right: 25%;
    color: #fff;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.palette-container {
    position: absolute;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.palette-item {
    width: 28px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)) grayscale(30%);
    opacity: 0.6;
    transform: rotate(35deg);
}

.palette-item.active {
    filter: drop-shadow(0 6px 12px rgba(180, 100, 130, 0.4)) grayscale(0%);
    opacity: 1;
    transform: rotate(35deg) scale(1.35);
}

.main-nail-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    transform: translate(-50%, calc(-50% + 80px)) scale(0.95);
    filter: drop-shadow(20px 30px 25px rgba(180, 100, 130, 0.3));
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-nail-image.no-transition {
    transition: none !important;
}

.main-nail-image.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    z-index: 10;
}

.main-nail-image.exit-up {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 80px)) scale(0.95);
}

/* Bottom Features & Plus Button */
.card-footer-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    position: relative;
    z-index: 20;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item .num {
    font-size: 2rem;
    font-weight: 300;
    color: #d17a94;
    line-height: 1;
}

.feature-item .text {
    font-size: 0.85rem;
    color: #a14066;
    font-weight: 500;
    line-height: 1.4;
}

/* Floating + Button */
.plus-btn-wrapper {
    position: absolute;
    bottom: -75px;
    /* Pull it down to overlap the glass card border */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 4px 5px rgba(255, 255, 255, 0.8),
        inset 0 -2px 5px rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 30;
}

.plus-btn-wrapper i {
    font-size: 1.8rem;
    color: #601a35;
    font-weight: 300;
}

.plus-btn-wrapper:hover {
    transform: translateX(-50%) scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 4px 5px rgba(255, 255, 255, 1);
}

/* Separator line at bottom */
.bottom-line {
    position: absolute;
    bottom: 20px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.6) 80%, transparent);
    z-index: 10;
}

.vertical-line-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

@media (max-width: 992px) {
    .glass-card {
        padding: 30px;
        height: 90vh;
        overflow-y: auto;
    }

    .graphics-area {
        position: relative;
        transform: none;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .hero-area {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-footer-area {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-top: 40px;
    }

    .plus-btn-wrapper {
        bottom: 10px;
        left: auto;
        right: 30px;
        transform: none;
    }

    .bottom-line,
    .vertical-line-down {
        display: none;
    }

    .nav-links {
        display: none;
    }
}

body {
    font-family: var(--font-body);
    background: var(--comp-color);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 20px;
}

.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Background floating nail images */
.bg-nail-img {
    position: absolute;
    filter: blur(4px) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    opacity: 0.8;
    z-index: 0;
}

/* Top Navigation Area Container */
.nav-container {
    position: relative;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(130%);
    -webkit-backdrop-filter: blur(25px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 2px 3px rgba(255, 255, 255, 0.8);
    z-index: 20;
    margin-top: 20px;
}

/* Navbar */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #7a0031;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #c06c84;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.6);
    color: #7a0031;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-links a:hover:not(.active) {
    color: #900c3f;
    background: rgba(255, 255, 255, 0.3);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #a14066;
}

.nav-icons i {
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-icons i:hover {
    color: #ff2a70;
}

.bag-wrapper {
    position: relative;
}

.bag-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #555;
    color: #fff;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Shop Grid Section */
.shop-section {
    padding: 20px 20px 80px 20px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #7a0031;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.product-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 30px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 2px 3px rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08), inset 0 2px 3px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.9);
}

.product-image-wrapper {
    width: 100%;
    height: 220px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.product-card img {
    width: 110%;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff8da1;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 141, 161, 0.4);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #7a0031;
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    color: #b85b73;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.product-price {
    font-size: 17px;
    font-weight: 700;
    color: #601a35;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* =========================
   HORIZONTAL PRODUCT CARD
========================= */

.horizontal-card {
    display: flex;
    flex-direction: row;
    background: #fcfbf9;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    align-items: stretch;
    justify-content: space-between;
    transition: transform 0.3s ease;
    height: 100%;
}

.horizontal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.horizontal-card .product-image-wrapper {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    margin-bottom: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #2a2a2a;
    border: none;
    box-shadow: none;
}

.horizontal-card .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.horizontal-card .product-details-wrapper {
    flex-grow: 1;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal-card .product-title {
    font-family: serif;
    font-size: 26px;
    font-weight: 700;
    color: #6a0d24;
    margin-bottom: 8px;
}

.horizontal-card .product-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.horizontal-card .product-price {
    font-size: 24px;
    font-weight: 600;
    color: #cca664;
}

.horizontal-card .product-divider {
    display: none;
}

.horizontal-card .product-actions-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 15px;
}

.horizontal-card .add-cart-btn {
    background: transparent;
    color: #7a001e;

    border: 2px solid #7a001e;

    height: 52px;

    padding: 0 15px;

    border-radius: 100px;

    font-weight: 700;

    font-size: 10px;

    letter-spacing: 1.2px;

    width: 100%;

    transition: all 0.3s ease;

    text-transform: uppercase;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    white-space: nowrap;

    box-shadow: 0 6px 18px rgba(122, 0, 30, 0.08);
}

/* ICON */
.horizontal-card .add-cart-btn i {
    font-size: 16px;
}

/* HOVER */
.horizontal-card .add-cart-btn:hover {
    background: #7a001e;
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(122, 0, 30, 0.18);
}

/* ACTIVE */
.horizontal-card .add-cart-btn:active {
    transform: scale(0.98);
}

.horizontal-card .add-cart-btn i {
    font-size: 16px;
}

.horizontal-card .add-cart-btn:hover {
    background: #6a0d24;
    color: white;
}

@media (max-width: 991px) {
    .horizontal-card {
        flex-direction: column;
        padding: 25px;
    }

    .horizontal-card .product-image-wrapper {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1/1;
        margin-bottom: 25px;
    }

    .horizontal-card .product-details-wrapper {
        padding: 0;
        text-align: left !important;
        align-items: left !important;
    }

    .horizontal-card .product-divider {
        width: 100%;
        height: 1px;
        margin: 25px 0;
    }

    .horizontal-card .product-actions-wrapper {
        width: 100%;
    }
}

.cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a14066;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cart-btn:hover {
    background: #fff;
    color: #ff6b9e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 158, 0.2);
}

.buy-btn {
    background: rgba(224, 160, 184, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 30px;
    color: #4a2835;
    font-weight: 600;
    font-size: 10px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(224, 160, 184, 0.3), inset 0 2px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.buy-btn:hover {
    background: rgba(224, 160, 184, 1);
    transform: translateY(-2px);
    color: #2b141d;
    box-shadow: 0 8px 20px rgba(224, 160, 184, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-container {
        padding: 15px 25px;
    }
}

/* Confidence Section */
.confidence-section {
    padding: 100px 20px;
    background: #ffffff7b;
    position: relative;
    z-index: 10;
    border-radius: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding-bottom: 0px;
}

.confidence-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #a14066;
    font-family: 'Merriweather', 'Inter', serif;
    margin-bottom: 60px;
    line-height: 1.4;
}

.features-row {
    margin-bottom: 60px;
}

.feature-box {
    padding: 0 15px;
    margin-bottom: 30px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    height: 60px;
    width: auto;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #7a0031;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 0.85rem;
    color: #d17a94;
    line-height: 1.6;
}

/* Stacked Gallery */
.masonry-gallery.stacked-gallery {
    position: relative;
    width: min(100%, 980px);
    height: clamp(340px, 48vw, 560px);
    margin: 55px auto 0;
    display: block;
    overflow: visible;
}

.stack-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(220px, 34vw, 390px);
    height: clamp(300px, 42vw, 500px);
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 28px 60px rgba(113, 0, 20, 0.18), inset 0 1px 2px rgba(255, 255, 255, 0.75);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, filter 0.8s ease, box-shadow 0.8s ease;
    will-change: transform, opacity;
}

.stack-card.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 6;
    filter: none;
    box-shadow: 0 34px 80px rgba(113, 0, 20, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.85);
}

.stack-card.is-prev {
    transform: translate(calc(-50% - 205px), calc(-50% + 18px)) scale(0.84);
    opacity: 0.86;
    z-index: 4;
    filter: saturate(0.9) brightness(0.96);
}

.stack-card.is-next {
    transform: translate(calc(-50% + 205px), calc(-50% + 18px)) scale(0.84);
    opacity: 0.86;
    z-index: 4;
    filter: saturate(0.9) brightness(0.96);
}

.stack-card.is-prev-deep {
    transform: translate(calc(-50% - 360px), calc(-50% + 44px)) scale(0.66);
    opacity: 0.62;
    z-index: 2;
    filter: saturate(0.75) brightness(0.92);
}

.stack-card.is-next-deep {
    transform: translate(calc(-50% + 360px), calc(-50% + 44px)) scale(0.66);
    opacity: 0.62;
    z-index: 2;
    filter: saturate(0.75) brightness(0.92);
}

.stack-card.is-hidden {
    transform: translate(-50%, calc(-50% + 75px)) scale(0.58);
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 992px) {
    .masonry-gallery.stacked-gallery {
        height: clamp(320px, 62vw, 480px);
    }

    .stack-card.is-prev {
        transform: translate(calc(-50% - 145px), calc(-50% + 16px)) scale(0.78);
    }

    .stack-card.is-next {
        transform: translate(calc(-50% + 145px), calc(-50% + 16px)) scale(0.78);
    }

    .stack-card.is-prev-deep {
        transform: translate(calc(-50% - 245px), calc(-50% + 42px)) scale(0.6);
    }

    .stack-card.is-next-deep {
        transform: translate(calc(-50% + 245px), calc(-50% + 42px)) scale(0.6);
    }
}

@media (max-width: 768px) {
    .masonry-gallery.stacked-gallery {
        height: 360px;
        margin-top: 35px;
        overflow: hidden;
    }

    .stack-card {
        width: min(64vw, 260px);
        height: 320px;
        border-radius: 16px;
    }

    .stack-card.is-prev {
        transform: translate(calc(-50% - 92px), calc(-50% + 15px)) scale(0.76);
    }

    .stack-card.is-next {
        transform: translate(calc(-50% + 92px), calc(-50% + 15px)) scale(0.76);
    }

    .stack-card.is-prev-deep {
        transform: translate(calc(-50% - 162px), calc(-50% + 38px)) scale(0.58);
    }

    .stack-card.is-next-deep {
        transform: translate(calc(-50% + 162px), calc(-50% + 38px)) scale(0.58);
    }
}

/* Marquee Section (Police Tape Style) */
.marquee-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    margin-top: -180px;
    margin-bottom: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Looks better if it stays in the container */
}

.marquee-strip {
    position: absolute;
    width: 130%;
    /* Wider to cover edges when tilted */
    padding: 15px 0;
    /* Reduced thickness */
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.marquee-content {
    display: inline-flex;
    font-size: 3rem;
    /* Reduced font size to make strips thinner */
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    will-change: transform;
}

.marquee-content span {
    padding-right: 50px;
}

/* Strip 1: Back, tilted up, vibrant hot pink */
.strip-1 {
    background: #ff2a70;
    /* Hot, vibrant girlie pink */
    color: var(--gold-color) !important;
    transform: rotate(-8deg);
    /* Tweaked angle so text remains visible */
    z-index: 15;
}

.scroll-left {
    animation: scroll-left 35s linear infinite;
}

/* Strip 2: Front, tilted down, soft pastel girlie pink */
.strip-2 {
    background: #ffc2d1;
    /* Soft pastel pink */
    color: #7a0031;
    /* Deep contrasting dark pink/burgundy text */
    transform: rotate(2deg);
    /* Tweaked angle so text remains visible */
    z-index: 16;
}

.scroll-right {
    animation: scroll-right 35s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .marquee-wrapper {
        height: 160px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .marquee-content {
        font-size: 2rem;
    }

    .marquee-strip {
        padding: 10px 0;
    }
}

/* ========================================================================= */
/* COLOR PALETTE & FONT OVERRIDES (Based on User Requirements)               */
/* ========================================================================= */
:root {
    --main-color: #710014;
    --comp-color: #f2f1ed;
    --gold-color: #D89E52;
    --font-main-heading: 'Calabassas Regular', 'Calabassas', serif;
    --font-alt-heading: 'Felix Titling', 'Century Gothic', sans-serif;
    --font-body: 'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.main-heading,
.section-title,
.category-title {
    font-family: var(--font-main-heading) !important;
    color: var(--main-color) !important;
}

.confidence-title {
    font-family: var(--font-body) !important;
}

/* Alt Headings */
.brand,
.premium-badge,
.product-badge {
    font-family: var(--font-alt-heading) !important;
    color: var(--main-color) !important;
}

.marquee-content {
    font-family: var(--font-alt-heading) !important;
}

/* Specific text elements mapped to Main Color */
.nav-links a,
.subtext,
.feature-desc,
.category-desc,
.product-desc,
.feature-item .text {
    font-family: var(--font-body) !important;
    color: var(--main-color) !important;
    opacity: 0.85;
}

/* Active links, hover colors, buttons - Map to Main or Gold */
.nav-links a.active {
    color: var(--main-color) !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: var(--gold-color) !important;
}

.nav-links a:hover:not(.active) {
    color: var(--gold-color) !important;
}

.shop-btn,
.buy-btn {
    color: var(--comp-color) !important;
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    font-family: var(--font-alt-heading) !important;
    font-size: 10px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(113, 0, 20, 0.15) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.shop-btn:hover,
.buy-btn:hover {
    color: var(--main-color) !important;
    background: var(--gold-color) !important;
    border-color: var(--gold-color) !important;
    transform: translateY(-3px) !important;
    letter-spacing: 1.5px !important;
    box-shadow: 0 8px 20px rgba(216, 158, 82, 0.3) !important;
}

.explore-more {
    color: var(--gold-color) !important;
}

.explore-more:hover {
    color: var(--main-color) !important;
}

/*.nav-icons i {
    color: var(--gold-color);
}*/

.nav-icons i:hover {
    color: var(--gold-color) !important;
}

.bag-badge {
    background: var(--gold-color) !important;
    color: var(--comp-color) !important;
    border-color: var(--comp-color) !important;
}

/* Numbers and Icons mapped to Gold */
.feature-item .num {
    color: var(--gold-color) !important;
}

.product-price {
    color: var(--gold-color) !important;
    font-family: var(--font-main-heading) !important;
    font-size: 17px !important;
    letter-spacing: 0px !important;
    font-weight: normal !important;
}

.sparkle-icon {
    color: var(--gold-color) !important;
}

/* Marquee Strips */
.strip-1 {
    background: var(--main-color) !important;
    color: var(--gold-color);
}

.strip-2 {
    background: var(--gold-color) !important;
    color: var(--main-color) !important;
}

.confidence-section {
    background: rgba(242, 241, 237, 0.8) !important;
}

.plus-btn-wrapper i {
    color: var(--main-color) !important;
}

.cart-btn {
    color: var(--main-color) !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

.cart-btn:hover {
    color: var(--comp-color) !important;
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(113, 0, 20, 0.15) !important;
}

/* Additional Specific Fixes for Icons and text */
.brand {
    color: var(--main-color) !important;
}

.premium-badge i {
    color: var(--gold-color) !important;
}

/* Dark Mode Theme specifically for the About Page Layout */
body.about-page-body {
    background: var(--comp-color) !important;
    color: var(--main-color) !important;
    font-family: var(--font-body);
}

.about-nav-container {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(130%);
    -webkit-backdrop-filter: blur(25px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    padding: 20px 40px;
    width: 95%;
    max-width: 1200px;
    margin: 30px auto 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 2px 3px rgba(255, 255, 255, 0.8);
}

.about-nav-container .nav-links a {
    color: var(--main-color) !important;
    opacity: 0.8;
}

.about-nav-container .nav-links a.active {
    background: rgba(255, 255, 255, 0.6) !important;
    color: var(--main-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.about-nav-container .nav-icons i,
.about-nav-container .brand {
    color: var(--main-color) !important;
}

.sub-label {
    font-family: var(--font-alt-heading);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--gold-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

/* Hero Section */
.about-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 5%;
    position: relative;
}

.about-hero-heading {
    font-family: var(--font-main-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -4px;
    color: var(--main-color);
}

.about-hero-heading span {
    color: var(--gold-color);
}

.about-hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--main-color);
    opacity: 0.7;
    max-width: 500px;
    margin-bottom: 60px;
}

.scroll-discover {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-alt-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--main-color);
    opacity: 0.6;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-discover i {
    width: 40px;
    height: 40px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-color);
    transition: all 0.3s ease;
}

.scroll-discover:hover i {
    background: var(--gold-color);
    color: #000;
}

/* Hero Right Side Graphic */
.hero-graphic-container {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-mask {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(216, 158, 82, 0.2) 0%, transparent 70%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle-mask img {
    width: 80%;
    height: auto;
    transform: rotate(15deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* Stats Card (Overlapping) */
.hero-stats-card {
    position: absolute;
    bottom: 0;
    right: -5%;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(25px) saturate(130%);
    -webkit-backdrop-filter: blur(25px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 30px 40px;
    display: flex;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 2px 3px rgba(255, 255, 255, 0.8);
    z-index: 10;
}

@media (max-width: 1200px) {
    .about-hero-heading {
        font-size: 3.5rem;
    }

    .hero-stats-card {
        right: 0;
        gap: 20px;
        padding: 20px 30px;
    }
}

@media (max-width: 992px) {
    .about-hero-section {
        padding-top: 120px;
        text-align: center;
    }

    .about-hero-heading {
        font-size: 3rem;
    }

    .about-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .scroll-discover {
        justify-content: center;
        margin-bottom: 60px;
    }

    .hero-graphic-container {
        height: 450px;
    }

    .hero-circle-mask {
        width: 350px;
        height: 350px;
    }

    .hero-stats-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -50px;
        justify-content: center;
        width: 100%;
        gap: 30px;
    }
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--main-color);
    opacity: 0.6;
    margin: 0;
    max-width: 100px;
    line-height: 1.4;
}

/* Our Story Section */
.story-section {
    position: relative;
}

.story-image-container {
    position: relative;
    height: 320x;
}

.story-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 40px 40px 0;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.story-accent-shape {
    position: absolute;
    bottom: -20px;
    right: 10%;
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, var(--main-color), transparent);
    border-radius: 200px 0 200px 0;
    z-index: -1;
    opacity: 0.5;
}

.story-heading {
    font-family: var(--font-main-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--main-color);
}

@media (max-width: 768px) {
    .story-heading {
        font-size: 2.5rem;
    }

    .story-main-img {
        width: 100%;
        border-radius: 30px;
    }
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--main-color);
    opacity: 0.7;
    margin-bottom: 25px;
}

.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 1px solid var(--main-color);
    opacity: 0.8;
    padding: 10px 15px 10px 25px;
    border-radius: 40px;
    color: var(--main-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.custom-btn i {
    width: 32px;
    height: 32px;
    background: var(--gold-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.custom-btn:hover {
    border-color: var(--gold-color);
    color: var(--gold-color);
}

/* Principles Section */
.principles-section {
    padding: 80px 5% 150px;
}

.section-center-heading {
    text-align: center;
    font-family: var(--font-main-heading);
    font-size: 3rem;
    margin-bottom: 60px;
}

.principle-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 2px 3px rgba(255, 255, 255, 0.5);
}

.principle-card:hover {
    background: rgba(255, 255, 255, 0.65);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.9);
}

.p-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(216, 158, 82, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.p-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}

.p-desc {
    font-size: 0.9rem;
    color: var(--main-color);
    opacity: 0.7;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-align: left;
}

.p-number {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 800;
    color: var(--main-color);
    opacity: 0.05;
    line-height: 1;
    font-family: var(--font-alt-heading);
    z-index: 1;
}

/* Bottom Banner - Speed Differentiator */
.bottom-banner {
    background: var(--main-color);
    border: 1px solid rgba(216, 158, 82, 0.2);
    border-radius: 20px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 5% 80px;
    position: relative;
    overflow: hidden;
}

.bottom-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(216, 158, 82, 0.1);
    border-radius: 50%;
}

.banner-text h2 {
    font-family: var(--font-main-heading);
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--gold-color) !important;
}

.banner-text p {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.8;
    margin: 0;
}

.banner-action i {
    width: 60px;
    height: 60px;
    background: var(--gold-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.banner-action i:hover {
    transform: scale(1.1);
}

/* About Page Glass Container Specifics */
.about-viewport {
    padding: 40px 20px;
    background: transparent;
}

.about-glass-card {
    height: 92vh !important;
    max-height: 1000px !important;
    padding: 30px 50px !important;
    overflow: hidden;
}

.about-scroll-content {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    margin-top: 20px;
    padding-right: 15px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for About Content */
.about-scroll-content::-webkit-scrollbar {
    width: 5px;
}

.about-scroll-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.about-scroll-content::-webkit-scrollbar-thumb {
    background: rgba(113, 0, 20, 0.15);
    border-radius: 10px;
}

.about-scroll-content::-webkit-scrollbar-thumb:hover {
    background: rgba(113, 0, 20, 0.3);
}

@media (max-width: 992px) {
    .about-glass-card {
        padding: 20px !important;
        height: auto !important;
        max-height: none !important;
    }

    .about-scroll-content {
        overflow-y: visible;
        padding-right: 0;
    }
}

/* Collections Page Specifics */
.collections-hero {
    padding: 40px 0 60px;
}

.collections-hero .about-hero-heading {
    font-size: 3.8rem;
    margin-bottom: 15px;
}

.collections-hero .about-hero-text {
    max-width: 600px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Enhanced Category Cards for Collections Page */
.category-section .category-card {
    border-radius: 35px;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03), inset 0 2px 5px rgba(255, 255, 255, 0.8);
}

.category-section .category-icon-wrapper {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 0 10px 25px rgba(113, 0, 20, 0.05);
}

.category-section .category-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.category-section .category-desc {
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

/* Dropdown Menu Styles */
/* Dropdown Core Styling */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: stretch;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    padding: 10px;
    min-width: 220px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    margin-top: 5px;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

/* Collections Dropdown (Hover-based) */
.nav-item-dropdown:not(.user-dropdown) .dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(20px);
}

.nav-item-dropdown:not(.user-dropdown):hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

/* User Dropdown (Click-based) */
.user-dropdown .dropdown-menu {
    right: 0;
    left: auto;
    transform: translateY(20px);
}

.user-dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
    pointer-events: auto;
}

/* Hover Bridge (for Collections) */
.nav-item-dropdown:not(.user-dropdown)::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 5;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #7a0031;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 16px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--gold-color);
    transform: scale(1.02);
}

/* Home hero curved editorial layout */
.home-page .viewport-container {
    min-height: 100vh;
    padding: 12px;

}

.home-page .glass-card {
    height: min(86vh, 760px);
    min-height: 620px;
    max-width: 1280px;
    overflow: hidden !important;
    padding: 48px 66px 34px;
    background: rgba(255, 252, 248, 0.88);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.home-page .glass-card::before {
    content: '';
    position: absolute;
    inset: 0 0 0 31%;
    background: #4f0008;
    clip-path: ellipse(72% 82% at 70% 58%);
    z-index: 0;
}

.home-page .glass-card::after {
    content: '';
    position: absolute;
    left: 29.8%;
    top: -10%;
    width: 49%;
    height: 112%;
    background: rgba(255, 252, 248, 0.98);
    border-radius: 0 0 100% 0;
    z-index: 0;
}

.home-page .glass-nav {
    position: relative;
    z-index: 30;
}

.home-page .brand {
    color: #57000b;
}

.home-page .nav-links {
    margin-left: auto;
    margin-right: auto;
}

.home-page .nav-links a,
.home-page .dropdown-trigger {
    color: #6f2637;
}

.home-page .nav-links a.active {
    color: #5a000c;
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(111, 38, 55, 0.14);
}

.home-page .nav-icons {
    color: var(--gold-color);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.home-page .nav-icons i {
    color: var(--gold-color);
}

.home-page .hero-area {
    align-items: center;
    min-height: 0;
    padding: 48px 0 34px;
    z-index: 10;
}

.home-page .text-content {
    position: relative;
    z-index: 12;
    width: min(48%, 530px);
    max-width: 530px;
}

.home-page .about-hero-heading {
    margin: 0 0 24px;
    color: #65000d;
    font-size: clamp(3.4rem, 5vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.home-page .about-hero-heading span {
    font-style: normal;
}

.home-page .subtext {
    max-width: 490px;
    margin-bottom: 32px;
    color: #6d2130;
    font-size: clamp(0.92rem, 1.08vw, 1.12rem);
    line-height: 1.6;
}

.home-page .shop-btn {
    background: #8b0018;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 14px 24px rgba(139, 0, 24, 0.22);
}

.home-page .shop-btn:hover {
    background: #61000d;
    color: #fff;
}

.home-page .graphics-area {
    right: -2.5%;
    top: auto;
    bottom: -8%;
    width: 58%;
    height: 76%;
    transform: none;
    z-index: 8;
}

.home-page .circle-line,
.home-page .sparkle-icon,
.home-page .palette-container {
    display: none;
}

.home-page .main-nail-image {
    top: auto;
    left: auto;
    right: 0;
    bottom: -105px;
    width: min(52vw, 670px);
    max-height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform: translateY(70px) rotate(-2deg) scale(0.98);
    filter: drop-shadow(-26px 34px 34px rgba(0, 0, 0, 0.24));
}

.home-page .main-nail-image.active {
    transform: translateY(0) rotate(-34deg) scale(1.5);
}

.home-page .main-nail-image.exit-up {
    transform: translateY(-70px) rotate(-2deg) scale(0.98);
}

.home-page .bottom-line,
.home-page .vertical-line-down {
    display: none;
}

.home-page .card-footer-area {
    position: relative;
    z-index: 15;
    justify-content: flex-start;
}

.home-page .feature-item {
    margin: 0 !important;
}

.home-page .feature-item:nth-child(2) {
    display: none;
}

.home-page .feature-item .num {
    color: #c99034;
    font-size: 2.3rem;
}

.home-page .feature-item .text {
    color: #6d2130;
}

/* Appointment Booking */
.appointment-section {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: -18px auto 34px;
    padding: 0 20px;
}

.appointment-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: 0 24px 50px rgba(113, 0, 20, 0.08), inset 0 2px 4px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.appointment-copy {
    max-width: 650px;
}

.appointment-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.appointment-copy h2 {
    margin: 0 0 10px;
    color: #7a0031;
    font-family: var(--font-main-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.appointment-copy p {
    margin: 0;
    color: #8d3958;
    font-size: 1rem;
    line-height: 1.65;
}

.appointment-btn,
.appointment-submit-btn,
.appointment-secondary-btn {
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.appointment-btn,
.appointment-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    color: #fff;
    background: #8b0018;
    box-shadow: 0 14px 24px rgba(139, 0, 24, 0.2);
    white-space: nowrap;
}

.appointment-btn:hover,
.appointment-submit-btn:hover {
    background: #61000d;
    transform: translateY(-2px);
}

.appointment-secondary-btn {
    padding: 12px 22px;
    color: #7a0031;
    background: rgba(122, 0, 49, 0.08);
}

.appointment-modal .modal-content {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    background: rgba(255, 252, 248, 0.94);
    box-shadow: 0 34px 80px rgba(80, 0, 20, 0.18);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.appointment-modal .modal-header,
.appointment-modal .modal-footer {
    border: 0;
    padding: 24px 28px 10px;
}

.appointment-modal .modal-footer {
    padding: 8px 28px 28px;
}

.appointment-modal .modal-title {
    margin: 0;
    color: #7a0031;
    font-family: var(--font-main-heading);
    font-size: 2rem;
}

.appointment-modal .modal-body {
    padding: 12px 28px 18px;
}

.appointment-field {
    margin-bottom: 18px;
}

.appointment-field label {
    display: block;
    margin-bottom: 8px;
    color: #7a0031;
    font-size: 0.88rem;
    font-weight: 700;
}

.appointment-field input,
.appointment-field select {
    width: 100%;
    border: 1px solid rgba(122, 0, 49, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: #601a35;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.appointment-field input:focus,
.appointment-field select:focus {
    border-color: var(--gold-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(216, 158, 82, 0.14);
}

.appointment-success {
    min-height: 22px;
    margin: 2px 0 0;
    color: #7a0031;
    font-size: 0.92rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .home-page .glass-card {
        height: auto;
        min-height: 760px;
        padding: 28px 26px 30px;
    }

    .home-page .glass-card::before {
        inset: 48% 0 0 0;
        clip-path: ellipse(92% 80% at 67% 74%);
    }

    .home-page .glass-card::after {
        left: -8%;
        top: 34%;
        width: 72%;
        height: 42%;
        border-radius: 0 0 100% 0;
    }

    .home-page .nav-icons {
        color: #7a0031;
        text-shadow: none;
    }

    .home-page .hero-area {
        padding-top: 40px;
    }

    .home-page .text-content {
        width: 100%;
        max-width: 560px;
    }

    .home-page .graphics-area {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 390px;
        margin-top: 8px;
        align-self: stretch;
    }

    .home-page .main-nail-image {
        width: min(86vw, 540px);
        right: -28px;
        bottom: -100x;
    }

    .appointment-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .home-page .viewport-container {
        padding: 8px;
    }

    .home-page .glass-card {
        min-height: 720px;
        border-radius: 22px;
        padding: 22px 18px 24px;
    }

    .home-page .brand {
        font-size: 1rem;
    }

    .home-page .brand img {
        height: 42px !important;
    }

    .home-page .nav-icons {
        gap: 12px;
    }

    .home-page .about-hero-heading {
        font-size: clamp(2.55rem, 14vw, 3.6rem);
    }

    .home-page .subtext {
        font-size: 0.9rem;
    }

    .home-page .graphics-area {
        height: 330px;
    }

    .home-page .main-nail-image {
        width: min(108vw, 440px);
        right: -78px;
    }

    .appointment-section {
        padding: 0 12px;
        margin-top: 8px;
    }

    .appointment-card {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .appointment-btn {
        width: 100%;
    }
}

.dropdown-item i {
    font-size: 1.1rem;
    opacity: 0.7;
}

.dropdown-trigger.active {
    background: rgba(255, 255, 255, 0.6);
    color: #7a0031;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Ensure no clipping for the dropdown */
.viewport-container,
.glass-card,
.nav-container,
.glass-nav,
.nav-links {
    overflow: visible !important;
}

/* E-commerce Shop Enhancements */
.shop-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.shop-sidebar {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.shop-main {
    flex: 1;
}

.search-container {
    margin-bottom: 30px;
    position: relative;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 15px 25px 15px 55px;
    font-size: 1rem;
    color: var(--main-color);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--gold-color);
    box-shadow: 0 10px 25px rgba(113, 0, 20, 0.05);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    opacity: 0.5;
    font-size: 1.2rem;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--main-color);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.filter-checkbox:hover {
    opacity: 1;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--main-color);
    cursor: pointer;
}

.price-range {
    width: 100%;
    accent-color: var(--main-color);
    margin-top: 10px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--main-color);
    margin-top: 5px;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .shop-container {
        flex-direction: column;
    }

    .shop-sidebar {
        flex: none;
        position: static;
        margin-bottom: 30px;
    }
}

/* Navigation Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 800px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-overlay-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--main-color);
    font-size: 3rem;
    color: var(--main-color);
    padding: 20px 0;
    outline: none;
    font-family: var(--font-main-heading);
}

.search-overlay-input::placeholder {
    color: var(--main-color);
    opacity: 0.3;
}

.close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--main-color);
    cursor: pointer;
    transition: transform 0.3s;
}

.close-search:hover {
    transform: rotate(90deg) scale(1.1);
}

.search-hint {
    margin-top: 20px;
    color: var(--main-color);
    opacity: 0.5;
    font-size: 1.1rem;
}

/* Login & Signup Pages */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    width: 100%;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    padding: 50px;
    border-radius: 25px;
    background: beige;
    text-align: center;
}

.auth-header h2 {
    font-family: var(--font-main-heading);
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--main-color);
    opacity: 0.6;
    margin-bottom: 40px;
}

.auth-form .form-group {
    margin-bottom: 25px;
    text-align: left;
}

.auth-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 15px 20px;
    color: var(--main-color);
    transition: all 0.3s;
}

.auth-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--gold-color);
    box-shadow: 0 10px 20px rgba(113, 0, 20, 0.05);
}

.auth-btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-weight: 700;
}

.auth-footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--main-color);
    opacity: 0.7;
}

.auth-footer a {
    color: var(--main-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-color);
}

/* User Dropdown Specifics handled by .show class in main.js */
.user-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}

.dropdown-trigger {
    text-decoration: none;
    color: #c06c84;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.dropdown-trigger:hover {
    color: #900c3f;
    background: rgba(255, 255, 255, 0.3);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #7a0031;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 16px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--gold-color);
    transform: scale(1.02);
}


/* Page Transitions */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease;
}

/* For entrance animation */
.page-transition-overlay.entrance {
    opacity: 1;
    pointer-events: auto;
}

/* Initial Page Load Animation - Removed from body to preserve background stickiness */
body {
    margin: 0;
    padding: 0;
}

/* Page transitions will use the .page-transition-overlay exclusively */

/* ========================================================================= */
/* PRODUCT DETAIL PAGE STYLES                                                 */
/* ========================================================================= */

.product-detail-card {
    padding: 40px !important;
    max-width: 1400px !important;
    min-height: 170vh !important;
    display: flex;
    flex-direction: column;
}

.product-breadcrumb {
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--main-color);
    opacity: 0.6;
    font-family: var(--font-body);
}

.product-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.product-breadcrumb a:hover {
    opacity: 1;
}

.product-main-container {
    flex: 1;
}

/* Gallery */
.product-gallery {
    display: flex;
    gap: 20px;
}

.thumbnails-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80px;
}

.thumb-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.3);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--gold-color);
    box-shadow: 0 5px 15px rgba(216, 158, 82, 0.2);
}

.thumb-item.active img {
    opacity: 1;
}

.main-image-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.main-image-container img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.main-image-container:hover img {
    transform: scale(1.05);
}

.wishlist-btn-large {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--main-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.wishlist-btn-large:hover {
    transform: scale(1.1);
    color: #ff4d6d;
}

/* Info Sidebar */
.product-info-sidebar {
    padding-left: 20px;
}

.product-label {
    display: inline-block;
    padding: 5px 15px;
    background: var(--main-color);
    color: var(--comp-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-alt-heading);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-title {
    font-family: var(--font-main-heading);
    font-size: 17px;
    color: var(--main-color);
    margin-bottom: 10px;
    line-height: 1.1;
}

.rating-reviews {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stars {
    color: var(--gold-color);
}

.review-count {
    font-size: 0.85rem;
    color: var(--main-color);
    opacity: 0.6;
    text-decoration: underline;
    cursor: pointer;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.old-price {
    font-size: 1.2rem;
    color: var(--main-color);
    opacity: 0.4;
    text-decoration: line-through;
}

.current-price {
    font-family: var(--font-main-heading);
    font-size: 2.2rem;
    color: var(--gold-color);
}

.selection-group {
    margin-bottom: 30px;
}

.selection-label {
    display: block;
    font-family: var(--font-alt-heading);
    font-size: 0.9rem;
    color: var(--main-color);
    margin-bottom: 12px;
}

.color-picker-grid {
    display: flex;
    gap: 12px;
}

.color-swatch {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: var(--main-color);
    transform: scale(1.1);
}

.selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.size-chart-link {
    font-size: 0.8rem;
    color: var(--main-color);
    opacity: 0.6;
    text-decoration: none;
}

.size-picker-grid {
    display: flex;
    gap: 10px;
}

.size-item {
    width: 50px;
    height: 40px;
    border: 1px solid rgba(113, 0, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--main-color);
}

.size-item:hover {
    border-color: var(--main-color);
    background: rgba(255, 255, 255, 0.5);
}

.size-item.active {
    background: var(--main-color);
    color: var(--comp-color);
    border-color: var(--main-color);
}

.find-size-link {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--main-color);
    opacity: 0.6;
}

.qty-and-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-alt-heading);
    font-size: 0.9rem;
    color: var(--main-color);
}

.qty-dropdown {
    background: transparent;
    border: 1px solid rgba(113, 0, 20, 0.2);
    border-radius: 8px;
    padding: 5px 15px;
    outline: none;
    color: var(--main-color);
}

.add-to-cart-btn-large {
    width: 100%;
    padding: 16px;
    background: var(--main-color);
    color: var(--comp-color);
    border: none;
    border-radius: 40px;
    font-family: var(--font-alt-heading);
    letter-spacing: 2px;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(113, 0, 20, 0.2);
}

.add-to-cart-btn-large:hover {
    background: var(--gold-color);
    color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(216, 158, 82, 0.3);
}

.find-store-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1.5px solid var(--main-color);
    color: var(--main-color);
    border-radius: 40px;
    font-family: var(--font-alt-heading);
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.find-store-btn:hover {
    background: rgba(113, 0, 20, 0.05);
}

.product-share {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.product-share a {
    color: var(--main-color);
    font-size: 1.2rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.product-share a:hover {
    opacity: 1;
}

/* Tabs */
.product-tabs {
    border-top: 1px solid rgba(113, 0, 20, 0.1);
    padding-top: 20px;
}

.tabs-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(113, 0, 20, 0.05);
}

.tab-link {
    background: none;
    border: none;
    padding: 10px 0;
    font-family: var(--font-alt-heading);
    font-size: 0.9rem;
    color: var(--main-color);
    opacity: 0.5;
    position: relative;
    transition: opacity 0.3s;
}

.tab-link.active {
    opacity: 1;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-color);
}

.tab-content {
    display: none;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--main-color);
    opacity: 0.8;
}

.tab-content.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.tab-content ul {
    padding-left: 20px;
    margin-top: 15px;
}

/* =========================================
PRODUCT DETAILS PAGE - PREMIUM EDITION
========================================= */

.product-details-section {
    padding: 60px 24px 120px;
    position: relative;
    z-index: 10;
}

/* Premium animated gradient background */
.product-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(216, 158, 82, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.product-details-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 48px;
    padding: 56px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.4s ease;
}

.product-details-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* Gallery */

.product-gallery {
    width: 100%;
}

.main-product-image {
    width: 250%;
    height: 444px;
    border-radius: 36px;
    overflow: hidden;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 245, 240, 0.3) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 48px; */
    /* border: 1px solid rgba(255, 255, 255, 0.6); */
    /* box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.7), 0 20px 40px rgba(0, 0, 0, 0.08); */
    transition: all 0.5s ease;
}

.main-product-image img {
    width: auto;
    border-radius: 20px;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
    border-radius: 15px;
}

.main-product-image:hover img {
    transform: scale(1.05);
}

.thumbnail-row {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.thumb {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 24px;
    padding: 6px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.thumb:hover,
.thumb.active {
    border-color: var(--gold-color);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 30px -12px rgba(216, 158, 82, 0.25);
    background: rgba(255, 255, 255, 0.8);
}

/* Right Side - Premium Typography */

.details-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    background: rgba(216, 158, 82, 0.15);
    color: var(--gold-color);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-family: var(--font-alt-heading);
    font-weight: 500;
    backdrop-filter: blur(8px);
    border: 0.5px solid rgba(216, 158, 82, 0.3);
}

.details-title {
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--main-color);
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--main-color) 0%, #2c2c2c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.details-price {
    font-size: 2.4rem;
    color: var(--gold-color);
    margin-bottom: 28px;
    font-family: var(--font-main-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
    display: inline-block;
    padding: 0 0 8px 0;
    border-bottom: 2px solid rgba(216, 158, 82, 0.3);
}

.details-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--main-color);
    opacity: 0.85;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Feature Pills - Premium Variant */

.details-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.feature-pill {
    padding: 12px 24px;
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--main-color);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.feature-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(216, 158, 82, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.feature-pill i {
    color: var(--gold-color);
    font-size: 1.1rem;
}

/* Quantity Selector - Premium */

.quantity-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 60px;
    padding: 6px;
    width: fit-content;
    backdrop-filter: blur(12px);
    border: 0.5px solid rgba(255, 255, 255, 0.6);
}

.quantity-box button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: var(--main-color);
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quantity-box button:hover {
    background: var(--gold-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(216, 158, 82, 0.3);
}

.quantity-box input {
    width: 90px;
    height: 52px;
    border-radius: 30px;
    border: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    color: var(--main-color);
    font-weight: 600;
    font-size: 1.1rem;
    outline: none;
    font-family: inherit;
}

/* Buttons - Premium Elevated */

.details-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.custom-buy-btn {
    background: linear-gradient(135deg, var(--main-color) 0%, #1a1a1a 100%);
    color: var(--comp-color);
    border: none;
    padding: 18px 44px;
    border-radius: 60px;
    font-family: var(--font-alt-heading);
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.custom-buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.custom-buy-btn:hover::before {
    left: 100%;
}

.custom-buy-btn:hover {
    background: linear-gradient(135deg, var(--gold-color) 0%, #b8860b 100%);
    color: var(--main-color);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(216, 158, 82, 0.35);
}

.custom-outline-btn {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    color: var(--main-color);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 18px 44px;
    border-radius: 60px;
    font-family: var(--font-alt-heading);
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.custom-outline-btn:hover {
    background: var(--main-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Responsive - Premium Adjustments */

@media(max-width:992px) {
    .product-details-section {
        padding: 40px 20px 100px;
    }

    .details-title {
        font-size: 3.2rem;
    }

    .product-details-card {
        padding: 40px;
    }

    .main-product-image {
        height: 440px;
    }
}

@media(max-width:768px) {
    .product-details-section {
        padding: 24px 16px 80px;
    }

    .details-title {
        font-size: 2.4rem;
    }

    .main-product-image {
        height: 340px;
        padding: 28px;
    }

    .thumb {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .details-actions {
        flex-direction: column;
    }

    .custom-buy-btn,
    .custom-outline-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .product-details-card {
        padding: 28px;
    }

    .quantity-box {
        width: 100%;
        justify-content: center;
    }
}

/* =========================
   CHECKOUT PAGE
========================= */

.checkout-page {
    padding: 80px 0;
    background: #f8f7f4;
}

/* =========================
   BREADCRUMB
========================= */

.checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #777;
}

.checkout-breadcrumb a {
    color: #710014;
    text-decoration: none;
    transition: 0.3s;
}

.checkout-breadcrumb a:hover {
    opacity: 0.7;
}

/* =========================
   TITLES
========================= */

.section-title {
    font-size: 48px;
    color: #710014;
    margin-bottom: 10px;
    font-weight: 700;
}

.checkout-subtitle {
    color: #666;
    font-size: 16px;
}

/* =========================
   CARDS
========================= */

.checkout-card,
.checkout-summary {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* =========================
   BLOCKS
========================= */

.checkout-block {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.checkout-block:last-child {
    border-bottom: none;
}

.checkout-block-header {
    margin-bottom: 20px;
}

.checkout-block-header h3 {
    font-size: 22px;
    color: #710014;
    margin: 0;
    font-weight: 600;
}

/* =========================
   INPUTS
========================= */

.checkout-card label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

.auth-input {
    width: 100%;
    background: #f8f8f8;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.auth-input:focus {
    background: #fff;
    border-color: #710014;
    box-shadow: 0 0 0 4px rgba(113, 0, 20, 0.08);
}

textarea.auth-input {
    resize: none;
}

/* =========================
   SHIPPING OPTION
========================= */

.shipping-option {
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    background: #fafafa;
}

.shipping-option.active {
    border-color: #710014;
    background: rgba(113, 0, 20, 0.03);
}

.shipping-option p {
    margin: 5px 0 0;
    color: #777;
    font-size: 14px;
}

/* =========================
   PAYMENT OPTIONS
========================= */

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
    background: #fafafa;
}

.payment-option:hover {
    border-color: #710014;
}

.payment-option.active {
    border-color: #710014;
    background: rgba(113, 0, 20, 0.03);
}

.payment-option input {
    accent-color: #710014;
    width: 18px;
    height: 18px;
}

/* =========================
   TERMS
========================= */

.checkout-terms {
    font-size: 14px;
    color: #555;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-wrapper input {
    width: 18px;
    height: 18px;
    accent-color: #710014;
}

/* =========================
   BUTTON
========================= */

.checkout-btn {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 16px;
    background: #710014;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    background: #520010;
}

/* =========================
   SUMMARY
========================= */

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.summary-header h3 {
    color: #710014;
    margin: 0;
    font-size: 24px;
}

.summary-header span {
    font-size: 14px;
    color: #777;
}

/* =========================
   PRODUCTS
========================= */

.summary-products {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.summary-product-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-product-image {
    width: 80px;
    height: 80px;
    background: #f7f7f7;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.summary-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-product h4 {
    font-size: 16px;
    margin: 0 0 5px;
    color: #222;
}

.summary-product p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

/* =========================
   COUPON
========================= */

.coupon-box {
    display: flex;
    gap: 12px;
}

.coupon-btn {
    border: none;
    padding: 0 24px;
    border-radius: 14px;
    background: #710014;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.coupon-btn:hover {
    background: #520010;
}

/* =========================
   PRICING
========================= */

.summary-pricing {
    margin-top: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #444;
}

.total-row {
    font-size: 20px;
    color: #710014;
}

/* =========================
   SECURITY
========================= */

.checkout-security {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.security-item {
    background: #f8f8f8;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    color: #444;
}

/* =========================
   SHOP PAGE LAYOUT
========================= */

.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-sidebar {
    background: #fcfbf9;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    color: #6a0d24;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
    cursor: pointer;
}

.filter-checkbox input {
    accent-color: #6a0d24;
    width: 16px;
    height: 16px;
}

.price-range {
    width: 100%;
    accent-color: #6a0d24;
    margin-bottom: 10px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
}

.custom-btn {
    background: #6a0d24;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.custom-btn:hover {
    background: #4a0919;
}

.search-container {
    position: relative;
    margin-bottom: 30px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 18px;
}

.search-input {
    width: 100%;
    background: #fcfbf9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 18px 20px 18px 50px;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    outline: none;
    transition: 0.3s;
}

.search-input:focus {
    border-color: #6a0d24;
    box-shadow: 0 5px 20px rgba(106, 13, 36, 0.1);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
        position: static;
        margin-bottom: 30px;
    }

    .shop-sidebar.show {
        display: block;
    }

    .checkout-card,
    .checkout-summary {
        padding: 25px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {

    .checkout-page {
        padding: 50px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .summary-product {
        flex-direction: column;
        align-items: flex-start;
    }

    .coupon-box {
        flex-direction: column;
    }

    .coupon-btn {
        width: 100%;
        height: 50px;
    }
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gold-color);
}

.nav-collapse-wrapper {
    display: flex;
    flex: 1;
    align-items: center;
}

.nav-links {
    margin: 0 auto;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .glass-nav {
        position: relative;
    }

    .nav-collapse-wrapper {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: -40px;
        width: calc(100% + 80px);
        background: var(--main-color);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 20px 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
        z-index: 100;
        align-items: flex-start;
    }

    .nav-collapse-wrapper.show {
        display: flex !important;
    }

    .nav-links a {
        color: var(--gold-color) !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        margin: 0;
    }

    .nav-icons {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links a,
    .nav-links .dropdown-trigger {
        margin: 5px 0;
        width: 100%;
        padding: 10px 20px;
    }
}

/* About Page Responsive */
@media (max-width: 992px) {
    .glass-cardab {
        padding: 40px 20px;
        height: auto !important;
        min-height: auto !important;
        max-height: none;
    }

    .about-hero-text {
        font-size: 1rem;
    }

    .story-section .row>div {
        text-align: center;
    }

    .story-image-container img {
        margin-bottom: 30px;
    }

    .story-heading {
        font-size: 2.2rem;
    }

    .bottom-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-heading {
        font-size: 2.5rem !important;
    }

    .story-heading,
    .section-center-heading {
        font-size: 2rem !important;
    }

    .bottom-banner .banner-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .about-hero-heading {
        font-size: 2rem !important;
    }

    .story-heading,
    .section-center-heading {
        font-size: 1.6rem !important;
    }
}

.home-page .feature-item .text {
    color: var(--gold-color) !important;
}