:root {
    --orange: #ff6a00;
    --orange-dark: #e65700;
    --orange-soft: #fff2e8;
    --blue: #0056b3;
    --wa-green: #25D366;
    --text: #1f1f1f;
    --muted: #666;
    --border: #ececec;
    --bg-soft: #fafafa;
    --shadow: 0 12px 30px rgba(0,0,0,0.12);
    --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--text);
    overflow-x: hidden;
    padding-top: 112px;
}

/* =========================
   HELPERS
========================= */

.container-v1 {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================
   TOPBAR
========================= */

.topbar-final {
    background: #000;
    padding: 12px 0;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10030;
    border-bottom: 1px solid rgba(255,106,0,0.18);
}

.top-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pay-btn-v1 {
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
}

    .pay-btn-v1:hover {
        background: #00458f;
    }

.phone-v1 {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s ease;
}

    .phone-v1:hover {
        color: #ffb27d;
    }

.top-social-v1 a {
    margin-left: 14px;
    font-size: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: 0.25s ease;
}

    .top-social-v1 a:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.12);
    }

.wa-v1 i {
    color: var(--wa-green) !important;
}

.ig-v1 i {
    background: var(--ig-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.show-mob {
    display: none;
}

.hide-mob {
    display: inline;
}

/* =========================
   HEADER
========================= */

.header-final {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--orange);
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 10020;
    padding: 15px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.logo-v1 a {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-v1 span {
    color: var(--orange);
}

/* =========================
   NAV DESKTOP
========================= */

.nav-wrapper-v1 {
    display: block;
}

.nav-list-v1 {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

    .nav-list-v1 > li {
        position: relative;
    }

        .nav-list-v1 > li > a {
            text-decoration: none;
            color: #333;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s ease;
            position: relative;
        }

            .nav-list-v1 > li > a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -6px;
                width: 0;
                height: 2px;
                background: var(--orange);
                transition: width 0.25s ease;
            }

            .nav-list-v1 > li > a:hover {
                color: var(--orange);
            }

                .nav-list-v1 > li > a:hover::after {
                    width: 100%;
                }

.drop-panel-v1 {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    border-top: 3px solid var(--orange);
    border-radius: 0 0 12px 12px;
    max-height: 450px;
    overflow-y: auto;
    z-index: 10030;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    padding-top: 2px;
}

    .drop-panel-v1.scroll-y {
        min-width: 290px;
    }

.nav-list-v1 li:hover > .drop-panel-v1 {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.sub-link-v1 {
    display: block;
    padding: 13px 18px;
    text-decoration: none;
    color: #333 !important;
    font-size: 13px;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 600;
    transition: 0.2s ease;
}

    .sub-link-v1:hover {
        background: #fff8f3;
        color: var(--orange) !important;
    }

.nav-toggle-v1 {
    display: none;
    cursor: pointer;
    font-size: 26px;
    color: #000;
    background: transparent;
    border: 0;
    outline: 0;
}

/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* =========================
   BRAND PARTIAL / DROPDOWN
========================= */

.brand-acc-v1 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.brand-item-v1 {
    position: relative;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.brand-title-v1 {
    padding: 15px 18px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: #333;
    transition: 0.2s ease;
}

    .brand-title-v1:hover {
        background: #fff8f3;
        color: var(--orange);
    }

    .brand-title-v1 i {
        transition: transform 0.2s ease;
    }

.brand-sub-v1 {
    display: none;
    background: #fffaf6;
    border-left: 4px solid var(--orange);
}

.brand-item-v1.is-open > .brand-sub-v1 {
    display: block;
}

.brand-item-v1.is-open > .brand-title-v1 i {
    transform: rotate(180deg);
}

.brand-link-v1 {
    display: block;
    padding: 12px 40px;
    text-decoration: none;
    color: #555 !important;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    transition: 0.2s ease;
}

    .brand-link-v1:hover {
        background: #fff;
        color: var(--orange) !important;
    }

/* =========================
   HOME MAIN
========================= */

.main-page-v1 {
    position: relative;
    z-index: 1;
}

/* =========================
   HOME CATEGORIES
========================= */

.cat-section-v22 {
    display: flex;
    height: 700px;
    gap: 20px;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.cat-card-v22 {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    text-decoration: none;
    background: #111;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

    .cat-card-v22 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: transform 0.6s ease;
        filter: none;
    }

    .cat-card-v22:hover img {
        transform: scale(1.05);
    }

.cat-overlay-v22 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.38), rgba(0,0,0,0.03));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    text-align: center;
}

    .cat-overlay-v22 h2 {
        color: #fff;
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 16px;
        letter-spacing: 1px;
        text-shadow: 0 2px 12px rgba(0,0,0,0.30);
    }

.cat-btn-v22 {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}

.cat-card-v22:hover .cat-btn-v22 {
    background: var(--orange);
    border-color: var(--orange);
}

/* =========================
   COLLECTION TITLE
========================= */

.collection-title-v22 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 12px;
}

.collection-mini-v22 {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.collection-title-v22 h2 {
    font-weight: 900;
    border-bottom: 4px solid var(--orange);
    display: inline-block;
    padding-bottom: 10px;
    font-size: 34px;
    letter-spacing: -0.5px;
}

.collection-title-v22 p {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================
   PRODUCT GRID
========================= */

.product-grid-v22 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    padding: 40px 0 60px;
}

.product-item-v1 {
    min-width: 0;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-frame {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

    .product-frame:hover {
        border-color: rgba(255,106,0,0.30);
        transform: translateY(-8px);
        box-shadow: 0 20px 44px rgba(255,106,0,0.14);
    }

.product-image-wrapper {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    padding: 22px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #efefef;
}

.product-badge-v1 {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: rgba(255,106,0,0.12);
    color: var(--orange);
    border: 1px solid rgba(255,106,0,0.15);
    font-size: 11px;
    font-weight: 800;
    padding: 7px 10px;
    border-radius: 999px;
    letter-spacing: 0.4px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.45s ease;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.00));
}

.product-frame:hover .product-image {
    transform: scale(1.08);
}

.product-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,106,0,0.20), rgba(0,0,0,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.35s;
}

.product-frame:hover .product-hover-overlay {
    opacity: 1;
}

.product-hover-button {
    background: white;
    color: black;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

    .product-hover-button:hover {
        background: var(--orange);
        color: white;
    }

.product-content {
    padding: 18px 18px 20px;
    text-align: center;
}

.product-brand {
    font-size: 12px;
    color: var(--orange);
    min-height: 18px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
    min-height: 42px;
    color: #222;
    line-height: 1.45;
}

.product-price {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.old-price {
    text-decoration: line-through;
    color: #a7a7a7;
    font-size: 14px;
}

.new-price {
    font-size: 22px;
    font-weight: 900;
    color: #111;
}

.shipping-text {
    font-size: 12px;
    color: #198754;
    margin-top: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

    .shipping-text::before {
        content: "•";
        color: var(--orange);
    }

/* =========================
   ONLY INDEX PAGINATION
========================= */

.home-pagination-v22 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 60px;
}

.home-page-btn-v22 {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,106,0,0.22);
    background: #fff7f2;
    color: var(--orange);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px rgba(255,106,0,0.10);
}

    .home-page-btn-v22:hover {
        border-color: var(--orange);
        background: var(--orange);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(255,106,0,0.24);
    }

    .home-page-btn-v22.active {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
        box-shadow: 0 12px 24px rgba(255,106,0,0.28);
    }

.home-page-nav-v22 {
    padding: 0 18px;
    background: linear-gradient(135deg, #ff7a1a, #ff6a00);
    color: #fff;
    border-color: var(--orange);
}

    .home-page-nav-v22:hover {
        background: #111;
        border-color: #111;
        color: #fff;
    }

.home-page-dots-v22 {
    padding: 0 6px;
    color: var(--orange);
    font-weight: 800;
    font-size: 14px;
}

/* =========================
   PRODUCT DETAIL
========================= */

.product-detail-page-v1 {
    padding: 36px 0 70px;
}

.product-detail-card-v1 {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.06);
    padding: 30px;
}

.product-detail-grid-v1 {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 38px;
    align-items: start;
}

.product-gallery-v1 {
    min-width: 0;
}

.product-main-visual-v1 {
    position: relative;
    background: #f7f7f7;
    border: 1px solid #ececec;
    border-radius: 24px;
    min-height: 560px;
    padding: 24px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0,0,0,0.05);
}

.product-main-visual-inner-v1 {
    width: 100%;
    height: 100%;
    min-height: 510px;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border: 1px solid #f1f1f1;
    overflow: hidden;
    position: relative;
}

.product-main-image-v1 {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transition: opacity 0.22s ease, transform 0.18s ease;
    transform-origin: center center;
    will-change: transform, opacity;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.0));
    cursor: zoom-in;
}

