/* --- REFRESHED PRODUCT CARD --- */
.product-card-refreshed {
    width: 100%;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
}

.pcr-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Square or adaptable */
    background: #f4f6f8;
    /* Light gray bg like in image */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcr-img {
    width: 80%;
    /* Adjust to not fill completely if we want the "studio" look */
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Helps if image has white bg */
    transition: transform 0.3s ease;
}

.pcr-image-container:hover .pcr-img {
    transform: scale(1.05);
}

.pcr-badge-row {
    margin-bottom: 8px;
}

.pcr-badge {
    display: inline-block;
    background: #f5f5f7;
    color: #333;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.pcr-info {
    text-align: left;
}

.pcr-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 4px 0;
    line-height: 1.4;
    color: #111;
}

.pcr-title a {
    color: inherit;
    text-decoration: none;
}

.pcr-desc {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Standard property */
    -webkit-box-orient: vertical;
}

.pcr-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
}


/* --- HERO SECTION (Specifics) --- */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    /* Prevent scrolling on small screens */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slider,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    z-index: 1;
    pointer-events: none;
}

.hero-slider {
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 90%;
    margin: 0 auto;
}

@media(min-width: 1024px) {
    .hero-content {
        justify-content: flex-start;
        padding-top: 360px;
        text-align: left;
    }
}

.subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.title {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 50px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Magnetic Buttons */
.btn {
    display: inline-block;
    padding: 18px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.8;
}

.line {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
}


.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SECTIONS --- */
.section {
    padding: 120px 0;
}

.section-head {
    margin-bottom: 80px;
    text-align: center;
}

.section-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-head h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.section-head p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* --- MARQUEE --- */
.marquee-section {
    padding: 20px 0;
    background: var(--white);
    border: none;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: max-content;
    /* Allow content to overflow naturally for seamless loop */
    gap: 30px;
    animation: scroll 30s linear infinite;
}

.brand-box {
    background: #f4f4f4;
    padding: 0 40px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-box:hover {
    background: #eaeaea;
}

.brand-box span {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- TRUST ICONS --- */
.trust-section {
    background: #fafafa;
    padding: 90px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: transform var(--transition-fast);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.icon-box {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.trust-item h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- HIGHLIGHT (Feature) --- */
.highlight-section {
    background: var(--white);
}

.highlight-flex {
    display: flex;
    align-items: center;
    gap: 100px;
}

.highlight-img {
    flex: 1;
    height: 650px;
    border-radius: 4px;
    overflow: hidden;
}

.highlight-text {
    flex: 0.9;
}

.badge-premium {
    background: var(--black);
    color: var(--accent);
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
}

.highlight-text h2 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.highlight-text .desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    line-height: 1.8;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #333;
}

.features-list i {
    color: var(--accent);
}

.btn-black {
    background: var(--black);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.btn-black:hover {
    background: var(--accent);
}

/* --- NEW ARRIVALS GRID (Detailed) --- */
.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.na-card {
    position: relative;
    transition: transform var(--transition-fast);
}

.na-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: #f4f4f4;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.na-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-cinema);
}

.na-card:hover .na-img-box img {
    transform: scale(1.1);
}

/* Glass Floating Actions */
.na-actions {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s var(--ease-cinema);
}

.na-card:hover .na-actions {
    opacity: 1;
    transform: translateY(0);
}

.na-actions a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--black);
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.na-actions a:hover {
    background: var(--black);
    color: var(--white);
    transform: scale(1.1);
}

/* --- REFRESHED SHOWCASE SECTION --- */
.showcase-section {
    padding: 70px 0;
    background: #ffffff;
    font-family: 'Jost', sans-serif;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.showcase-tabs {
    display: flex;
    gap: 15px;
}

.showcase-tab {
    background: #f4f4f4;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    /* Matching reference rounded rect */
    /* Slightly rounded tabs */
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-tab.active {
    background: #111;
    /* Black active tab */
    color: #fff;
}

.showcase-nav {
    display: flex;
    gap: 10px;
}

.showcase-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.showcase-arrow:hover {
    background: #f9f9f9;
    border-color: #ddd;
}

/* Track & Grid */
.showcase-viewport {
    overflow: hidden;
    /* For slider behavior */
    width: 100%;
}

.showcase-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Default 4 cols */
    gap: 20px;
    transition: transform 0.5s ease;
    /* If we want a true slider later, we'd use flex, but user image looks like a grid. 
       Let's stick to Grid for now, matching the image strictly. */
}

/* Card Styles (Specific to this section as requested) */
/* Card Styles (Refined) */
.sc-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.3s ease;
}

.sc-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    /* Square */
    background: #f5f5f7;
    /* Slightly lighter gray */
    border-radius: 16px;
    /* Increased radius */
    overflow: hidden;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.sc-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Store Logic: contain usually better for watches/items to not crop */
    /* If user wants 'cover', we can switch, but 'contain' with multiply blend is safer for white bg images provided */
    mix-blend-mode: multiply;
    transition: opacity 0.4s ease, transform 0.5s ease;
    padding: 20px;
    /* Internal padding so image doesn't touch edges */
}

/* Front Image (Default Visible) */
.sc-img-front {
    opacity: 1;
    position: relative;
    z-index: 1;
}

/* Back Image (Default Hidden) */
.sc-img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}

/* Hover Effects */
.sc-card:hover .sc-img-front {
    opacity: 0;
}

.sc-card:hover .sc-img-back {
    opacity: 1;
    transform: scale(1.05);
}

/* Fallback if no back image, just zoom front */
.sc-card:hover .sc-img-front:only-child {
    opacity: 1;
    transform: scale(1.08);
}

/* Badge Refined */
.sc-badge {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    color: #111;
    font-size: 0.75rem;
    /* Slightly larger readable text */
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    /* Sharper corners as per image */
    align-self: flex-start;
    margin-top: 15px;
    /* Space from image */
    margin-bottom: 8px;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sc-title {
    font-size: 1.05rem;
    /* Larger title */
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.sc-card:hover .sc-title {
    color: #000;
}

.sc-subtitle {
    font-size: 0.9rem;
    color: #86868b;
    margin-bottom: 12px;
    font-weight: 400;
}

.sc-price {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .showcase-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .showcase-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Hide nav arrows on mobile if desired, or keep them */
}

@media (max-width: 480px) {
    .showcase-track {
        grid-template-columns: 1fr;
    }
}


/* --- COLLECTIONS MOSAIC --- */
.grid-collection-expanded {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
}

.col-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
}

.col-item img {
    width: 100%;
    height: 100%;
    transition: transform 1s var(--ease-cinema);
}

.col-item:hover img {
    transform: scale(1.1);
}

.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.item-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.item-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.col-text {
    position: absolute;
    bottom: 35px;
    left: 35px;
    color: var(--white);
    z-index: 2;
    pointer-events: none;
}

.col-text h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.link-underline {
    display: inline-block;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 2px;
}


/* --- REVIEWS --- */
.reviews-section {
    background: var(--white);
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.review-card {
    background: #fdfdfd;
    padding: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: #eee;
    color: #555;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
}

/* --- NEWSLETTER --- */
.newsletter-parallax {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
/* Tablet */
@media(max-width: 1200px) {
    .new-arrivals-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-flex {
        gap: 50px;
    }

    .highlight-text h2 {
        font-size: 3rem;
    }
}

/* Mobile Land/Tablet Vert */
@media(max-width: 900px) {

    /* Hero */
    .title {
        font-size: 3.5rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        padding-top: 0;
    }

    /* Grids */
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Mosaic */
    .grid-collection-expanded {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    /* Re-map mosaic for 2 cols */
    .item-1 {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 300px;
    }

    .item-2 {
        grid-column: 1 / 2;
        grid-row: 2;
        height: 250px;
    }

    .item-3 {
        grid-column: 2 / 3;
        grid-row: 2;
        height: 250px;
    }

    .item-4 {
        grid-column: 1 / 2;
        grid-row: 3;
        height: 250px;
    }

    .item-5 {
        grid-column: 2 / 3;
        grid-row: 3;
        height: 250px;
    }

    /* Highlight */
    .highlight-flex {
        flex-direction: column;
        text-align: center;
    }

    .highlight-img {
        width: 100%;
        height: 400px;
    }

    .highlight-text {
        width: 100%;
    }

    .features-list li {
        justify-content: center;
    }
}

/* Mobile Portrait */
@media(max-width: 600px) {
    .section {
        padding: 60px 0;
    }

    .title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .subtitle {
        letter-spacing: 4px;
        font-size: 0.8rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Mosaic to Single Column */
    .grid-collection-expanded {
        grid-template-columns: 1fr;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5 {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 250px;
    }

    .section-head h2 {
        font-size: 2.2rem;
    }

    /* New Arrivals Mobile */
    .na-actions {
        opacity: 1;
        transform: translateY(0);
        bottom: 10px;
    }

    .na-actions a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .newsletter-parallax .title {
        font-size: 2rem !important;
    }
}

/* --- TESTIMONIALS SLIDER --- */
.reviews-section {
    padding: 100px 0;
    background: #f9f9f9;
    text-align: center;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding: 0 20px;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: fadeUp 0.8s ease;
}

.testimonial-slide.active {
    display: flex;
}

.quote-icon {
    font-family: 'Italiana', serif;
    font-size: 5rem;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 20px;
}

.t-quote {
    font-family: 'Italiana', serif;
    font-size: 1.8rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: italic;
}

.t-author h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #000;
}

.t-author span {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
}

.t-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.t-dot.active {
    background: #003153;
    transform: scale(1.2);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MINIMAL CONTACT SECTION --- */
#contact {
    padding: 100px 0;
}

.contact-wrapper-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cm-title {
    font-family: 'Italiana', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cm-desc {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 400px;
}

.cm-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cm-item {
    display: flex;
    flex-direction: column;
}

.cm-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.cm-value {
    font-size: 1rem;
    color: #333;
    font-weight: 400;
}

/* Minimal Form */
.cm-form-box {
    padding: 20px;
}

.form-group-minimal {
    margin-bottom: 30px;
}

.form-control-minimal {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s;
    outline: none;
    border-radius: 0;
}

.form-control-minimal:focus {
    border-bottom-color: #003153;
}

.btn-minimal-submit {
    background: transparent;
    color: #000;
    border: none;
    border-bottom: 1px solid #000;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-minimal-submit:hover {
    color: #003153;
    border-bottom-color: #003153;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
/* Tablet */
@media (max-width: 1024px) {
    .contact-wrapper-minimal {
        gap: 40px;
    }

    .cm-title {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem !important;
        /* Force smaller hero title */
    }

    .hero-content p {
        font-size: 1rem !important;
    }

    /* Contact */
    .contact-wrapper-minimal {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cm-title {
        font-size: 2.2rem;
    }

    /* Testimonials */
    .t-quote {
        font-size: 1.4rem;
    }

    /* Grids to Single Column */
    .grid-collection-expanded,
    .trio-grid {
        grid-template-columns: 1fr;
        height: auto;
        /* Allow auto height */
    }

    /* Ensure Trio Cards have height on mobile */
    .trio-card {
        height: 400px;
    }

    /* Special Collection: 2 Cols on mobile is fine, but make sure gap is good */
    .sc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* Dual Collection */
    .dual-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .dual-card {
        height: 450px;
    }
}

/* --- TABS SECTION (New / Best Sellers) - LONGINES STYLE --- */
.tabs-section {
    padding: 60px 0;
    background: #fafafa;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 0 18px 0;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #000;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

/* Horizontal Scroll Container */
.tab-content {
    position: relative;
    overflow: hidden;
}

.tabs-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 0 20px 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.tabs-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Navigation Arrows */
.tabs-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

.tab-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.tab-nav-btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* --- LONGINES CARD STYLE (HORIZONTAL SCROLL) --- */
.t-card {
    flex: 0 0 280px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.t-card:hover {
    transform: none;
    box-shadow: none;
}

/* Image Box */
.t-img-box {
    position: relative;
    width: 280px;
    height: 320px;
    background: #f5f5f5;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.t-img-box img {
    max-width: 75%;
    max-height: 75%;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s ease;
}

.t-card:hover .t-img-box img {
    transform: scale(1.05);
}

/* Badge */
.t-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    color: #333;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 10px;
    z-index: 5;
    letter-spacing: 0.5px;
}

/* Hide arrows and thumbs for cleaner look matching reference */
.t-arrow {
    display: none;
}

.t-thumbs {
    display: none;
}

/* Typography */
.t-info {
    padding-top: 5px;
}

.t-brand {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.t-name {
    display: none;
}

.t-specs {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.t-price {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111;
}

.t-quick-btn {
    display: none;
}

/* Responsive */
@media(max-width: 768px) {
    .t-card {
        flex: 0 0 220px;
    }

    .t-img-box {
        width: 220px;
        height: 260px;
    }

    .tabs-header {
        gap: 20px;
    }

    .tab-btn {
        font-size: 0.75rem;
    }
}

/* --- TRIO CATEGORIES --- */
.trio-section {
    padding: 0;
}

.trio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: 500px;
    gap: 20px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: #000;
}

.tab-btn.active {
    color: #003153;
    font-weight: 700;
}

.trio-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
}

.trio-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.trio-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.trio-card:hover .trio-bg {
    transform: scale(1.05);
}

.trio-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: auto;
    text-align: left;
    z-index: 2;
    padding: 0;
}

.trio-title {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    text-transform: uppercase;
}

.trio-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 5px;
    transition: all 0.3s;
}

/* Trio Grid Responsive */
@media (max-width: 1024px) {
    .trio-grid {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .trio-card {
        height: 500px;
        /* Fixed height for mobile cards */
    }

    .trio-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .trio-card {
        height: 400px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .trio-grid {
        grid-template-columns: 1fr;
        height: auto;
        padding: 0 15px;
    }

    .trio-card {
        height: 350px;
        min-height: 350px;
    }

    .trio-title {
        font-size: 2rem;
    }
}

/* --- SPECIAL COLLECTION SECTION --- */
.special-collection-section {
    padding: 60px 0;
    background: #fdfdfd;
}

.sc-tabs-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.sc-tab-btn {
    background: none;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.sc-tab-btn:hover {
    color: #555;
}

.sc-tab-btn.active {
    color: #000;
    border-bottom-color: #000;
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* --- UPDATED CARD STYLE (Collections/Longines Match) --- */
.vertical-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.vertical-card:hover {
    transform: translateY(-5px);
}

.card-image-box {
    background-color: #f0f0f0;
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.card-badge-square {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: #111;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 8px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.5s ease;
    mix-blend-mode: multiply;
}

/* Hover Image Logic */
.card-img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.vertical-card:hover .hover-img {
    opacity: 1;
}

.vertical-card:hover .main-img {
    opacity: 0;
}

.vertical-card:hover .product-img {
    transform: scale(1.05);
}

/* Thumb overrides */
.vertical-card.thumb-active .hover-img {
    opacity: 0;
}

.vertical-card.thumb-active .main-img {
    opacity: 1;
}

/* Thumbs Strip */
.card-thumbs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vertical-card:hover .card-thumbs {
    opacity: 1;
    height: 60px;
    margin-bottom: 10px;
}

.card-thumb {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #f4f4f4;
    border: 1px solid transparent;
    cursor: pointer;
    padding: 2px;
}

.card-thumb:hover,
.card-thumb.active {
    border-color: #333;
}

/* Info */
.card-info-content {
    text-align: left;
    padding: 0 5px;
}

.brand-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.product-name a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 5px;
}

.product-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
}

/* Hover Actions */
.card-actions-hover {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.vertical-card:hover .card-actions-hover {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.action-btn:hover {
    background: #111;
    color: white;
    border-color: #111;
}

/* --- FILTER BAR HEADER --- */
/* Redesigned to match image: Count/Sort Left, Filter Right */
.filter-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    /* Light divider line optional */
}

.filter-left-group {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Space between Count and Sort */
}

/* 1. Results Count */
.results-count {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
}

/* 2. Sort Dropdown (Custom Minimal) */
.sort-dropdown-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}

.sort-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: #444;
}

.minimal-sort-select {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: #444;
    cursor: pointer;
    width: 20px;
    /* Hidden width but clickable */
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0;
}

.sort-chevron {
    font-size: 0.7rem;
    color: #444;
    margin-top: 2px;
}

/* 3. Filter Toggle Button (Right Side) */
.btn-filter-toggle {
    background: #f7f7f7;
    /* Light gray box definition */
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-filter-toggle:hover {
    background: #eee;
    border-color: #ddd;
}


/* --- GRID LAYOUT --- */
.collections-layout {
    display: flex;
    gap: 30px;
    position: relative;
}

.product-grid-area {
    flex: 1;
    width: 100%;
}

.grid-products {
    display: grid;
    /* Default Mobile/Tablet */
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    /* Tighter gap like reference */
}

/* Responsive Grid Breakpoints */
@media (min-width: 768px) {
    .grid-products {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1100px) {
    .grid-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) {

    /* Large screen: 5 Columns as requested */
    .grid-products {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        /* Spacious gap for 5 col layout */
    }
}

/* We reuse .t-card and related classes from tabs-section here. No extra CSS needed for cards. */

/* Footer CTA */
.sc-footer {
    text-align: center;
    margin-top: 40px;
}

.sc-cta-btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: #333;
    /* Dark blue/black */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.sc-cta-btn:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 1200px) {
    .sc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .sc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sc-tabs-header {
        gap: 20px;
    }

    .sc-tab-btn {
        font-size: 0.85rem;
    }

    /* On mobile, use 2 column grid or keep scrollable?
       References usually keep grid or scroll. Let's match tabs-section mobile behavior if it differs.
       Tabs section mobile behavior isn't explicitly defined in the snippet I saw,
       but standard is 2col or 1col.
       Let's stick to 2col for now.
    */
    .sc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

/* --- DUAL COLLECTION (Men / Women) --- */
.dual-collection-section {
    padding: 0;
    /* Full width, no vertical padding */
    margin-bottom: -40px;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: 500px;
    gap: 20px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.dual-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border-radius: 20px;
}

.dual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.dual-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.dual-card:hover .dual-bg {
    transform: scale(1.05);
}

.dual-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: auto;
    text-align: left;
    z-index: 2;
    padding: 0;
}

.dual-title {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.dual-btn {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 5px;
    transition: all 0.3s;
    color: #fff;
}

.dual-card:hover .dual-btn {
    border-bottom-color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .dual-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .dual-card {
        height: 500px;
    }

    .dual-title {
        font-size: 2.5rem;
    }
}


.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    width: 100%;
}

.dual-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.dual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.dual-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.dual-card:hover .dual-bg {
    transform: scale(1.05);
}

.dual-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.dual-title {
    font-family: 'Italiana', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dual-btn {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 5px;
    transition: all 0.3s;
    color: #fff;
}

.dual-card:hover .dual-btn {
    border-bottom-color: #fff;
}

/* Responsive */
/* Responsive */
@media (max-width: 900px) {
    .dual-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .dual-card {
        height: 500px;
    }

    .dual-title {
        font-size: 2.5rem;
    }
}

/* --- LONGINES STYLE FOOTER --- */
.longines-footer {
    background-color: #f7f7f7;
    padding: 80px 0 0 0;
    color: #333;
    font-family: 'Jost', sans-serif;
    border-top: 1px solid #e5e5e5;
}

.footer-top {
    padding: 0 40px;
    margin-bottom: 60px;
}

.footer-grid-lg {
    display: grid;
    grid-template-columns: repeat(5, 1fr) 300px;
    /* 5 columns + wide right col */
    gap: 30px;
}

.ft-lg-col {
    display: flex;
    flex-direction: column;
}

.ft-lg-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.ft-lg-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-lg-links li {
    margin-bottom: 12px;
}

.ft-lg-links a {
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

.ft-lg-links a:hover {
    color: #003153;
}

/* Right Column */
.ft-right-col {
    background: transparent;
    border-left: 1px solid #e5e5e5;
    padding-left: 40px;
}

.ft-contact-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #003153;
    text-decoration: none;
    text-transform: capitalize;
    margin-bottom: 40px;
    transition: all 0.3s;
}

.ft-contact-btn:hover {
    background: #003153;
    color: #fff;
    border-color: #003153;
}

.ft-social-label,
.ft-news-label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.ft-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.ft-socials a {
    color: #777;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.ft-socials a:hover {
    color: #003153;
}

/* Newsletter Input */
.ft-newsletter {
    position: relative;
    border: 1px solid #ccc;
    display: flex;
    background: #fff;
}

.ft-newsletter input {
    border: none;
    outline: none;
    padding: 12px 15px;
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
}

.ft-newsletter button {
    background: #003153;
    /* Purple/Blue like image if needed, using brand blue */
    border: none;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
}

/* Footer Bottom */
.footer-bottom-lg {
    border-top: 1px solid #e5e5e5;
    padding: 25px 40px;
    font-size: 0.75rem;
    color: #666;
}

.fb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-center,
.fb-right {
    display: flex;
    gap: 30px;
}

.fb-center a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.fb-right {
    color: #111;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid-lg {
        grid-template-columns: repeat(4, 1fr) 250px;
    }

    .ft-lg-col:nth-child(5) {
        display: none;
        /* Hide one col on medium */
    }
}

@media (max-width: 900px) {
    .footer-grid-lg {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ft-right-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }

    .fb-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .fb-center {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* --- QUICK VIEW MODAL --- */
.qv-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qv-overlay.active {
    display: flex;
    opacity: 1;
}

.qv-modal {
    background: #fff;
    width: 90%;
    max-width: 900px;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.qv-overlay.active .qv-modal {
    transform: translateY(0);
}

.qv-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    color: #333;
    transition: color 0.2s;
}

.qv-close:hover {
    color: #000;
}

.qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
}

.qv-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qv-main-img {
    width: 100%;
    aspect-ratio: 1;
    background: #f9f9f9;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-main-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.qv-details {
    padding-top: 20px;
}

.qv-brand {
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.qv-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: #111;
}

.qv-price {
    font-size: 1.4rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 20px;
}

.qv-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.qv-add-btn {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
}

.qv-add-btn:hover {
    background: #333;
}

@media(max-width: 768px) {
    .qv-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* --- NAVBAR SCROLLED STATE --- */
.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.glass-header.scrolled .brand {
    color: #111;
}

.glass-header.scrolled .desktop-nav a {
    color: #333;
}

.glass-header.scrolled .icon-btn {
    color: #333;
}

.glass-header.scrolled .search-input {
    border-bottom-color: #333;
    color: #111;
}

.glass-header.scrolled .search-input::placeholder {
    color: #666;
}

.glass-header.scrolled .search-btn-icon {
    color: #333;
}

/* Cart Quantity Controls (Global) */
.cart-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    width: fit-content;
}

.cart-qty-btn {
    background: transparent;
    border: none;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: background 0.2s;
}

.cart-qty-btn:hover {
    background: #f0f0f0;
}

.cart-qty-val {
    font-size: 0.85rem;
    padding: 0 8px;
    min-width: 24px;
    text-align: center;
    font-weight: 500;
}/ *   - - -   H O V E R   T I M E L I N E   T H U M B N A I L S   - - -   * /  
 . c a r d - h o v e r - t h u m b s   {  
         p o s i t i o n :   a b s o l u t e ;  
         b o t t o m :   1 5 p x ;   / *   A d j u s t   b a s e d   o n   y o u r   c a r d   d e s i g n   * /  
         l e f t :   0 ;  
         w i d t h :   1 0 0 % ;  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   6 p x ;  
         z - i n d e x :   5 ;  
         o p a c i t y :   0 ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 1 0 p x ) ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         p o i n t e r - e v e n t s :   n o n e ;   / *   I n i t i a l l y   a l l o w   c l i c k s   t o   p a s s   t h r o u g h   * /  
 }  
  
 . p r o d u c t - c a r d : h o v e r   . c a r d - h o v e r - t h u m b s   {  
         o p a c i t y :   1 ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
         p o i n t e r - e v e n t s :   a u t o ;  
 }  
  
 . m i n i - t h u m b   {  
         w i d t h :   3 6 p x ;  
         h e i g h t :   3 6 p x ;  
         b o r d e r - r a d i u s :   4 p x ;  
         o v e r f l o w :   h i d d e n ;  
         c u r s o r :   p o i n t e r ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 1 ) ;  
         b a c k g r o u n d :   # f f f ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 2 s ,   b o r d e r - c o l o r   0 . 2 s ;  
 }  
  
 . m i n i - t h u m b   i m g   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         o b j e c t - f i t :   c o v e r ;  
 }  
  
 . m i n i - t h u m b : h o v e r ,   . m i n i - t h u m b . a c t i v e   {  
         b o r d e r - c o l o r :   # 0 0 3 1 5 3 ;   / *   L o n g i n e s   B l u e   * /  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
 }  
 