.v {
    overflow-x: hidden;
    width: 100%;
    min-height: 5856px;
    display: flex;
    justify-content: center;
}

.v .trikk {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    /* full screen height, responsive */
    position: relative;
    margin-top: 150px;
    overflow: hidden;
    /* prevents inner scrollbar */
}

.v .rectangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5807px;
    background-color: #f6f4f1;
}

/* ========================================
     FOOTER SECTION - MODERN & RESPONSIVE
     ======================================== */

/* Footer Row Container */
.v .footer-row {
    position: absolute;
    top: 5284px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Service Icon Section - Modern & Responsive */
.v .icon-list {
    width: 100%;
    display: flex;
    background-color: #ffffff;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 72px clamp(60px, 8vw, 120px);
    box-sizing: border-box;
    margin-bottom: 0;
    max-width: 100%;
}

.v .icon,
.v .icon-2,
.v .icon-3,
.v .icon-4 {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    cursor: pointer;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 220px;
}

.v .icon:hover,
.v .icon-2:hover,
.v .icon-3:hover,
.v .icon-4:hover {
    transform: translateY(-5px);
    opacity: 0.85;
}

/* Icon Background Circles - Green Color Div */
.v .div,
.v .rectangle-2 {
    width: 60px;
    height: 60px;
    background-color: #b8edb3;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.v .icon:hover .div,
.v .icon-2:hover .div,
.v .icon-3:hover .rectangle-2,
.v .icon-4:hover .div {
    background-color: #a8dd9f;
    transform: scale(1.05);
}

/* Icon Images - Centered inside green div */
.v .icon .group,
.v .icon-2 .group {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 30px;
    /* Center of 60px green div (60px / 2 = 30px) */
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.v .icon-3 .img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 30px;
    /* Center of 60px green div (60px / 2 = 30px) */
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.v .icon-4 .group-2 {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 30px;
    /* Center of 60px green div (60px / 2 = 30px) */
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.25s ease;
}

/* Icon Text Labels */
.v .text-wrapper,
.v .text-wrapper-2,
.v .element-day-return {
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.2px;
    white-space: normal;
    text-align: left;
    margin: 0;
    padding: 0;
}

.v .text-wrapper-2 {
    font-size: 18px;
}

/* Footer Section - CSS Grid with Responsive Breakpoints */
/* =============================================================
   PREMIUM RESPONSIVE FOOTER USING FLEX (4 → 2 → 1 COLUMNS)
   ============================================================= */

.v .footer {
    background-color: #1d1f24;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 40px 20px;

    padding-block: 68px;                      /* top + bottom */
    padding-inline: clamp(80px, 10vw, 140px); /* left + right equally */

    box-sizing: border-box;
}


/* Each column behaves like responsive cards */
.v .footer-column {
    flex: 1 1 calc(25% - 20px);
    /* 4 columns desktop */
    min-width: 220px;
    max-width: 300px;
    /* Keeps column width stable */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==========================================
   LARGE TABLETS: 3 columns
========================================== */
@media (max-width: 1200px) {
    .v .footer-column {
        flex: 1 1 calc(33.33% - 20px);
    }

    .v .footer {
        padding: 68px clamp(40px, 7vw, 90px);
    }
}

/* ==========================================
   TABLETS: 2 columns
========================================== */
@media (max-width: 992px) {
    .v .footer-column {
        flex: 1 1 calc(50% - 20px);
    }

    .v .footer {
        padding: 60px clamp(35px, 6vw, 70px);
        gap: 35px 20px;
    }
}

/* ==========================================
   MOBILE: 1 column
========================================== */
@media (max-width: 768px) {
    .v .footer-column {
        flex: 1 1 100%;
    }

    .v .footer {
        padding: 55px 30px;
        gap: 32px;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width: 480px) {
    .v .footer {
        padding: 50px 22px;
        gap: 28px;
    }

    .v .footer-column {
        flex: 1 1 100%;
    }
}

.v .footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    width: 100%;
    flex: 1 1 0;
}

/* .v .footer-wide - Inherits default column behavior */

/* Footer Typography - Modern & Balanced */
.v .footer-heading {
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    font-size: 19px;
    color: #ffffff;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
    line-height: 1.4;
    text-transform: uppercase;
}

.v .social-heading {
    margin-top: 28px;
    font-size: 17px;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.v .footer-links {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #d3d7e0;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

/* .v .footer-contact - Inherits default column behavior */

.v .footer-contact-details {
    font-family: "Oxygen", Helvetica;
    font-size: 15px;
    color: #d3d7e0;
    line-height: 2;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

.v .footer-contact-details .highlight {
    color: #ffffff;
    font-weight: 700;
}

/* Social Icons Section */
.v .footer-social {
    display: flex;
    gap: 14px;
    margin-top: 4px;
    flex-wrap: wrap;
    align-items: center;
}

.v .footer-social img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    cursor: pointer;
}

.v .footer-social img:hover {
    transform: scale(1.15) translateY(-2px);
    opacity: 0.85;
}

/* Copyright Section */
.v .copy {
    width: 100%;
    min-height: 70px;
    position: relative;
    overflow: hidden;
}

.v .rectangle-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #11141a;
}

.v .element-TRIKK-all {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #f3fcf2;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.5;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.v .text-wrapper-4 {
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #f3fcf2;
    font-size: 14px;
    letter-spacing: 0;
}

.v .element-TRIKK-all a {
    color: #f3fcf2;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.v .element-TRIKK-all a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.v .ats {
    position: absolute;
    top: 3213px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
}

.v .ats img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.v .celebration {
    position: absolute;
    top: 3750px;
    left: 0;
    width: 100%;
    min-height: 663px;
    display: flex;
    flex-direction: column;
    gap: 51px;
    background-color: #f6f4f1;
    padding: 49px 0;
    box-sizing: border-box;
}

.v .section-title {
    margin: 0 auto;
    width: 100%;
    max-width: 512px;
    height: 87px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v .threads-of {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 51px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #0a369d;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    text-transform: uppercase;
}

.v .p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 28px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.v .group-11 {
    width: 100%;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    box-sizing: border-box;
}

.v .celebration-slider {
    position: relative;
    width: 100%;
    height: 406px;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

.v .celebration-track {
    display: flex;
    gap: 25px;
    height: 100%;
    width: max-content;
    align-items: stretch;
    transition: transform 0.8s ease;
    will-change: transform;
}

.v .celebration-track>.box,
.v .celebration-track>.box-2 {
    flex: 0 0 auto;
}

.v .celebration .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.v .celebration .slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
    background-color: rgba(0, 0, 0, 0.48);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.v .celebration .slider-btn .arrow-icon {
    width: 26px;
    height: 26px;
    display: block;
    filter: invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.v .celebration .slider-btn.prev {
    left: clamp(12px, 4vw, 32px);
}

.v .celebration .slider-btn.next {
    right: clamp(12px, 4vw, 32px);
}

.v .celebration .slider-btn.prev .arrow-icon {
    transform: rotate(180deg);
}

.v .box {
    width: 254px;
    height: 406px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.v .img-2 {
    width: 254px;
    height: 330px;
    border-radius: 6px;
}

.v .info {
    width: 208px;
    height: 63px;
    display: flex;
    flex-direction: column;
}

.v .text-wrapper-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 202px;
    height: 20px;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-6 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 149px;
    height: 15px;
    margin-top: 1px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.v .element {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 79px;
    height: 18px;
    margin-top: 9px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-7 {
    font-weight: 700;
    color: #000000;
}

.v .text-wrapper-8 {
    color: #808080;
    font-size: 12px;
    text-decoration: line-through;
}

.v .info-2 {
    width: 255px;
    height: 63px;
    display: flex;
    flex-direction: column;
}

.v .text-wrapper-9 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 249px;
    height: 20px;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-10 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 15px;
    margin-top: 1px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.v .element-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 18px;
    margin-top: 9px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
}

.v .info-3 {
    width: 188px;
    height: 63px;
    display: flex;
    flex-direction: column;
}

.v .text-wrapper-11 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 182px;
    height: 20px;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 15px;
    margin-top: 1px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.v .element-3 {
    width: 90px;
    height: 18px;
    margin-top: 9px;
    color: transparent;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
}

.v .info-4 {
    width: 124px;
    height: 63px;
    display: flex;
    flex-direction: column;
}

.v .text-wrapper-13 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 20px;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-14 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 77px;
    height: 15px;
    margin-top: 1px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.v .element-4 {
    width: 86px;
    height: 18px;
    margin-top: 9px;
    color: transparent;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
}

.v .box-2 {
    width: 254px;
    height: 406px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.v .info-5 {
    width: 110px;
    height: 65px;
    display: flex;
    flex-direction: column;
}

.v .text-wrapper-15 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 20px;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-16 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 15px;
    margin-top: 3px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.v .insta {
    position: absolute;
    top: 4413px;
    left: 0;
    width: 100%;
    min-height: 858px;
    display: flex;
    flex-direction: column;
    gap: 42px;
    background-color: #f6f4f1;
    padding: 55px 0;
    box-sizing: border-box;
}

.v .section-title-2 {
    margin: 0 auto;
    width: 100%;
    max-width: 282px;
    height: 87px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v .follow-us {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 51px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #0a369d;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    text-transform: uppercase;
}

.v .text-wrapper-17 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 28px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.v .group-12 {
    margin: 0 auto;
    width: 100%;
    max-width: 1336px;
    height: auto;
}

.v .insta-grid {
    margin: 0 auto;
    width: 100%;
    max-width: 1336px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 220px;
    grid-template-areas:
        "hero rightTop rightTop"
        "bottom1 bottom2 bottom3";
    gap: 16px;
}

.v .insta-card.hero {
    grid-area: hero;
}

.v .insta-right {
    grid-area: rightTop;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.v .insta-card.bottom1 {
    grid-area: bottom1;
}

.v .insta-card.bottom2 {
    grid-area: bottom2;
}

.v .insta-card.bottom3 {
    grid-area: bottom3;
}

.v .insta-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.v .insta-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.v .insta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 20%,
            rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.v .insta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.v .insta-card.large {
    grid-row: span 2;
}


.v .about {
    position: absolute;
    top: 2687px;
    left: 0;
    width: 100%;
    min-height: 452px;
    display: flex;
    background-color: #f6f4f1;
    padding: 64px 0;
    box-sizing: border-box;
}
/* Smooth fade-in animation */
.v .about,
.v .info-6,
.v .trikk-gadgets,
.v .TRIKK-logo,
.v .mask-group {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About section background enhancement */
.v .about {
    background: linear-gradient(180deg, #f6f4f1 0%, #faf9f7 100%);
    border-top: 1px solid #e6e3de;
    border-bottom: 1px solid #e6e3de;
}

/* Container styling */
.v .info-6 {
    max-width: 1100px;
    padding: 0 20px;              /* Better mobile spacing */
    height: auto;                 /* Responsive height */
}

/* Mask image modern polish */
.v .mask-group {
    border-radius: 12px;
    object-fit: cover;
    filter: brightness(0.92);
    transition: filter 0.3s ease;
}
.v .mask-group:hover {
    filter: brightness(1);
}

/* TRIKK logo enhancement */
.v .TRIKK-logo {
    border-radius: 10px;
    background: #ffffffcc;
    padding: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.v .TRIKK-logo:hover {
    transform: scale(1.05);
}

/* Text styling */
.v .trikk-gadgets {
    font-family: "Oxygen", Helvetica, sans-serif;
    font-size: 22px;
    line-height: 34px;
    color: #222;
    backdrop-filter: blur(2px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    transition: color 0.3s ease;
}
.v .trikk-gadgets:hover {
    color: #000;
}

/* ---------------------- */
/* RESPONSIVE FIXES BELOW */
/* ---------------------- */

@media (max-width: 1024px) {
    .v .trikk-gadgets {
        left: 220px;
        width: calc(100% - 260px);
        font-size: 20px;
    }
    .v .TRIKK-logo {
        left: 40px;
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .v .mask-group {
        height: 260px;
    }
    .v .trikk-gadgets {
        position: relative;
        left: 0;
        top: 20px;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        font-size: 18px;
        line-height: 30px;
    }

    .v .TRIKK-logo {
        position: relative;
        left: 0;
        top: -20px;
        margin: 0 auto;
        display: block;
    }

    .v .info-6 {
        height: auto;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .v .trikk-gadgets {
        font-size: 16px;
        line-height: 28px;
    }
    .v .TRIKK-logo {
        width: 120px;
        height: 120px;
    }
}

.v .info-6 {
    margin: 0 auto;
    width: 100%;
    max-width: 1044px;
    height: 328px;
    position: relative;
}

.v .rectangle-4 {
    position: absolute;
    top: -40px;
    left: -44px;
    width: calc(100% + 88px);
    height: 416px;
}

.v .mask-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 328px;
}

.v .rectangle-5 {
    position: absolute;
    top: -45px;
    left: -49px;
    width: calc(100% + 98px);
    height: 426px;
}

.v .trikk-gadgets {
    position: absolute;
    top: 74px;
    left: 263px;
    width: calc(100% - 313px);
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 36px;
}

.v .TRIKK-logo {
    position: absolute;
    top: 85px;
    left: 50px;
    width: 158px;
    height: 159px;
    object-fit: cover;
}

.v .pick-for-you {
    position: absolute;
    top: 2050px;
    left: 0;
    width: 100%;
    min-height: 642px;
    padding: 0;
    box-sizing: border-box;
}

.v .rectangle-6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 642px;
    background-color: #f6f4f1;
}

.v .top-picks-slider {
    position: absolute;
    top: 178px;
    left: 0;
    width: 100%;
    height: 394px;
    /* overflow: hidden; */
    padding: 0;
    box-sizing: border-box;
}

.v .top-picks-track {
    display: flex;
    gap: 36px;
    height: 100%;
    width: max-content;
    align-items: stretch;

    transition: transform 0.8s ease;
    will-change: transform;
}

.v .top-picks-track>[class^="product-box"] {
    position: relative;
    top: 0;
    left: 0;
    flex: 0 0 auto;
}

/* Unified product card styling - ensure all cards are consistent */
.v [class^="product-box"],
.v [class*="product-box"] {
    box-sizing: border-box;
}

.v [class^="product-box"]>[class^="rectangle"],
.v [class*="product-box"]>[class^="rectangle"] {
    box-sizing: border-box;
}

.v .product-box {
    position: relative;
    width: 283px;
    height: 394px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    cursor: pointer;
}

.v .product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 16px 48px rgba(0, 0, 0, 0.1);
}

.v .rectangle-7 {
    position: absolute;
    top: 274px;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #f7f7f7;
    border-radius: 0px 0px 24px 24px;
    transition: background-color 0.3s ease;
}

.v .product-box:hover .rectangle-7 {
    background-color: #f0f0f0;
}

.v .group-13 {
    position: absolute;
    top: 283px;
    left: 20px;
    width: 253px;
    height: 96px;
    display: flex;
    flex-direction: column;
}

.v .rating {
    width: 71px;
    height: 20px;
    display: flex;
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid;
    border-color: #f2f2f2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.v .product-box:hover .rating,
.v .product-box-2:hover .group-wrapper,
.v .product-box-3:hover .group-wrapper,
.v .product-box-4:hover .group-wrapper,
.v .product-box-5:hover .group-wrapper,
.v .product-box-6:hover .div-wrapper,
.v .product-box-7:hover .group-wrapper,
.v .product-box-8:hover .group-wrapper,
.v .product-box-9:hover .rating-2,
.v .product-box-10:hover .group-wrapper {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.v .group-14 {
    margin-top: 3px;
    width: 63px;
    margin-left: 6px;
    display: flex;
}

.v .text-wrapper-18 {
    width: 13px;
    height: 14px;
    color: #000000;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
}

.v .star {
    margin-top: 1px;
    width: 10px;
    height: 10px;
    margin-left: 5px;
}

.v .element-5 {
    width: 27px;
    height: 14px;
    margin-left: 4px;
    color: #000000;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-19 {
    width: 80px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-20 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 247px;
    height: 15px;
    margin-top: 3px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.v .element-off {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 143px;
    height: 20px;
    margin-top: 10px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-21 {
    color: #000000;
    font-size: 12px;
}

.v .text-wrapper-22 {
    font-weight: 700;
    color: #13c301;
    font-size: 12px;
}

.v .mask-group-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 275px;
    border-radius: 24px 24px 0 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.v .product-box:hover .mask-group-2,
.v .product-box-2:hover .mask-group-2,
.v .product-box-3:hover .mask-group-2,
.v .product-box-4:hover .mask-group-2 {
    transform: scale(1.05);
}

.v .product-box-2 {
    top: 178px;
    left: 364px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}

.v .rectangle-8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 394px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.v .product-box-2:hover .rectangle-8,
.v .product-box-3:hover .rectangle-8,
.v .product-box-4:hover .rectangle-8 {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 16px 48px rgba(0, 0, 0, 0.1);
}

.v .product-box-2,
.v .product-box-3,
.v .product-box-4 {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.v .product-box-2:hover,
.v .product-box-3:hover,
.v .product-box-4:hover {
    transform: translateY(-8px);
}

.v .text-wrapper-23 {
    position: absolute;
    top: 311px;
    left: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .element-off-2 {
    position: absolute;
    top: 359px;
    left: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-24 {
    position: absolute;
    top: 334px;
    left: 20px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.v .group-wrapper {
    position: absolute;
    top: 283px;
    left: 20px;
    width: 71px;
    height: 20px;
    display: flex;
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid;
    border-color: #f2f2f2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.v .product-box-3 {
    top: 178px;
    left: 688px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}

.v .product-box-4 {
    top: 178px;
    left: 1012px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}

.v .product-box-5 {
    top: 178px;
    left: 1336px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}

.v .rectangle-9 {
    left: 0;
    width: 100%;
    border-radius: 24px;
    position: absolute;
    top: 0;
    height: 394px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.v .rectangle-10 {
    left: 0;
    width: 100%;
    border-radius: 0px 0px 24px 24px;
    position: absolute;
    top: 274px;
    height: 120px;
    background-color: #f7f7f7;
    transition: background-color 0.3s ease;
}

.v .product-box-5 {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.v .product-box-5:hover {
    transform: translateY(-8px);
}

.v .product-box-5:hover .rectangle-9 {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 16px 48px rgba(0, 0, 0, 0.1);
}

.v .product-box-5:hover .rectangle-10 {
    background-color: #f0f0f0;
}

.v .mask-group-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 275px;
    border-radius: 24px 24px 0 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.v .product-box-5:hover .mask-group-3 {
    transform: scale(1.05);
}

.v .arrow {
    top: 173px;
    height: 422px;
    position: absolute;
    right: 0;
    width: 388px;
}

.v .section-title-3 {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 474px;
    height: 87px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto;
}

.v .pick-for-you .rectangle-6 {
    background: linear-gradient(180deg, #f6f4f1 0%, #ffffff 100%);
}

.v .pick-for-you .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background-color: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: transform 0.25s ease, background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.v .pick-for-you .slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
    background-color: rgba(0, 0, 0, 0.48);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.v .pick-for-you .slider-btn .arrow-icon {
    width: 26px;
    height: 26px;
    display: block;
    filter: invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.v .pick-for-you .slider-btn.prev {
    left: clamp(12px, 4vw, 32px);
}

.v .pick-for-you .slider-btn.next {
    right: clamp(12px, 4vw, 32px);
}

.v .pick-for-you .slider-btn.prev .arrow-icon {
    transform: rotate(180deg);
}

.v .top-picks-for-you {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 51px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #0a369d;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    text-transform: uppercase;
}

.v .new-arrivals-coming {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 28px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-25 {
    color: #000000;
}

.v .text-wrapper-26 {
    color: #000000;
}

.v .text-wrapper-27 {
    color: #000000;
}

.v .category {
    position: absolute;
    top: 1436px;
    left: 0;
    width: 100%;
    min-height: 612px;
    background-color: #f6f4f1;
    padding: 48px 0;
    box-sizing: border-box;
}

.v .box-3 {
    position: absolute;
    top: 172px;
    right: 20px;
    width: 124px;
    height: 381px;
    background-color: #d6d6d6;
    background-image: url(https://c.animaapp.com/mi8igq1hn2mvbH/img/mask-group-6.png);
    background-size: 100% 100%;
}

.v .arrow-2 {
    top: 165px;
    height: 396px;
    position: absolute;
    right: 0;
    width: 388px;
}

/* ================================
   CATEGORY SLIDER — Modern Layout
   ================================ */

.v .category-slider {
    position: absolute;
    top: 170px;
    left: 0;
    width: 100%;
    height: 394px;
    overflow: hidden;
    padding: 8px;
    box-sizing: border-box;
}

/* Smooth scrolling for all devices */
.v .category-slider::-webkit-scrollbar {
    height: 8px;
}

.v .category-slider::-webkit-scrollbar-track {
    background: transparent;
}

.v .category-slider::-webkit-scrollbar-thumb {
    background: #b5b5b5;
    border-radius: 10px;
}

.v .group-15 {
    display: flex;
    gap: 28px;
    width: max-content;
    padding-bottom: 10px;
    transition: transform 0.5s ease;
}

.v .box-4 {
    position: relative;
    width: 310px;
    height: 380px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover animation */
.v .box-4:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.v .rectangle-11 {
    position: absolute;
    inset: 0;
    background-color: #f0f0f0;
    border-radius: 18px;
}

.v .mask-group-4 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v .rectangle-12 {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.9) 10%,
            rgba(0, 0, 0, 0.1) 70%);
}

/* ================================
   TEXT OVER IMAGE — Stylish Card
   ================================ */
.v .wall-clocks {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 20px;
    width: 85%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    text-align: center;
    color: white;
    animation: fadeIn 0.6s ease forwards;
}

/* Title */
.v .text-wrapper-28 {
    font-size: clamp(20px, 2.4vw, 26px);
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* Discover Button */
.v .wall-clocks a {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #ffb347, #ff6f61);
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 700;
    transition: 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.v .wall-clocks a:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffcf71, #ff7f50);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablets */
@media (max-width: 992px) {
    .v .box-4 {
        width: 280px;
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .v .group-15 {
        gap: 18px;
    }

    .v .box-4 {
        width: 240px;
        height: 310px;
    }

    .v .wall-clocks {
        bottom: 18px;
        padding: 10px 16px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .v .box-4 {
        width: 200px;
        height: 260px;
    }

    .v .wall-clocks {
        bottom: 12px;
        padding: 8px 14px;
    }
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}




.v .smart-watches {
    position: absolute;
    top: 299px;
    left: 43px;
    height: auto;
    min-height: 61px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    gap: 4px;
}

.v .box-5 {
    margin-top: 2px;
    width: 306px;
    height: 383px;
    position: relative;
}

.v .premium-watches {
    position: absolute;
    top: 299px;
    left: 22px;
    height: auto;
    min-height: 61px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    gap: 4px;
}

.v .men-s-watch {
    position: absolute;
    top: 299px;
    left: 60px;
    height: auto;
    min-height: 61px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    gap: 4px;
}

.v .section-title-4 {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 445px;
    height: 87px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto;
}

.v .explore-by-category {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 51px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #0a369d;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    text-transform: uppercase;
}

.v .text-wrapper-30 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 28px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

/* ================================
   RESPONSIVE FULL-WIDTH BANNER
   Image NEVER crops, stretches, or loses quality
   ================================ */
/* Banner */
.v .banner {
    width: 100%;
    height: 797px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
  background-color: #171717;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.banner-watch {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.banner-title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: -2px 24px 19px rgba(0, 0, 0, 0.4);
}

.banner-subtitle {
  font-size: 36px;
  color: #fff;
  margin-bottom: 40px;
  text-shadow: 0px 4px 68px rgba(0, 0, 0, 0.99);
}

.btn-primary {
  padding: 15px 50px;
  background-color: #0a369d;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 10px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #082a7a;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(10, 54, 157, 0.4);
}

.banner-pagination {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 60px;
  border-radius: 10px;
  background-color: #fff;
}

@media (max-width: 1024px) {
  .banner {
    height: 600px;
  }

  .banner-title {
    font-size: 48px;
  }

  .banner-subtitle {
    font-size: 28px;
  }

  .btn-primary {
    font-size: 24px;
    padding: 12px 40px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 500px;
  }

  .banner-watch {
    width: 100%;
    opacity: 0.3;
  }

  .banner-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  .banner-content {
    align-items: center;
    text-align: center;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-subtitle {
    font-size: 22px;
  }

  .btn-primary {
    font-size: 20px;
    padding: 10px 30px;
  }

  .banner-pagination {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 480px) {
  .banner {
    height: 400px;
  }

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

  .banner-subtitle {
    font-size: 18px;
  }

  .btn-primary {
    font-size: 18px;
    padding: 10px 25px;
  }
}

.v .best-sellers {
    position: absolute;
    top: 798px;
    left: 0;
    width: 100%;
    min-height: 642px;
    padding: 0;
    box-sizing: border-box;
}

.v .best-sellers .rectangle-6 {
    background: linear-gradient(180deg, #f6f4f1 0%, #ffffff 100%);
}

.v .best-sellers .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background-color: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: transform 0.25s ease, background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.v .best-sellers .slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
    background-color: rgba(0, 0, 0, 0.48);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.v .best-sellers .slider-btn .arrow-icon {
    width: 26px;
    height: 26px;
    display: block;
    filter: invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.v .best-sellers .slider-btn.prev {
    left: clamp(12px, 4vw, 32px);
}

.v .best-sellers .slider-btn.next {
    right: clamp(12px, 4vw, 32px);
}

.v .best-sellers .slider-btn.prev .arrow-icon {
    transform: rotate(180deg);
}

.v .product-box-6 {
    top: 176px;
    left: 38px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}
.v .product-box-7 {
    top: 176px;
    left: 38px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}

.v .rectangle-20 {
    left: 0;
    width: 100%;
    border-radius: 24px;
    position: absolute;
    top: 0;
    height: 394px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.v .rectangle-21 {
    left: 0;
    width: 100%;
    border-radius: 0px 0px 24px 24px;
    position: absolute;
    top: 274px;
    height: 120px;
    background-color: #f7f7f7;
    transition: background-color 0.3s ease;
}

.v .product-box-6 {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.v .product-box-6:hover {
    transform: translateY(-8px);
}

.v .product-box-6:hover .rectangle-20 {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 16px 48px rgba(0, 0, 0, 0.1);
}

.v .product-box-6:hover .rectangle-21 {
    background-color: #f0f0f0;
}
.v .product-box-7 {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.v .product-box-7:hover {
    transform: translateY(-8px);
}

.v .product-box-7:hover .rectangle-20 {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 16px 48px rgba(0, 0, 0, 0.1);
}

.v .product-box-7:hover .rectangle-21 {
    background-color: #f0f0f0;
}

.v .text-wrapper-33 {
    position: absolute;
    top: 311px;
    left: 22px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .element-off-3 {
    position: absolute;
    top: 359px;
    left: 22px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-34 {
    position: absolute;
    top: 334px;
    left: 22px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.v .div-wrapper {
    position: absolute;
    top: 283px;
    left: 22px;
    width: 71px;
    height: 20px;
    display: flex;
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid;
    border-color: #f2f2f2;
}

.v .mask-group-6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 275px;
    border-radius: 24px 24px 0 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.v .product-box-6:hover .mask-group-6,
.v .product-box-7:hover .mask-group-6,
.v .product-box-9:hover .mask-group-6 {
    transform: scale(1.05);
}

.v .product-box-7 {
    top: 176px;
    left: 1336px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}

.v .mask-group-7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 275px;
    border-radius: 24px 24px 0 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.v .product-box-7:hover .mask-group-7 {
    transform: scale(1.05);
}

.v .arrow-3 {
    top: 150px;
    height: 460px;
    position: absolute;
    right: 0;
    width: 388px;
}

.v .best-sellers-slider {
    position: absolute;
    top: 176px;
    left: 0;
    width: 100%;
    height: 394px;
    /* overflow: hidden; */
    padding: 0;
    box-sizing: border-box;
}

.v .best-sellers-track {
    display: flex;
    gap: 36px;
    height: 100%;
    width: max-content;
    align-items: stretch;
    transition: transform 0.8s ease;
    will-change: transform;
}

.v .best-sellers-track>[class^="product-box-"] {
    position: relative;
    top: 0;
    left: 0;
    flex: 0 0 auto;
}

.v .best-sellers-track>[class^="product-box-"] {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.v .top-picks-track>[class^="product-box"] {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.v .product-box-8 {
    top: 176px;
    left: 364px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}

.v .mask-group-8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 275px;
    border-radius: 24px 24px 0 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.v .product-box-8:hover .mask-group-8,
.v .product-box-10:hover .mask-group-8 {
    transform: scale(1.05);
}

.v .product-box-9 {
    top: 176px;
    left: 680px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}

.v .rectangle-22 {
    left: 0;
    width: 100%;
    border-radius: 24px;
    position: absolute;
    top: 0;
    height: 394px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.v .rectangle-23 {
    left: 0;
    width: 100%;
    border-radius: 0px 0px 24px 24px;
    position: absolute;
    top: 274px;
    height: 120px;
    background-color: #f7f7f7;
    transition: background-color 0.3s ease;
}

.v .product-box-7,
.v .product-box-8,
.v .product-box-9,
.v .product-box-10 {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.v .product-box-7:hover,
.v .product-box-8:hover,
.v .product-box-9:hover,
.v .product-box-10:hover {
    transform: translateY(-8px);
}

.v .product-box-9:hover .rectangle-22 {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 16px 48px rgba(0, 0, 0, 0.1);
}

.v .product-box-9:hover .rectangle-23 {
    background-color: #f0f0f0;
}

.v .text-wrapper-35 {
    position: absolute;
    top: 311px;
    left: 28px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .element-off-4 {
    position: absolute;
    top: 359px;
    left: 28px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: transparent;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.v .text-wrapper-36 {
    position: absolute;
    top: 334px;
    left: 28px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
}

.v .rating-2 {
    position: absolute;
    top: 283px;
    left: 28px;
    width: 71px;
    height: 20px;
    display: flex;
    background-color: #ffffff;
    border-radius: 100px;
    border: 1px solid;
    border-color: #f2f2f2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.v .div-wrapper {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.v .product-box-10 {
    top: 176px;
    left: 1012px;
    width: 283px;
    position: absolute;
    height: 394px;
    overflow: visible;
}

.v .section-title-5 {
    position: absolute;
    top: 49px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 436px;
    height: 87px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto;
}

.v .explore-bestsellers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 51px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #0a369d;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    text-transform: uppercase;
}

.v .text-wrapper-37 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 28px;
    font-family: "Oxygen", Helvetica;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.v .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fffbf9;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* MAIN HEADER */
.v .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-inline: 60px;
    /* equal left-right padding */
    height: 106px;
    background-color: #fffbf9;
    box-sizing: border-box;
}

/* LEFT PART (logo area) */
.v .header-left {
    display: flex;
    align-items: center;
    margin-left: 20px;
    gap: 20px;
    flex: 1;
    /* makes left & right equal */
}

/* RIGHT PART */
.v .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    /* makes left & right equal */
}


/* Header Right Spacing */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Icons layout */
.sinlge-bar {
    position: relative;
}

.single-icon {
    font-size: 20px;
    color: #222;
    position: relative;
    padding: 5px;
    transition: 0.2s ease;
}

.single-icon:hover {
    color: #ff6600;
}

/* Badge bubble (wishlist/cart count) */
.total-count {
    position: absolute;
    top: -4px;
    right: -8px;
    background: #ff6600;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
}

/* Wrap icon */
.search-wrapper {
    position: relative;
}

/* Search icon */
.search-toggle i {
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.search-toggle:hover i {
    color: #ff6600;
}

/* Search popup box */
.search-popup {
    position: absolute;
    right: 0;
    top: 45px;
    background: #fff;
    width: 280px;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9990;
    animation: fadeIn 0.25s ease;
}

/* Input */
.search-input {
    width: 100%;
    padding: 10px 14px;
    padding-right: 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

/* Search button inside box */
.search-submit {
    position: absolute;
    right: 25px;
    top: 23px;
    background: transparent;
    border: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
}

/* Show popup on click */
.search-wrapper.open .search-popup {
    display: block;
}

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

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

/* Mobile responsive */
@media (max-width: 576px) {
    .search-popup {
        width: 220px;
    }
}

/* Default / Large Screens (Laptop + Desktop) */
.v nav.nav {
    flex: 5;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    /* margin-right: 130px; */
    width: 100%;
}

/* ---------------------- */
/* 💻 Medium Screens (Tablet Landscape / Small Laptop) */
/* ---------------------- */
@media (max-width: 1200px) {
    .v nav.nav {
        flex: 4;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 25px;
        /* margin-right: 60px; */
        /* reduced so items fit in row */
        width: 100%;
    }
}


/* ---------------------- */
/* 📱 Tablet Portrait */
/* ---------------------- */
@media (max-width: 992px) {
    .v nav.nav {
        flex: 3;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}

/* ---------------------- */
/* 📱 Mobile Large (600px – 768px) */
/* ---------------------- */
@media (max-width: 768px) {
    .v nav.nav {
        flex: 1;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        /* margin-right: 0; */
        gap: 15px;
        justify-content: space-between;
    }
}

/* ---------------------- */
/* 📱 Mobile Small (<600px) */
/* ---------------------- */
@media (max-width: 600px) {
    .v nav.nav {
        flex-direction: column;
            /* margin-right: 0; */
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
}

/* ---------------------- */
/* 📱 Very Small Devices (<420px) */
/* ---------------------- */
@media (max-width: 420px) {
    .v nav.nav {
        gap: 8px;
        font-size: 14px;
        text-align: center;
    }
}



/* Wishlist and Cart Dropdown Styling */
.shopping-item {
    position: absolute;
    right: 0;
    top: 40px;
    background: #fff;
    padding: 15px;
    width: 340px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    z-index: 9000;
}

/* List item spacing */



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

/* Responsive */
@media (max-width: 768px) {
    .header-right {
        gap: 15px;
    }

    .shopping-item {
        width: 260px;
    }

    .search-dropdown {
        width: 200px;
    }
}


/* ========================================
   Modern Topbar Styling (scoped)
   ======================================== */
.topbar.topbar-modern {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
    position: relative;
    z-index: 5;
    width: 100%;
}

.topbar-modern .container {
    max-width: 100%;
    padding: 0;
}

.topbar-modern .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 10px 60px;
    max-width: 100%;
    width: 100%;
}

.topbar-modern .topbar-left,
.topbar-modern .topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #1f2937;
}

.topbar-modern .topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.06);
    color: #1f2937;
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.topbar-modern .list-main {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-modern .list-main li {
    border: none;
    padding: 0;
    color: #1f2937;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.topbar-modern .list-main li i {
    color: #F7941D;
    font-size: 15px;
}

.topbar-modern .list-main li a {
    color: #0f172a;
    font-weight: 600;
    transition: color .2s ease;
}

.topbar-modern .list-main li a:hover {
    color: #0a369d;
}

.topbar-modern .topbar-actions {
    gap: 20px;
}

.topbar-modern .topbar-link {
    position: relative;
    padding-right: 18px;
}

.topbar-modern .topbar-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background: rgba(148, 163, 184, 0.4);
}

.topbar-link a {
    margin-right: 12px;
}

.topbar-modern .topbar-link:last-child::after {
    display: none;
}

.topbar-modern .topbar-auth .divider {
    color: rgba(100, 116, 139, 0.7);
}

.topbar-modern .topbar-contact li {
    font-size: 13px;
    color: #4b5563;
}

@media (max-width:991px) {
    .topbar-modern .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 30px;
    }

    .topbar-modern .topbar-right {
        justify-content: flex-start;
    }

    .topbar-modern .topbar-link::after {
        display: none;
    }

    .topbar-modern .list-main {
        flex-wrap: wrap;
    }
}

@media (max-width:767px) {
    .topbar-modern .topbar-inner {
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 10px 16px;
    }

    .topbar-modern .topbar-left,
    .topbar-modern .topbar-right {
        justify-content: center;
    }

    .topbar-modern .list-main {
        justify-content: center;
    }
}

.v .rectangle-24 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #fffbf9;
    z-index: -1;
}

.header-right img {
    position: relative;
    z-index: 10;
    /* brings it above other images */
}

.v .rectangle-25 {
    position: absolute;
    top: 1;
    right: 0;
    width: 262px;
    height: 90px;
}

.v .logo {
    width: 116px;
    height: 90px;
    background-size: 100% 100%;
    flex-shrink: 0;
    cursor: pointer;
}

/* ============================
   NAV MAIN WRAPPER
   ============================ */

.v .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================
   NAV ITEMS (STYLISH TABS)
   ============================ */

.v .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 0;
    transition: all 0.25s ease;
}

/* HOVER FADE */
.v .nav-item:hover {
    opacity: 0.85;
}

/* UPPERCASE LABELS — CLEAN & MODERN */
.v .nav-item span,
.v .nav-item a {
    font-family: "Oxygen", Helvetica, sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* Underline HOVER effect */
.v .nav-item:hover span,
.v .nav-item:hover a {
    color: #d6451e;
}

/* Animated underline */
.v .nav-item::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffb347, #ff6f61);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* ============================
   DROPDOWN ARROW
   ============================ */

.v .down-arrow {
    width: 14px;
    height: 14px;
    transition: 0.25s ease;
}

.v .nav-item.dropdown:hover .down-arrow {
    transform: rotate(180deg);
}

/* ============================
   SUBMENU (Dropdown)
   ============================ */

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    width: 232px;
    padding: 10px 0;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all .28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    z-index: 999;
}

/* Show dropdown smoothly */
.nav-item.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* DROPDOWN ITEMS */
.submenu li {
    list-style: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
}

.submenu li a {
    text-decoration: none;
    color: inherit;
}

/* Creative hover */
.submenu li:hover {
    background: #ffe8df;
    color: #d6451e;
    padding-left: 26px;
}

/* ============================
   RESPONSIVE NAV
   ============================ */

@media (max-width: 992px) {
    .v .nav {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .v .nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .submenu {
        position: relative;
        left: 0;
        transform: translateX(0) translateY(0);
        width: 100%;
        box-shadow: none;
        background: #fafafa;
        padding-left: 6px;
    }

    .submenu li {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .v .nav {
        gap: 16px;
    }

    .v .nav-item span,
    .v .nav-item a {
        font-size: 13px;
        letter-spacing: 0.06em;
    }
}

/* .v .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  width: max-content;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 12px;
  display: none;
  z-index: 1200;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 6px 8px;
}

.v .nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-family: "Oxygen", Helvetica;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 10px;
}

.v .nav-dropdown a:hover {
  background-color: #f6f4f1;
  color: #0a369d;
}

.v .nav-item.open .nav-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.v .nav-item .down-arrow {
  transition: transform 0.25s ease;
}
.v .nav-item.open .down-arrow {
  transform: rotate(180deg);
} */

.v .header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.v .right {
    width: 136px;
    height: 35px;
    cursor: pointer;
}

.v .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.v .mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.v .mobile-menu-toggle:hover span {
    background-color: #0a369d;
}

.v .floting-w-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 144px;
    height: 144px;
    z-index: 999;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.v .floting-w {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
}

.v .floting-w-link:hover {
    transform: scale(1.1);
}

.v .floting-w-link:hover .floting-w {
    transform: none;
}

.v .rectangle-26 {
    position: absolute;
    top: 5284px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d0c9c0;
}

.v .rectangle-27 {
    position: absolute;
    top: 4408px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d0c9c0;
}

.v .rectangle-28 {
    position: absolute;
    top: 3749px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d0c9c0;
}

.v .rectangle-29 {
    position: absolute;
    top: 3144px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d0c9c0;
}

.v .rectangle-30 {
    position: absolute;
    top: 2692px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d0c9c0;
}

.v .rectangle-31 {
    position: absolute;
    top: 2049px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d0c9c0;
}

.v .rectangle-32 {
    position: absolute;
    top: 1440px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d0c9c0;
}

/* Generic horizontal slider track used on smaller screens */
.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

@media screen and (max-width: 1400px) {
    .v .nav {
        gap: 25px;
    }

    .v .nav-item span {
        font-size: 16px;
    }

    .v .header-main {
        padding: 0 40px;
    }
}

@media screen and (max-width: 1200px) {
    .v .nav {
        gap: 20px;
    }

    .v .nav-item span {
        font-size: 14px;
    }

    .v .caption {
        left: 80px;
        width: 600px;
    }

    .v .tourbillon {
        font-size: 52px;
        width: 600px;
    }

    .v .text-wrapper-31 {
        font-size: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .v .header-main {
        padding: 0 30px;
        height: 80px;
    }

    .v .trikk {
        margin-top: 130px;
    }

    .v .nav {
        display: none;
    }

    .v .mobile-menu-toggle {
        display: flex;
    }

    .v .logo {
        width: 90px;
        height: 70px;
    }

    .v .right {
        width: 100px;
        height: 28px;
    }

    .v .caption {
        left: 40px;
        width: 90%;
    }

    .v .tourbillon {
        font-size: 42px;
        width: 100%;
    }

    .v .text-wrapper-31 {
        font-size: 24px;
        width: 100%;
    }

    .v .IMG {
        width: 60%;
    }

    /* Footer - Desktop/Tablet Transition: 4 columns to 2 columns */
    .v .footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding-top: 80px;
        padding-bottom: 80px;
        padding-left: clamp(40px, 6vw, 96px);
        padding-right: clamp(40px, 6vw, 96px);
        margin: 0;
        justify-items: start;
        align-items: start;
    }

    .v .floting-w-link {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }

    /* Product cards responsive - Tablet */
    .v .product-box,
    .v .product-box-2,
    .v .product-box-3,
    .v .product-box-4,
    .v .product-box-5,
    .v .product-box-6,
    .v .product-box-7,
    .v .product-box-8,
    .v .product-box-9,
    .v .product-box-10 {
        border-radius: 20px;
    }

    .v .rectangle-7,
    .v .rectangle-8,
    .v .rectangle-9,
    .v .rectangle-10,
    .v .rectangle-20,
    .v .rectangle-21,
    .v .rectangle-22,
    .v .rectangle-23 {
        border-radius: 20px;
    }

    .v .rectangle-7,
    .v .rectangle-10,
    .v .rectangle-21,
    .v .rectangle-23 {
        border-radius: 0 0 20px 20px;
    }

    .v .mask-group-2,
    .v .mask-group-3,
    .v .mask-group-6,
    .v .mask-group-7,
    .v .mask-group-8 {
        border-radius: 20px 20px 0 0;
    }

    .v .footer-column {
        width: 100%;
        flex: 1 1 0;
    }

    .v .icon-list {
        padding: 68px clamp(40px, 6vw, 96px);
        gap: 40px;
        justify-content: space-between;
    }

    /* Section Padding - Desktop/Tablet Transition - Full Width */
    .v .ats {
        padding: 0;
    }

    .v .celebration {
        padding: 45px 0;
    }

    .v .insta {
        padding: 50px 0;
    }

    .v .about {
        padding: 55px 0;
    }

    .v .pick-for-you {
        padding: 0;
    }

    .v .category {
        padding: 45px 0;
    }

    .v .best-sellers {
        padding: 0;
    }

    .v .group-11 {
        padding: 0 clamp(20px, 4vw, 40px);
    }

    .v .box,
    .v .box-2 {
        width: calc(50% - 12.5px);
        min-width: 200px;
        max-width: 254px;
    }

    .v .img-2 {
        width: 100%;
        height: auto;
        max-width: 254px;
    }

    .v .footer {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Mobile / tablet dropdown navigation */
.v .header.open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fffbf9;
    padding: 16px 20px 20px;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.v .header.open .nav-item span {
    font-size: 16px;
}

.v .header.open .nav-item .nav-dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 8px 0 12px;
    padding: 10px;
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
    box-shadow: none;
    background-color: #f6f4f1;
    opacity: 1;
    transform: none;
    display: grid;
}

.v .header.open .nav-dropdown a {
    padding: 12px 14px;
    font-size: 15px;
}

@media screen and (max-width: 768px) {
    .v .header-main {
        padding: 0 20px;
        height: 70px;
    }

    .v .trikk {
        margin-top: 120px;
    }

    /* Section Padding - Tablet - Full Width */
    .v .ats {
        padding: 0;
    }

    .v .celebration {
        padding: 40px 0;
    }

    .v .insta {
        padding: 45px 0;
    }

    .v .about {
        padding: 50px 0;
    }

    .v .pick-for-you {
        padding: 0;
    }

    .v .category {
        padding: 40px 0;
    }

    .v .best-sellers {
        padding: 0;
    }

    .v .group-11 {
        padding: 0 clamp(20px, 4vw, 40px);
        gap: 20px;
    }

    .v .box,
    .v .box-2 {
        width: calc(50% - 10px);
        min-width: 180px;
        max-width: 254px;
    }

    .v .img-2 {
        width: 100%;
        height: auto;
        max-width: 254px;
    }

    .v .icon-list {
        padding: 64px clamp(30px, 5vw, 80px);
    }

    .v .footer {
        padding-left: clamp(30px, 5vw, 80px);
        padding-right: clamp(30px, 5vw, 80px);
    }

    .v .logo {
        width: 70px;
        height: 60px;
    }

    .v .right {
        width: 80px;
        height: 24px;
    }

    .v .banner {
        height: 600px;
    }

    .v .mask-group-5,
    .v .rectangle-13,
    .v .rectangle-14 {
        height: 562px;
    }

    .v .IMG {
        width: 100%;
        height: 600px;
        opacity: 0.3;
    }

    .v .caption {
        left: 20px;
        top: 150px;
        width: calc(100% - 40px);
        z-index: 10;
    }

    .v .tourbillon {
        font-size: 32px;
        height: auto;
    }

    .v .text-wrapper-31 {
        font-size: 20px;
        margin-top: 16px;
    }

    .v .BUTTON {
        margin-top: 40px;
    }

    .v .paginate {
        right: 20px;
        top: 550px;
    }

    .v .threads-of,
    .v .follow-us,
    .v .explore-by-category,
    .v .explore-bestsellers,
    .v .top-picks-for-you {
        font-size: 28px;
    }

    .v .p,
    .v .text-wrapper-17,
    .v .text-wrapper-30,
    .v .text-wrapper-37,
    .v .new-arrivals-coming {
        font-size: 16px;
    }

    /* Category text responsive - Tablet */
    .v .wall-clocks,
    .v .smart-watches,
    .v .premium-watches,
    .v .men-s-watch {
        font-size: 24px;
    }

    .v .wall-clocks .text-wrapper-28,
    .v .smart-watches .text-wrapper-28,
    .v .premium-watches .text-wrapper-28,
    .v .men-s-watch .text-wrapper-28 {
        font-size: 24px;
    }

    .v .wall-clocks .text-wrapper-29,
    .v .smart-watches .text-wrapper-29,
    .v .premium-watches .text-wrapper-29,
    .v .men-s-watch .text-wrapper-29 {
        font-size: 16px;
    }

    /* Service Icon Section - Tablet */
    .v .icon-list {
        padding: 64px clamp(30px, 5vw, 80px);
        gap: 40px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .v .icon,
    .v .icon-2,
    .v .icon-3,
    .v .icon-4 {
        margin: 0;
        gap: 14px;
    }

    .v .text-wrapper,
    .v .text-wrapper-2,
    .v .element-day-return {
        font-size: 17px;
    }

    /* Footer - Tablet: 2 columns */
    .v .footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding-top: 72px;
        padding-bottom: 72px;
        padding-left: clamp(30px, 5vw, 80px);
        padding-right: clamp(30px, 5vw, 80px);
        margin: 0;
        justify-items: start;
        align-items: start;
    }

    .v .footer-column {
        gap: 22px;
        width: 100%;
        flex: 1 1 0;
    }

    .v .footer-heading {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .v .social-heading {
        margin-top: 24px;
        font-size: 16px;
    }

    .v .footer-links,
    .v .footer-contact-details {
        font-size: 15px;
        line-height: 1.9;
    }

    .v .footer-social {
        gap: 12px;
    }

    .v .footer-social img {
        width: 36px;
        height: 36px;
    }

    .v .floting-w-link {
        width: 80px;
        height: 80px;
        bottom: 15px;
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .v .header-main {
        height: 60px;
        padding: 0 16px;
    }

    .v .trikk {
        margin-top: 100px;
    }

    /* Section Padding - Mobile - Full Width */
    .v .ats {
        padding: 0;
    }

    .v .celebration {
        padding: 32px 0;
        gap: 32px;
    }

    .v .insta {
        padding: 40px 0;
        gap: 32px;
    }

    .v .about {
        padding: 40px 0;
    }

    .v .pick-for-you {
        padding: 0;
    }

    .v .category {
        padding: 32px 0;
    }

    .v .best-sellers {
        padding: 0;
    }

    .v .group-11 {
        padding: 0 clamp(16px, 3vw, 32px);
        gap: 16px;
    }

    .v .box,
    .v .box-2 {
        width: 100%;
        max-width: 254px;
    }

    .v .img-2 {
        width: 100%;
        height: auto;
        max-width: 254px;
    }

    .v .category-slider {
        left: 0;
        width: 100%;
    }

    .v .icon-list {
        padding: 56px 0;
    }

    .v .footer {
        padding-left: 0;
        padding-right: 0;
    }

    .v .logo {
        width: 60px;
        height: 50px;
    }

    .v .right {
        width: 60px;
        height: 20px;
    }

    .v .banner {
        height: 500px;
    }

    .v .mask-group-5,
    .v .rectangle-13,
    .v .rectangle-14 {
        height: 462px;
    }

    .v .IMG {
        height: 500px;
    }

    .v .caption {
        top: 100px;
    }

    .v .tourbillon {
        font-size: 24px;
    }

    .v .text-wrapper-31 {
        font-size: 16px;
    }

    .v .BUTTON {
        width: 200px;
        height: 48px;
        margin-top: 30px;
    }

    .v .rectangle-19 {
        width: 208px;
        height: 56px;
    }

    .v .text-wrapper-32 {
        font-size: 24px;
        left: 30px;
    }

    .v .threads-of,
    .v .follow-us,
    .v .explore-by-category,
    .v .explore-bestsellers,
    .v .top-picks-for-you {
        font-size: 24px;
    }

    /* Category text responsive - Mobile */
    .v .wall-clocks,
    .v .smart-watches,
    .v .premium-watches,
    .v .men-s-watch {
        font-size: 20px;
        gap: 2px;
    }

    .v .wall-clocks .text-wrapper-28,
    .v .smart-watches .text-wrapper-28,
    .v .premium-watches .text-wrapper-28,
    .v .men-s-watch .text-wrapper-28 {
        font-size: 20px;
    }

    .v .wall-clocks .text-wrapper-29,
    .v .smart-watches .text-wrapper-29,
    .v .premium-watches .text-wrapper-29,
    .v .men-s-watch .text-wrapper-29 {
        font-size: 14px;
    }

    /* Service Icon Section - Mobile */
    .v .icon-list {
        padding: 56px clamp(20px, 4vw, 40px);
        gap: 32px;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .v .icon,
    .v .icon-2,
    .v .icon-3,
    .v .icon-4 {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        max-width: 140px;
        min-width: 120px;
    }

    /* Green divs - slightly smaller on mobile, maintaining alignment */
    .v .div,
    .v .rectangle-2 {
        width: 56px;
        height: 56px;
        position: relative;
    }

    /* Icon images - centered inside green divs on mobile */
    .v .icon .group,
    .v .icon-2 .group {
        width: 36px;
        height: 36px;
        left: 28px;
        /* Center of 56px green div (56px / 2 = 28px) */
    }

    .v .icon-3 .img {
        width: 44px;
        height: 44px;
        left: 28px;
        /* Center of 56px green div (56px / 2 = 28px) */
    }

    .v .icon-4 .group-2 {
        width: 44px;
        height: 44px;
        left: 28px;
        /* Center of 56px green div (56px / 2 = 28px) */
    }

    .v .text-wrapper,
    .v .text-wrapper-2,
    .v .element-day-return {
        font-size: 15px;
        text-align: center;
        line-height: 1.4;
    }

    /* Footer - Mobile: 1 column */
    .v .footer {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: clamp(20px, 4vw, 40px);
        padding-right: clamp(20px, 4vw, 40px);
        margin: 0;
        justify-items: start;
        align-items: start;
    }

    .v .footer-column {
        gap: 20px;
        width: 100%;
        flex: 1 1 0;
    }

    .v .footer-heading {
        font-size: 17px;
        margin-bottom: 6px;
        letter-spacing: 0.3px;
    }

    .v .social-heading {
        margin-top: 24px;
        font-size: 16px;
        margin-bottom: 6px;
    }

    .v .footer-links,
    .v .footer-contact-details {
        font-size: 15px;
        line-height: 1.9;
    }

    .v .footer-social {
        gap: 12px;
        margin-top: 4px;
    }

    .v .footer-social img {
        width: 36px;
        height: 36px;
    }

    /* Copyright - Mobile */
    .v .element-TRIKK-all {
        font-size: 11px;
        flex-wrap: wrap;
        padding: 16px 12px;
        gap: 4px;
    }

    .v .text-wrapper-4 {
        font-size: 11px;
    }

    /* Product cards responsive - Mobile */
    .v .product-box,
    .v .product-box-2,
    .v .product-box-3,
    .v .product-box-4,
    .v .product-box-5,
    .v .product-box-6,
    .v .product-box-7,
    .v .product-box-8,
    .v .product-box-9,
    .v .product-box-10 {
        border-radius: 16px;
    }

    .v .product-box:hover,
    .v .product-box-2:hover,
    .v .product-box-3:hover,
    .v .product-box-4:hover,
    .v .product-box-5:hover,
    .v .product-box-6:hover,
    .v .product-box-7:hover,
    .v .product-box-8:hover,
    .v .product-box-9:hover,
    .v .product-box-10:hover {
        transform: translateY(-4px);
    }

    .v .rectangle-7,
    .v .rectangle-8,
    .v .rectangle-9,
    .v .rectangle-10,
    .v .rectangle-20,
    .v .rectangle-21,
    .v .rectangle-22,
    .v .rectangle-23 {
        border-radius: 16px;
    }

    .v .rectangle-7,
    .v .rectangle-10,
    .v .rectangle-21,
    .v .rectangle-23 {
        border-radius: 0 0 16px 16px;
    }

    .v .mask-group-2,
    .v .mask-group-3,
    .v .mask-group-6,
    .v .mask-group-7,
    .v .mask-group-8 {
        border-radius: 16px 16px 0 0;
    }

    .v .product-box:hover .mask-group-2,
    .v .product-box-2:hover .mask-group-2,
    .v .product-box-3:hover .mask-group-2,
    .v .product-box-4:hover .mask-group-2,
    .v .product-box-5:hover .mask-group-3,
    .v .product-box-6:hover .mask-group-6,
    .v .product-box-7:hover .mask-group-7,
    .v .product-box-8:hover .mask-group-8,
    .v .product-box-9:hover .mask-group-6,
    .v .product-box-10:hover .mask-group-8 {
        transform: scale(1.03);
    }
}

@media (max-width: 1024px) {
    .v .trikk {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .v .trikk {
        margin-top: 110px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .v .trikk {
        margin-top: 90px;
        padding: 8px;
    }
}

@media screen and (max-width: 1024px) {
    .v .insta-grid {
        grid-template-rows: 220px 200px;
        gap: 14px;
    }

    .v .best-sellers .slider-btn,
    .v .pick-for-you .slider-btn,
    .v .celebration .slider-btn {
        width: 52px;
        height: 52px;
    }

    .v .best-sellers .slider-btn .arrow-icon,
    .v .pick-for-you .slider-btn .arrow-icon,
    .v .celebration .slider-btn .arrow-icon {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 768px) {
    .v .insta-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px auto auto auto;
        grid-template-areas:
            "hero hero"
            "rightTop rightTop"
            "bottom1 bottom2"
            "bottom3 bottom3";
        gap: 12px;
        max-width: 100%;
        padding: 0 clamp(16px, 4vw, 32px);
        box-sizing: border-box;
    }

    .v .insta-right {
        grid-template-columns: 1fr 1fr;
    }

    .v .best-sellers .slider-btn,
    .v .pick-for-you .slider-btn,
    .v .celebration .slider-btn {
        width: 48px;
        height: 48px;
    }

    .v .best-sellers .slider-btn .arrow-icon,
    .v .pick-for-you .slider-btn .arrow-icon,
    .v .celebration .slider-btn .arrow-icon {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 480px) {
    .v .insta-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        grid-template-areas:
            "hero"
            "rightTop"
            "bottom1"
            "bottom2"
            "bottom3";
        gap: 10px;
        padding: 0 clamp(12px, 4vw, 24px);
    }

    .v .insta-right {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .v .insta-card {
        border-radius: 16px;
    }

    .v .best-sellers .slider-btn,
    .v .pick-for-you .slider-btn,
    .v .celebration .slider-btn {
        width: 44px;
        height: 44px;
    }

    .v .best-sellers .slider-btn .arrow-icon,
    .v .pick-for-you .slider-btn .arrow-icon,
    .v .celebration .slider-btn .arrow-icon {
        width: 20px;
        height: 20px;
    }
}

/* ================================
   MAIN BANNER CONTAINER
   ================================ */

.v .celebration-banner {
    position: relative;
    width: 100%;
    max-width: 1700px;
    height: clamp(220px, 40vw, 475px);
    /* Responsive height */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}

/* Background Image Panel */
.v .celebration-banner .celebration-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */

/* Tablets – 1024px and below */
@media (max-width: 1024px) {
    .v .celebration-banner {
        height: clamp(200px, 48vw, 420px);
        border-radius: 20px;
    }
}

/* Tablets & Large Phones – 768px */
@media (max-width: 768px) {
    .v .celebration-banner {
        height: clamp(180px, 52vw, 360px);
        border-radius: 18px;
    }

    .v .celebration-banner .banner-dot {
        width: 10px;
        height: 10px;
    }
}

/* Phones – 576px */
@media (max-width: 576px) {
    .v .celebration-banner {
        height: clamp(160px, 58vw, 300px);
        border-radius: 16px;
    }

    .v .celebration-banner .paginate {
        bottom: 12px;
        gap: 8px;
    }
}

/* Small Phones – 400px and below */
@media (max-width: 400px) {
    .v .celebration-banner {
        height: clamp(140px, 62vw, 240px);
        border-radius: 14px;
    }

    .v .celebration-banner .banner-dot {
        width: 8px;
        height: 8px;
    }
}

.v .celebration-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.6s ease-out;
    opacity: 0.85;
}

.v .celebration-caption {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.v .celebration-banner .paginate {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.v .celebration-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 14px 28px;
    border-radius: 999px;
    background-color: #0a369d;
    color: #ffffff;
    font-family: "Oxygen", Helvetica;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.25s ease, opacity 0.25s ease,
        background-color 0.25s ease;
}

.v .celebration-button:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    background-color: #092f8a;
}

@media screen and (max-width: 1024px) {
    .v .celebration-banner {
        height: 300px;
        border-radius: 20px;
    }

    .v .celebration-image {
        opacity: 0.9;
    }
}

@media screen and (max-width: 768px) {
    .v .celebration-banner {
        height: 280px;
        max-width: 100%;
        border-radius: 20px;
    }

    .v .celebration-button {
        margin-top: 18px;
        padding: 12px 22px;
        font-size: 15px;
    }
}

/* ============================================================
   MODERN ENHANCEMENTS WITHOUT LAYOUT CHANGE
   ============================================================ */

/* Smooth fade-in animation for the whole banner */
.v .celebration-banner {
    animation: fadeIn 0.7s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Add soft gradient overlay for richness */
.v .celebration-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.15)
    );
    pointer-events: none;
    z-index: 1;
}

/* Upgrade image appearance */
.v .celebration-image {
    filter: brightness(0.95) contrast(1.05);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.v .celebration-banner:hover .celebration-image {
    filter: brightness(1) contrast(1.1);
    transform: scale(1.02);
}

/* Dot indicators — modern glowing design */
.v .banner-dot {
    width: 12px;
    height: 12px;
    background-color: #ffffffb3;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    transition: transform 0.25s ease, background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.v .banner-dot:hover {
    transform: scale(1.25);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* Active dot support if you activate via JS */
.v .banner-dot.active {
    background-color: #0a369d;
    box-shadow: 0 0 8px rgba(10, 54, 157, 0.7);
    transform: scale(1.35);
}

/* Caption text improvement (if captions used) */
.v .celebration-caption {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.8s ease-out;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modern hover lift effect */
.v .celebration-banner:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

/* Button enhancement */
.v .celebration-button {
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(10, 54, 157, 0.3);
}

.v .celebration-button:hover {
    box-shadow: 0 6px 20px rgba(10, 54, 157, 0.4);
}

/* ------------------------------------------------------------
   RESPONSIVE ENHANCEMENTS
------------------------------------------------------------ */

@media (max-width: 768px) {
    /* Better tap targets */
    .v .banner-dot {
        width: 14px;
        height: 14px;
    }

    /* Less intense hover zoom on mobile */
    .v .celebration-banner:hover .celebration-image {
        transform: scale(1.01);
    }
}

@media (max-width: 480px) {
    .v .banner-dot {
        width: 10px !important;
        height: 10px !important;
    }

    .v .celebration-banner {
        border-radius: 12px;
    }
}

@media screen and (max-width: 480px) {
    .v .header.open .nav-item .nav-dropdown {
        grid-template-columns: 1fr;
    }

    .v .celebration-banner {
        height: 240px;
        border-radius: 16px;
    }

    .v .celebration-button {
        margin-top: 16px;
        padding: 11px 20px;
        font-size: 14px;
    }
}

.v .top-picks-track>[class^="product-box"] .mask-group-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 275px;
    border-radius: 24px 24px 0 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.v .top-picks-track>[class^="product-box"]:hover .mask-group-2 {
    transform: scale(1.05);
}

/* Remove bottom panel/line under Top Picks cards */
.v .top-picks-track>[class^="product-box"] .rectangle-7 {
    display: none;
}

/* Close Button Modern Look */
.modern-close-btn {
    font-size: 32px;
    color: #333;
    opacity: 1;
    transition: 0.2s;
}

.modern-close-btn:hover {
    color: #ff5252;
    transform: scale(1.1);
}

/* Product Title */
.product-title {
    font-weight: 600;
    font-size: 24px;
}

/* Price highlight */
.price {
    font-size: 22px;
    font-weight: bold;
}

/* Carousel Styling */
.carousel-inner img {
    border-radius: 8px;
    object-fit: cover;
}

/* Modal Smooth Animation */
.quickview-modal .modal-dialog {
    transition: transform .3s ease-out;
    transform: translateY(-20px);
}

.quickview-modal.show .modal-dialog {
    transform: translateY(0);
}

/* Ensure product parent stays relative */
.product-box-6 {
    position: relative;
    overflow: hidden;
}

.product-box-7 {
    position: relative;
    overflow: hidden;
}

/* Bottom hover panel */
.button-head {
    position: absolute;
    bottom: -90px;
    /* hidden initially */
    left: 0;
    width: 100%;
    padding: 22px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: all 0.35s ease-in-out;
}

/* Show on hover */
.product-box-6:hover .button-head {
    bottom: 0;
    opacity: 1;
}

.product-box-7:hover .button-head {
    bottom: 0;
    opacity: 1;
}

/* --------------------- */
/* ROW: Quick Shop + Wishlist */
/* --------------------- */
.product-action {
    display: flex;
    justify-content: space-between;
    /* side-by-side */
    align-items: center;
    width: 100%;
}

/* Links inside product-action */
.product-action a {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    /* equal width */
    justify-content: center;
    padding: 8px 0;
    transition: 0.3s;
    text-decoration: none;
}

/* Hover styling for icons */
.product-action a:hover {
    color: #ffcc66;
    transform: translateY(-2px);
}

/* --------------------- */
/* Row: Add to cart */
/* --------------------- */
.product-action-2 a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    text-align: center;
    background: #ff6600;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.product-action-2 a:hover {
    background: #ff7f26;
}

/* TAG Styling (New / Hot / Sale Out / % Off) */
/* Default tag style (visible) */
.product-box-6 .tag-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: .5px;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

/* Hide tag on hover */
.product-box-6:hover .tag-badge {
    opacity: 0;
    visibility: hidden;
}
.product-box-7 .tag-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: .5px;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

/* Hide tag on hover */
.product-box-7:hover .tag-badge {
    opacity: 0;
    visibility: hidden;
}

/* Tag colors */
.tag-saleout {
    background: #d9534f;
}

.tag-new {
    background: #28a745;
}

.tag-hot {
    background: #ff5722;
}

.tag-discount {
    background: #007bff;
}


/* Different Tag Colors */
.tag-saleout {
    background: #d9534f;
    /* red */
}

.tag-new {
    background: #28a745;
    /* green */
}

.tag-hot {
    background: #ff5722;
    /* orange */
}

.tag-discount {
    background: #007bff;
    /* blue */
}

/* Mobile Size Adjust */
@media (max-width: 480px) {
    .product-box-6 .tag-badge {
        font-size: 11px;
        padding: 4px 9px;
    }

    .product-box-7 .tag-badge {
        font-size: 11px;
        padding: 4px 9px;
    }
}


/* --------------------- */
/* RESPONSIVE FIXES */
/* --------------------- */
@media (max-width: 480px) {
    .product-action {
        flex-direction: column;
        gap: 8px;
    }
}

.sharethis-sticky-share-buttons,
.st-sticky-share-buttons {
    display: none !important;
}

/* Lightbox Background */
.insta-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    animation: fadeIn .3s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Lightbox Image */
.insta-lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    animation: zoomIn .25s ease-in-out;
}

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

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

/* Close Button */
.insta-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.insta-close:hover {
    color: #ffcc66;
    transform: scale(1.2);
}

/* Mobile Fix */
@media (max-width: 480px) {
    .insta-close {
        font-size: 36px;
    }
}