.product-detail-badge-v1 {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255,106,0,0.12);
    color: var(--orange);
    border: 1px solid rgba(255,106,0,0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 12px;
    z-index: 2;
}

.product-thumbs-v1 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.product-thumb-v1 {
    border: 1px solid #e8ebef;
    background: linear-gradient(180deg, #fff, #f8f9fb);
    border-radius: 16px;
    padding: 8px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

    .product-thumb-v1 img {
        width: 100%;
        height: 82px;
        object-fit: contain;
        display: block;
    }

    .product-thumb-v1:hover,
    .product-thumb-v1.active {
        border-color: var(--orange);
        box-shadow: 0 10px 24px rgba(255,106,0,0.12);
        transform: translateY(-2px);
    }

.product-summary-v1 {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-summary-top-v1 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-brand-chip-v1 {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: rgba(255,106,0,0.10);
    color: var(--orange);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.product-code-v1 {
    color: #777;
    font-size: 13px;
    font-weight: 600;
}

.product-title-main-v1 {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 900;
    color: #161616;
    letter-spacing: -0.7px;
}

.product-short-v1 {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.product-price-box-v1 {
    background: linear-gradient(135deg, #fff7f2, #fff);
    border: 1px solid rgba(255,106,0,0.14);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 12px 28px rgba(255,106,0,0.05);
}

.product-price-current-v1 {
    font-size: 34px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.product-price-old-v1 {
    font-size: 18px;
    color: #9b9b9b;
    text-decoration: line-through;
    font-weight: 600;
}

.product-shipping-v1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #198754;
    font-size: 13px;
    font-weight: 800;
    margin-top: 6px;
}

    .product-shipping-v1::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--orange);
        display: inline-block;
    }

.product-specs-v1 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.product-spec-item-v1 {
    background: #fafafa;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 14px 16px;
    transition: 0.2s ease;
}

    .product-spec-item-v1:hover {
        background: #fff;
        border-color: rgba(255,106,0,0.18);
        box-shadow: 0 8px 18px rgba(0,0,0,0.04);
    }

    .product-spec-item-v1 span {
        display: block;
        font-size: 12px;
        color: #8a8a8a;
        margin-bottom: 6px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .product-spec-item-v1 strong {
        font-size: 14px;
        color: #1d1d1d;
        font-weight: 800;
        line-height: 1.45;
    }

.product-tabs-wrap-v1 {
    margin-top: 34px;
    border-top: 1px solid #efefef;
    padding-top: 26px;
}

.product-tabs-v1 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.product-tab-btn-v1 {
    border: 1px solid #ececec;
    background: #fff;
    color: #333;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

    .product-tab-btn-v1.active,
    .product-tab-btn-v1:hover {
        background: var(--orange);
        color: #fff;
        border-color: var(--orange);
        box-shadow: 0 10px 22px rgba(255,106,0,0.18);
    }

.product-tab-panels-v1 {
    position: relative;
}

.product-tab-panel-v1 {
    display: none;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 18px;
    padding: 22px;
    animation: fadeTabV1 0.22s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.03);
}

    .product-tab-panel-v1.active {
        display: block;
    }

@keyframes fadeTabV1 {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-description-v1 {
    color: #444;
    font-size: 15px;
    line-height: 1.85;
}

    .product-description-v1 p {
        margin-bottom: 14px;
    }

.product-comments-empty-v1 {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

.product-empty-v1 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    font-size: 16px;
    color: #777;
}

/* =========================
   COMMON PAGE HERO
========================= */

.page-hero-v1 {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 46px 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 42px rgba(0,0,0,0.10);
}

.about-hero-v1,
.contact-hero-v1 {
    background: radial-gradient(circle at top left, rgba(255,106,0,0.18), transparent 30%), radial-gradient(circle at bottom right, rgba(255,106,0,0.10), transparent 28%), linear-gradient(135deg, #171717 0%, #232323 55%, #111111 100%);
}

.page-hero-content-v1 {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.page-mini-v1 {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.82);
}

.page-hero-v1 h1 {
    font-size: 46px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 14px;
}

.page-hero-v1 p {
    max-width: 720px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
   CATEGORY PAGES
========================= */

.category-page-v1 {
    padding-top: 28px;
    padding-bottom: 60px;
}

.category-hero-v1 {
    position: relative;
    min-height: 300px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.category-hero-man-v1 {
    background: linear-gradient(135deg, rgba(0,0,0,0.18), rgba(0,0,0,0.44)), url('/ImageSite/man.png') center 20% / cover no-repeat;
}

.category-hero-woman-v1 {
    background: linear-gradient(135deg, rgba(0,0,0,0.16), rgba(0,0,0,0.42)), url('/ImageSite/woman.png') center 18% / cover no-repeat;
}

.category-hero-child-v1 {
    background: linear-gradient(135deg, rgba(0,0,0,0.14), rgba(0,0,0,0.40)), url('/ImageSite/child.png') center 18% / cover no-repeat;
}

.category-hero-unisex-v1 {
    background: radial-gradient(circle at top left, rgba(255,106,0,0.18), transparent 30%), radial-gradient(circle at bottom right, rgba(255,106,0,0.10), transparent 28%), linear-gradient(135deg, #171717 0%, #232323 55%, #111111 100%);
}

.category-hero-overlay-v1 {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 44px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.category-mini-v1 {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.88);
}

.category-hero-overlay-v1 h1 {
    font-size: 44px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -1px;
    color: #fff;
}

.category-hero-overlay-v1 p {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    margin: 0;
}

.category-toolbar-v1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.category-toolbar-title-v1 h2 {
    font-size: 30px;
    font-weight: 900;
    color: #171717;
    letter-spacing: -0.4px;
    margin-top: 6px;
}

.category-page-v1 .product-grid-v22 {
    padding-top: 26px;
    padding-bottom: 20px;
}

/* =========================
   BRAND PAGE
========================= */

.brand-page-v1 .product-grid-v22 {
    padding-top: 26px;
    padding-bottom: 20px;
}

.brand-hero-v1 {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 42px 40px;
    margin-bottom: 28px;
    background: radial-gradient(circle at top left, rgba(255,106,0,0.18), transparent 30%), radial-gradient(circle at bottom right, rgba(255,106,0,0.12), transparent 28%), linear-gradient(135deg, #171717 0%, #232323 55%, #111111 100%);
    box-shadow: 0 20px 42px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,106,0,0.10);
}

.brand-hero-glow-v1 {
    position: absolute;
    top: -60px;
    right: -50px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,106,0,0.22), transparent 70%);
    pointer-events: none;
}

.brand-hero-content-v1 {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.brand-mini-v1 {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.82);
}

.brand-hero-v1 h1 {
    font-size: 46px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 14px;
}

.brand-hero-v1 p {
    max-width: 680px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.brand-hero-tags-v1 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.brand-tag-v1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

/* =========================
   ABOUT PAGE V2
========================= */

.about-page-v2 {
    padding-bottom: 70px;
}

.about-single-v2 {
    margin-bottom: 36px;
}

.about-single-card-v2 {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 24px;
    padding: 34px 32px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.05);
}

.about-single-head-v2 {
    margin-bottom: 20px;
}

    .about-single-head-v2 h2 {
        font-size: 34px;
        line-height: 1.18;
        font-weight: 900;
        color: #171717;
        letter-spacing: -0.7px;
        max-width: 900px;
    }

.about-single-text-v2 {
    max-width: 1000px;
}

    .about-single-text-v2 p {
        font-size: 15px;
        line-height: 1.95;
        color: var(--muted);
        margin-bottom: 0;
        white-space: pre-line;
    }

.about-highlight-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.about-highlight-box-v2 {
    background: linear-gradient(180deg, #fffaf6, #fff);
    border: 1px solid rgba(255,106,0,0.14);
    border-radius: 18px;
    padding: 20px 18px;
    transition: 0.25s ease;
}

    .about-highlight-box-v2:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(255,106,0,0.08);
        border-color: rgba(255,106,0,0.24);
    }

    .about-highlight-box-v2 h3 {
        font-size: 18px;
        font-weight: 800;
        color: #171717;
        margin-bottom: 10px;
    }

    .about-highlight-box-v2 p {
        font-size: 14px;
        line-height: 1.75;
        color: var(--muted);
        margin: 0;
    }

.section-head-v1 {
    margin-bottom: 18px;
}

.section-head-center-v1 {
    text-align: center;
    margin-bottom: 26px;
}

.section-mini-v1 {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-head-v1 h2,
.section-head-center-v1 h2 {
    font-size: 30px;
    font-weight: 900;
    color: #171717;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.section-head-center-v1 p {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
    font-size: 15px;
}

.stats-section-v1 {
    margin-top: 20px;
}

.stats-grid-v1 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.stat-card-v2 {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    transition: 0.25s ease;
}

    .stat-card-v2:hover {
        transform: translateY(-6px);
        border-color: rgba(255,106,0,0.20);
        box-shadow: 0 18px 34px rgba(255,106,0,0.08);
    }

.stat-card-top-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.stat-icon-v1 {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff2e8;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-value-wrap-v2 {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stat-number-v1 {
    display: block;
    font-size: 38px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.stat-value-wrap-v2 small {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 3px;
}

.stat-card-v2 h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #171717;
}

.stat-card-v2 p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.stat-meta-v2 {
    font-size: 13px;
    color: #555;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

    .stat-meta-v2 strong {
        color: var(--orange);
        font-weight: 800;
    }

/* =========================
   CONTACT
========================= */

.contact-page-v1 {
    padding-bottom: 70px;
}

.contact-cards-v1 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 30px;
}

.contact-card-v1 {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    transition: 0.25s ease;
}

    .contact-card-v1:hover {
        transform: translateY(-5px);
        border-color: rgba(255,106,0,0.18);
        box-shadow: 0 18px 34px rgba(255,106,0,0.08);
    }

.contact-card-icon-v1 {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff2e8;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.contact-card-v1 h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-card-v1 p,
.contact-card-v1 a {
    color: var(--muted);
    line-height: 1.75;
    text-decoration: none;
}

    .contact-card-v1 a:hover {
        color: var(--orange);
    }

.contact-main-v1 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-map-wrap-v1,
.contact-form-wrap-v1 {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.contact-map-v1 {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
}

    .contact-map-v1 iframe {
        width: 100%;
        height: 520px;
        display: block;
    }

.contact-form-v1 {
    width: 100%;
}

.contact-form-grid-v1 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.form-group-v1 {
    margin-bottom: 16px;
}

    .form-group-v1 label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
    }

.form-control-v1 {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    color: #222;
    background: #fff;
    outline: none;
    transition: 0.22s ease;
}

    .form-control-v1:focus {
        border-color: rgba(255,106,0,0.45);
        box-shadow: 0 0 0 4px rgba(255,106,0,0.08);
    }

textarea.form-control-v1 {
    resize: vertical;
    min-height: 140px;
}

.form-submit-v1 {
    margin-top: 10px;
}

.btn-primary-v1 {
    border: 0;
    outline: 0;
    cursor: pointer;
    background: linear-gradient(135deg, #ff7a1a, #ff6a00);
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 12px 24px rgba(255,106,0,0.22);
    transition: 0.25s ease;
}

    .btn-primary-v1:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 28px rgba(255,106,0,0.28);
    }

.footer-contact-v2 a {
    color: #fff;
    text-decoration: none;
}

    .footer-contact-v2 a:hover {
        color: #ffb27d;
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    body {
        padding-top: 108px;
    }

    .container-v1 {
        padding: 0 20px;
    }

    .show-mob {
        display: inline !important;
    }

    .hide-mob {
        display: none !important;
    }

    .top-left {
        gap: 10px;
    }

    .phone-v1 {
        font-size: 13px;
    }

    .nav-toggle-v1 {
        display: block;
        z-index: 10050;
    }

    .nav-wrapper-v1 {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(380px, 88vw);
        height: 100vh;
        background: #fff;
        z-index: 10040;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0,0,0,0.18);
        transition: right 0.3s ease;
        padding-top: 90px;
    }

        .nav-wrapper-v1.active {
            right: 0;
        }

        .nav-wrapper-v1::before {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.38);
            opacity: 0;
            pointer-events: none;
            transition: 0.3s ease;
            z-index: -1;
        }

        .nav-wrapper-v1.active::before {
            opacity: 1;
            pointer-events: auto;
        }

    .nav-list-v1 {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
        padding-bottom: 30px;
    }

        .nav-list-v1 li {
            border-bottom: 1px solid #f3f3f3;
            width: 100%;
        }

            .nav-list-v1 li a {
                padding: 18px 22px;
                width: 100%;
                justify-content: space-between;
            }

    .drop-panel-v1 {
        display: none;
        position: static;
        top: auto;
        left: auto;
        min-width: 100%;
        max-height: 55vh;
        overflow-y: auto;
        box-shadow: none;
        border-top: 0;
        border-radius: 0;
        background: #fafafa;
        opacity: 1;
        transform: none;
    }

    .has-drop-v1.is-open > .drop-panel-v1 {
        display: flex !important;
    }

    .brand-item-v1 {
        border-bottom: 1px solid #ececec;
    }

    .brand-title-v1 {
        padding: 14px 18px;
        font-size: 13px;
        background: #fafafa;
    }

    .brand-sub-v1 {
        display: none;
        position: static !important;
        background: #fff;
        border-left: 4px solid var(--orange);
        box-shadow: none !important;
    }

    .brand-item-v1.is-open > .brand-sub-v1 {
        display: block;
    }

    .brand-link-v1 {
        padding: 12px 28px;
    }

    .cat-section-v22 {
        flex-direction: column;
        height: auto;
        padding: 24px 0;
    }

    .cat-card-v22 {
        height: 420px;
        flex: none;
    }

        .cat-card-v22 img {
            object-position: center 18%;
        }

    .product-grid-v22 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding: 30px 0 50px;
    }

    .product-image-wrapper {
        height: 250px;
    }

    .product-detail-card-v1 {
        padding: 22px;
    }

    .product-detail-grid-v1 {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .product-main-visual-v1 {
        min-height: 460px;
    }

    .product-main-visual-inner-v1 {
        min-height: 410px;
    }

    .product-main-image-v1 {
        max-height: 390px;
    }

    .product-title-main-v1 {
        font-size: 30px;
    }

    .product-specs-v1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero-v1,
    .brand-hero-v1 {
        padding: 34px 26px;
        border-radius: 20px;
    }

        .page-hero-v1 h1,
        .brand-hero-v1 h1 {
            font-size: 36px;
        }

    .category-page-v1 {
        padding-top: 18px;
    }

    .category-hero-v1 {
        min-height: 240px;
        border-radius: 20px;
        margin-bottom: 22px;
    }

    .category-hero-overlay-v1 {
        min-height: 240px;
        padding: 28px 26px;
    }

        .category-hero-overlay-v1 h1 {
            font-size: 34px;
        }

        .category-hero-overlay-v1 p {
            font-size: 14px;
            line-height: 1.7;
        }

    .category-toolbar-title-v1 h2 {
        font-size: 24px;
    }

    .about-highlight-grid-v2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stats-grid-v1,
    .contact-cards-v1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-main-v1 {
        grid-template-columns: 1fr;
    }

    .contact-form-grid-v1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 104px;
    }

    .topbar-final {
        padding: 10px 0;
    }

    .header-final {
        top: 44px;
    }

    .container-v1 {
        padding: 0 14px;
    }

    .logo-v1 a {
        font-size: 24px;
    }

    .top-social-v1 a {
        margin-left: 10px;
    }

    .cat-card-v22 {
        height: 360px;
    }

        .cat-card-v22 img {
            object-position: center 14%;
        }

    .cat-overlay-v22 h2 {
        font-size: 26px;
    }

    .collection-title-v22 h2 {
        font-size: 24px;
    }

    .product-grid-v22 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .product-image-wrapper {
        height: 200px;
        padding: 14px;
    }

    .product-content {
        padding: 14px;
    }

    .product-title {
        font-size: 14px;
        min-height: 40px;
    }

    .new-price {
        font-size: 18px;
    }

    .nav-wrapper-v1 {
        width: 100%;
        max-width: 100%;
    }

    .drop-panel-v1 {
        max-height: 50vh;
    }

    .page-hero-v1,
    .brand-hero-v1 {
        padding: 24px 18px;
        border-radius: 16px;
        margin-bottom: 22px;
    }

        .page-hero-v1 h1,
        .brand-hero-v1 h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .page-hero-v1 p,
        .brand-hero-v1 p {
            font-size: 13px;
            line-height: 1.65;
        }

    .category-hero-v1 {
        min-height: 210px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .category-hero-man-v1 {
        background-position: center 20%;
    }

    .category-hero-woman-v1,
    .category-hero-child-v1 {
        background-position: center 18%;
    }

    .category-hero-overlay-v1 {
        min-height: 210px;
        padding: 22px 18px;
    }

    .category-mini-v1 {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .category-hero-overlay-v1 h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .category-hero-overlay-v1 p {
        font-size: 13px;
        line-height: 1.6;
    }

    .category-toolbar-title-v1 h2 {
        font-size: 21px;
    }

    .about-single-card-v2,
    .contact-map-wrap-v1,
    .contact-form-wrap-v1 {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .about-single-head-v2 h2,
    .section-head-v1 h2,
    .section-head-center-v1 h2 {
        font-size: 24px;
    }

    .about-single-text-v2 p {
        font-size: 14px;
        line-height: 1.85;
    }

    .stats-grid-v1,
    .contact-cards-v1 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-map-v1 iframe {
        height: 340px;
    }

    .home-pagination-v22 {
        gap: 8px;
        margin-bottom: 40px;
    }

    .home-page-btn-v22 {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
        padding: 0 12px;
    }

    .home-page-nav-v22 {
        padding: 0 14px;
    }
}

/* =========================
   FOOTER
========================= */

.footer-v1 {
    background: radial-gradient(circle at top left, rgba(255,106,0,0.12), transparent 28%), linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0d0d0d 100%);
    color: #fff;
    margin-top: 50px;
    padding-top: 48px;
    border-top: 3px solid var(--orange);
}

.footer-grid-v1 {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-col-v1 h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
}

.footer-logo-v1 a {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

.footer-logo-v1 span {
    color: var(--orange);
}

.footer-text-v1 {
    margin-top: 16px;
    color: rgba(255,255,255,0.78);
    line-height: 1.85;
    font-size: 14px;
    max-width: 420px;
}

.footer-social-v1 {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .footer-social-v1 a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.25s ease;
    }

        .footer-social-v1 a:hover {
            transform: translateY(-3px);
            background: rgba(255,255,255,0.14);
        }

.footer-links-v1,
.footer-contact-list-v1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links-v1 li,
    .footer-contact-list-v1 li {
        margin-bottom: 14px;
    }

    .footer-links-v1 a {
        color: rgba(255,255,255,0.82);
        text-decoration: none;
        transition: 0.2s ease;
    }

        .footer-links-v1 a:hover {
            color: var(--orange);
            padding-left: 4px;
        }

    .footer-contact-list-v1 li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: rgba(255,255,255,0.82);
        line-height: 1.7;
    }

    .footer-contact-list-v1 i {
        color: var(--orange);
        margin-top: 3px;
        min-width: 16px;
    }

    .footer-contact-list-v1 a {
        color: rgba(255,255,255,0.82);
        text-decoration: none;
        transition: 0.2s ease;
    }

        .footer-contact-list-v1 a:hover {
            color: var(--orange);
        }

.footer-bottom-v1 {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0 22px;
    text-align: center;
}

    .footer-bottom-v1 p {
        margin: 0;
        color: rgba(255,255,255,0.65);
        font-size: 13px;
    }

/* responsive footer */
@media (max-width: 1024px) {
    .footer-grid-v1 {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .footer-v1 {
        padding-top: 34px;
        margin-top: 36px;
    }

    .footer-grid-v1 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo-v1 a {
        font-size: 24px;
    }

    .footer-col-v1 h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .footer-text-v1 {
        font-size: 13px;
        line-height: 1.75;
    }

    .footer-bottom-v1 {
        padding: 16px 0 20px;
    }
}

/* =========================
   MOBILE HOVER / ZOOM FIX
========================= */
@media (hover: none) and (pointer: coarse) {
    .cat-card-v22:hover img,
    .product-frame:hover .product-image {
        transform: none !important;
    }

    .product-frame:hover,
    .about-highlight-box-v2:hover,
    .stat-card-v2:hover,
    .contact-card-v1:hover,
    .about-highlight-box-v2:hover,
    .product-thumb-v1:hover {
        transform: none !important;
    }

    .product-frame:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.04) !important;
        border-color: #efefef !important;
    }

        .product-frame:hover .product-hover-overlay {
            opacity: 0 !important;
        }

    .product-hover-button:hover,
    .cat-card-v22:hover .cat-btn-v22,
    .btn-primary-v1:hover,
    .page-btn-v22:hover,
    .home-page-btn-v22:hover {
        transform: none !important;
    }

    .cat-card-v22,
    .product-frame,
    .about-highlight-box-v2,
    .stat-card-v2,
    .contact-card-v1,
    .product-thumb-v1,
    .btn-primary-v1,
    .home-page-btn-v22,
    .page-btn-v22 {
        -webkit-tap-highlight-color: transparent;
    }
}