* {
    box-sizing: border-box;
}

:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-2: #f8fbff;
    --text: #132238;
    --muted: #6b7a8a;
    --line: #e7edf5;
    --primary: #0f6efd;
    --primary-dark: #0b57ca;
    --dark: #0f2740;
    --success: #1f9d55;
    --shadow-sm: 0 6px 18px rgba(15, 39, 64, 0.06);
    --shadow-md: 0 12px 32px rgba(15, 39, 64, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 39, 64, 0.12);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --container: 1280px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(15, 110, 253, 0.05), transparent 22%),
        radial-gradient(circle at top right, rgba(15, 39, 64, 0.04), transparent 20%),
        var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 18px;
}

/* TOPBAR */
.topbar {
    background: linear-gradient(90deg, #0f2740 0%, #183a5c 100%);
    color: #eef5ff;
    font-size: 13px;
    padding: 9px 0;
    letter-spacing: 0.2px;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(231, 237, 245, 0.85);
    box-shadow: 0 8px 30px rgba(15, 39, 64, 0.05);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.6px;
    white-space: nowrap;
}

.search {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.search input {
    flex: 1;
    min-width: 0;
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    outline: none;
    transition: 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(15, 39, 64, 0.02);
}

.search input:focus,
.form-control:focus {
    border-color: rgba(15, 110, 253, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 110, 253, 0.10);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 110, 253, 0.20);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 110, 253, 0.25);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: rgba(15, 110, 253, 0.35);
    color: var(--primary);
    background: #f8fbff;
}

/* MENU */
.menu {
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(231, 237, 245, 0.7);
}

.menu ul {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 12px 0;
    overflow: auto;
    scrollbar-width: none;
}

.menu ul::-webkit-scrollbar {
    display: none;
}

.menu a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--dark);
    font-weight: 600;
}

.menu a:hover {
    background: #eef5ff;
    color: var(--primary);
}

/* HERO */
.hero {
    padding: 28px 0 10px;
}

.hero .card {
    padding: 12px;
    overflow: hidden;
}

.hero .card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
}

.hero .card p {
    margin: 12px 4px 2px;
    font-weight: 700;
    color: var(--dark);
}

/* GRIDS */
.grid {
    display: grid;
    gap: 22px;
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* CARDS */
.card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(231, 237, 245, 0.85);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 110, 253, 0.18);
}

/* SECTIONS */
.section-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    margin: 34px 0 18px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

/* BADGE */
.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: #eaf2ff;
    color: var(--primary);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* TEXT */
.price {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.old {
    font-size: 14px;
    text-decoration: line-through;
    color: #93a1af;
}

.muted {
    color: var(--muted);
    font-size: 14px;
}

/* PRODUCT CARD */
.product-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.product-card > a:first-child {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid #edf2f7;
    padding: 14px;
}

.product-card > a:first-child img,
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    background: transparent;
}

.product-card strong {
    display: block;
    min-height: 48px;
    font-size: 16px;
    line-height: 1.45;
    color: var(--dark);
}

.product-card .price {
    margin-top: auto;
}

.product-card .btn,
.product-card .btn-outline {
    flex: 1;
}

/* BRAND CARDS */
.grid-4 .card strong,
.grid-3 .card strong {
    color: var(--dark);
}

/* PRODUCT PAGE */
.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 30px;
    align-items: start;
}

.thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbs img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 4px;
}

/* FORMS */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    outline: none;
    transition: 0.2s ease;
}

/* TABLE */
.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table th,
.table td {
    padding: 15px 16px;
    border-bottom: 1px solid #edf2f7;
    text-align: left;
    vertical-align: middle;
}

.table th {
    background: #f8fbff;
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.table tr:last-child td {
    border-bottom: none;
}

/* ADMIN */
.admin-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(180deg, #0f2740 0%, #173654 100%);
    color: #fff;
    padding: 24px;
    box-shadow: inset -1px 0 0 rgba(255,255,255,0.06);
}

.admin-sidebar a {
    display: block;
    padding: 12px 14px;
    margin-bottom: 6px;
    color: #dbe6f2;
    border-radius: 12px;
    font-weight: 600;
}

.admin-sidebar a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.admin-content {
    padding: 26px;
}

/* FOOTER */
.footer {
    margin-top: 60px;
    background: linear-gradient(180deg, #0f2740 0%, #122d49 100%);
    color: #dbe6f2;
    padding: 46px 0 92px;
}

.footer strong {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 22px;
    color: #fff;
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
}

/* HELPERS */
.row-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* TABLET */
@media (max-width: 1100px) {
    .grid-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-layout {
        grid-template-columns: 1fr;
    }
}

/* TABLET / SMALL LAPTOP */
@media (max-width: 992px) {
    .container {
        padding: 0 16px;
    }

    .header-main {
        flex-wrap: wrap;
        gap: 14px;
    }

    .search {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero .card img {
        height: 210px;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        padding: 18px;
    }

    .admin-content {
        padding: 20px;
    }
}

/* MOBILE */
@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 14px;
    }

    .topbar {
        font-size: 12px;
        text-align: center;
    }

    .header-main {
        padding: 12px 0;
        gap: 10px;
    }

    .logo {
        font-size: 22px;
    }

    .search {
        display: flex;
        width: 100%;
    }

    .search input {
        height: 46px;
        border-radius: 14px;
    }

    .btn,
    .btn-outline {
        min-height: 44px;
        padding: 10px 14px;
        border-radius: 12px;
        font-size: 14px;
    }

    .menu ul {
        display: none;
    }

    .grid,
    .grid-4,
    .grid-3,
    .product-layout {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 14px;
        border-radius: 18px;
    }

    .section-title {
        font-size: 22px;
        margin: 28px 0 14px;
    }

    .hero {
        padding: 18px 0 4px;
    }

    .hero .card img {
        height: 180px;
        border-radius: 14px;
    }

    .product-card > a:first-child {
        border-radius: 16px;
        padding: 12px;
    }

    .product-card strong {
        min-height: auto;
        font-size: 15px;
    }

    .price {
        font-size: 18px;
    }

    .thumbs img {
        width: 68px;
        height: 68px;
    }

    .table th,
    .table td {
        padding: 12px;
        font-size: 14px;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(12px);
        border-top: 1px solid #e7edf3;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        justify-content: space-around;
        gap: 8px;
        z-index: 1000;
        box-shadow: 0 -6px 25px rgba(15, 39, 64, 0.08);
    }

    .mobile-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-width: 64px;
        font-size: 12px;
        color: var(--muted);
        font-weight: 700;
    }

    .mobile-nav a:hover,
    .mobile-nav a:focus {
        color: var(--primary);
    }

    .footer {
        padding-bottom: 96px;
    }
}
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.footer-col strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col a {
    color: #dbe6f2;
    font-size: 14px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 13px;
    color: #9fb2c7;
}

@media(max-width:768px){
    .footer-inner {
        grid-template-columns:1fr;
        gap:20px;
    }
}
.home-hero-v2 {
    padding: 18px 0 8px;
}

.hero-slider-wrap {
    position: relative;
}

.hero-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.hero-slider::-webkit-scrollbar {
    display: none;
}

.hero-slide {
    min-width: 100%;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 39, 64, 0.14);
    scroll-snap-align: start;
    background: #0f2740;
}

.hero-slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
    background: linear-gradient(90deg, rgba(15,39,64,0.82) 0%, rgba(15,39,64,0.48) 42%, rgba(15,39,64,0.18) 100%);
    color: #fff;
}

.hero-slide-overlay h1 {
    margin: 0 0 14px;
    max-width: 720px;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -1.2px;
}

.hero-slide-overlay p {
    margin: 0 0 22px;
    max-width: 620px;
    font-size: 17px;
    color: rgba(255,255,255,0.9);
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.24);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-outline-btn {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.hero-outline-btn:hover {
    background: rgba(255,255,255,0.22);
    color: #fff;
}

.hero-slider-nav,
.scroller-nav {
    display: flex;
    gap: 10px;
}

.hero-slider-nav {
    position: absolute;
    z-index: 5;
    right: 18px;
    top: 18px;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    color: #0f2740;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(15,39,64,0.14);
}

.slider-btn-sm {
    width: 42px;
    height: 42px;
    font-size: 24px;
}

.home-section-v2 {
    margin-top: 34px;
}

.section-head-v2 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-subtitle {
    margin: 6px 0 0;
    color: #708195;
    font-size: 14px;
}

.section-link {
    color: #0f6efd;
    font-weight: 700;
    white-space: nowrap;
}

.brands-scroller {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 6px;
}

.brands-scroller::-webkit-scrollbar {
    display: none;
}

.brand-card-v2 {
    flex: 0 0 180px;
    background: #fff;
    border: 1px solid #e8eef6;
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15,39,64,0.05);
    transition: .2s ease;
}

.brand-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15,39,64,0.08);
}

.brand-image-box {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.brand-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card-v2 strong {
    display: block;
    color: #0f2740;
    line-height: 1.35;
    min-height: 40px;
}

.product-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card-v2 {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e8eef6;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15,39,64,0.05);
    transition: .22s ease;
}

.product-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(15,39,64,0.09);
}

.product-image-v2 {
    display: block;
    width: 100%;
    height: 220px;
    padding: 16px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    border-bottom: 1px solid #edf2f7;
    overflow: hidden;
}

.product-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
@media (max-width: 640px) {
    .product-image-v2 {
        height: 160px;
        padding: 10px;
    }
}

.product-body-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    flex: 1;
}

.product-title-v2 {
    display: block;
    min-height: 46px;
    color: #0f2740;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.product-code-v2 {
    min-height: 20px;
    font-size: 13px;
}

.product-price-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.product-actions-v2 {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.product-actions-v2 .btn,
.product-actions-v2 .btn-outline {
    flex: 1;
}

.product-sale-v2 {
    border-color: #d8e7ff;
}

.sale-badge-v2 {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #ff4d4f;
    color: #fff;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255,77,79,0.22);
}

@media (max-width: 1199px) {
    .hero-slide img {
        height: 390px;
    }

    .hero-slide-overlay {
        padding: 38px;
    }

    .hero-slide-overlay h1 {
        font-size: 38px;
    }

    .product-grid-v2 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-slide img {
        height: 320px;
    }

    .hero-slide-overlay {
        padding: 30px;
    }

    .hero-slide-overlay h1 {
        font-size: 30px;
    }

    .hero-slide-overlay p {
        font-size: 15px;
    }

    .product-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-card-v2 {
        flex-basis: 160px;
    }
}

@media (max-width: 640px) {
    .home-hero-v2 {
        padding-top: 10px;
    }

    .hero-slide {
        border-radius: 22px;
    }

    .hero-slide img {
        height: 280px;
    }

    .hero-slide-overlay {
        justify-content: end;
        padding: 20px;
        background: linear-gradient(180deg, rgba(15,39,64,0.12) 0%, rgba(15,39,64,0.8) 100%);
    }

    .hero-slide-overlay h1 {
        font-size: 24px;
        line-height: 1.12;
        margin-bottom: 10px;
    }

    .hero-slide-overlay p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .hero-slide-actions {
        flex-direction: column;
    }

    .hero-slide-actions .btn,
    .hero-slide-actions .btn-outline {
        width: 100%;
    }

    .hero-slider-nav {
        top: 12px;
        right: 12px;
    }

    .slider-btn,
    .slider-btn-sm {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 22px;
    }

    .section-head-v2 {
        align-items: stretch;
        flex-direction: column;
    }

    .brands-scroller {
        gap: 14px;
    }

    .brand-card-v2 {
        flex: 0 0 145px;
        padding: 14px;
    }

    .product-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .product-card-v2 {
        border-radius: 18px;
    }

    .product-image-v2 {
        padding: 10px;
    }

    .product-body-v2 {
        padding: 12px;
        gap: 8px;
    }

    .product-title-v2 {
        min-height: 42px;
        font-size: 14px;
    }

    .product-code-v2 {
        font-size: 12px;
    }

    .product-actions-v2 {
        flex-direction: column;
        gap: 8px;
    }

    .product-actions-v2 .btn,
    .product-actions-v2 .btn-outline {
        width: 100%;
        min-height: 40px;
        font-size: 13px;
    }

    .price {
        font-size: 16px;
    }

    .old {
        font-size: 12px;
    }
}
.brands-scroller {
    scroll-behavior: smooth;
}

.brand-card-v2 {
    transition: transform .2s ease, box-shadow .2s ease;
}

.brand-card-v2:hover {
    transform: scale(1.05);
}
.hero-slider-nav,
.scroller-nav {
    display: flex;
    gap: 10px;
}

@media (max-width: 640px) {
    .hero-slider-nav,
    .scroller-nav {
        display: none !important;
    }
}
.brands-scroller {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: auto;
    white-space: nowrap;
}

.brands-scroller::-webkit-scrollbar {
    display: none;
}

.brand-card-v2 {
    flex: 0 0 180px;
}

.hero-slider-nav,
.scroller-nav {
    display: flex;
    gap: 10px;
}

@media (max-width: 640px) {
    .hero-slider-nav,
    .scroller-nav {
        display: none !important;
    }
}
.header-v3 {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: linear-gradient(180deg, #0f2740 0%, #12314d 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(15,39,64,0.12);
}

.header-v3-row {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
}

.header-left,
.header-center,
.header-right {
    min-width: 0;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-v3 .logo {
    color: #fff;
    white-space: nowrap;
    font-size: 28px;
    font-weight: 800;
}

.desktop-search-wrap {
    width: 100%;
}

.search-desktop,
.search-mobile {
    display: flex;
    gap: 10px;
    width: 100%;
}

.live-search-box {
    position: relative;
    flex: 1;
    min-width: 0;
}

.search-desktop input,
.search-mobile input {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    outline: none;
}

.search-desktop input::placeholder,
.search-mobile input::placeholder {
    color: rgba(255,255,255,0.68);
}

.live-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15,39,64,0.16);
    overflow: hidden;
    display: none;
    z-index: 1300;
    max-height: 360px;
    overflow-y: auto;
}

.live-search-results.active {
    display: block;
}

.live-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid #eef2f7;
    color: #132238;
}

.live-search-item:last-child {
    border-bottom: none;
}

.live-search-item:hover {
    background: #f7fbff;
}

.live-search-thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #f3f7fb;
    flex: 0 0 46px;
    overflow: hidden;
}

.live-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.live-search-text {
    min-width: 0;
}

.live-search-title {
    display: block;
    font-weight: 700;
    color: #132238;
    line-height: 1.35;
}

.live-search-meta {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    color: #6b7a8a;
}

.cart-icon-btn {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ff4d4f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.mega-nav {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mega-nav-list {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.mega-nav-list::-webkit-scrollbar {
    display: none;
}

.mega-nav-item {
    position: relative;
    flex: 0 0 auto;
}

.mega-nav-item > a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 20px;
    color: #fff;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,0.10);
    transition: .2s ease;
}

.mega-nav-item > a:hover {
    color: #7dd3fc;
    background: rgba(255,255,255,0.03);
}

.mega-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 980px;
    background: linear-gradient(180deg, #153d55 0%, #18465f 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .22s ease;
    border-radius: 0 0 18px 18px;
}

.mega-nav-item.has-mega:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: 22px;
}

.mega-col-title {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-links a {
    color: rgba(255,255,255,0.82);
    line-height: 1.45;
}

.mega-links a:hover {
    color: #fff;
}

.mobile-drawer {
    display: none;
    background: linear-gradient(180deg, #0f2740 0%, #12324f 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-drawer.active {
    display: block;
}

.mobile-drawer-inner {
    padding-bottom: 16px;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
}

.mobile-menu-list > a,
.mobile-accordion-btn {
    width: 100%;
    text-align: left;
    padding: 14px 0;
    color: #fff;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    border-top: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
}

.mobile-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-accordion-panel {
    display: none;
    padding: 6px 0 12px;
}

.mobile-accordion-panel.active {
    display: block;
}

.mobile-parent-link,
.mobile-sub-title,
.mobile-sub-links a {
    display: block;
    color: rgba(255,255,255,0.88);
    padding: 7px 0;
}

.mobile-sub-title {
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
}

.mobile-sub-links {
    padding-left: 12px;
}

.desktop-only {
    display: block;
}

.desktop-only-btn {
    display: inline-flex;
}

@media (max-width: 1100px) {
    .header-v3-row {
        grid-template-columns: auto 1fr auto;
    }

    .desktop-search-wrap {
        display: none;
    }

    .mega-dropdown {
        min-width: 820px;
    }

    .mega-dropdown-inner {
        grid-template-columns: repeat(4, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .desktop-only,
    .desktop-only-btn {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header-v3-row {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .header-left {
        min-width: 0;
    }

    .header-v3 .logo {
        font-size: 24px;
    }
}
.brand-page-v2 {
    padding: 24px 0 10px;
}

.empty-state-v2 {
    text-align: center;
    padding: 40px 20px;
    border-radius: 24px;
}

.empty-state-v2 h3 {
    margin: 0 0 10px;
    color: #0f2740;
    font-size: 24px;
}

.empty-state-v2 p {
    margin: 0 0 18px;
}
.brand-hero-v3 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 26px;
    align-items: stretch;
    padding: 26px 0 10px;
}

.brand-hero-content,
.brand-hero-visual {
    min-width: 0;
}

.brand-hero-content {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #e7edf5;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 12px 34px rgba(15,39,64,0.06);
}

.brand-hero-content h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.08;
    color: #0f2740;
    letter-spacing: -1px;
}

.brand-hero-content p {
    margin: 0 0 20px;
    color: #6c7d8f;
    font-size: 16px;
    max-width: 680px;
}

.brand-hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.brand-stat-box {
    min-width: 140px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 8px 22px rgba(15,39,64,0.04);
}

.brand-stat-box strong {
    display: block;
    font-size: 22px;
    color: #0f2740;
    margin-bottom: 4px;
}

.brand-stat-box span {
    display: block;
    color: #758599;
    font-size: 13px;
}

.brand-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.brand-hero-visual {
    display: flex;
    align-items: stretch;
}

.brand-hero-logo-box {
    width: 100%;
    min-height: 320px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    border: 1px solid #e7edf5;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 34px rgba(15,39,64,0.06);
}

.brand-hero-logo-box img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.brand-products-section {
    margin-top: 26px;
}

.empty-state-v2 {
    text-align: center;
    padding: 44px 22px;
    border-radius: 28px;
    border: 1px solid #e7edf5;
    box-shadow: 0 12px 28px rgba(15,39,64,0.05);
}

.empty-state-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.empty-state-v2 h3 {
    margin: 0 0 10px;
    color: #0f2740;
    font-size: 24px;
}

.empty-state-v2 p {
    margin: 0 0 18px;
}

@media (max-width: 992px) {
    .brand-hero-v3 {
        grid-template-columns: 1fr;
    }

    .brand-hero-content h1 {
        font-size: 34px;
    }

    .brand-hero-logo-box {
        min-height: 240px;
    }
}

@media (max-width: 640px) {
    .brand-hero-v3 {
        gap: 16px;
        padding-top: 14px;
    }

    .brand-hero-content {
        padding: 20px;
        border-radius: 22px;
    }

    .brand-hero-content h1 {
        font-size: 28px;
    }

    .brand-hero-content p {
        font-size: 14px;
    }

    .brand-hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .brand-stat-box {
        min-width: auto;
        padding: 14px;
        border-radius: 16px;
    }

    .brand-hero-actions {
        flex-direction: column;
    }

    .brand-hero-actions .btn,
    .brand-hero-actions .btn-outline {
        width: 100%;
    }

    .brand-hero-logo-box {
        min-height: 180px;
        padding: 20px;
        border-radius: 22px;
    }

    .brand-hero-logo-box img {
        max-height: 140px;
    }

    .empty-state-v2 {
        padding: 30px 16px;
        border-radius: 20px;
    }

    .empty-state-v2 h3 {
        font-size: 20px;
    }
}
.product-page-v3 {
    padding: 24px 0 10px;
}

.product-top-v3 {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: start;
}

.product-gallery-v3,
.product-info-v3 {
    border-radius: 28px;
    overflow: hidden;
}

.product-main-image-v3 {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    border-radius: 22px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid #edf2f7;
}

.product-main-image-v3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbs-v3 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.product-thumb-btn-v3 {
    width: 82px;
    height: 82px;
    border: 1px solid #e8eef6;
    border-radius: 16px;
    background: #fff;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15,39,64,0.04);
    transition: .2s ease;
}

.product-thumb-btn-v3:hover {
    border-color: #0f6efd;
    transform: translateY(-2px);
}

.product-thumb-btn-v3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-v3 {
    padding: 24px;
}

.product-meta-top-v3 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.product-stock-v3 {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #12824c;
    font-size: 12px;
    font-weight: 700;
}

.product-title-main-v3 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.12;
    color: #0f2740;
    letter-spacing: -0.8px;
}

.product-meta-list-v3 {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: #5f7185;
}

.product-meta-list-v3 strong {
    color: #0f2740;
}

.product-price-box-v3 {
    margin-bottom: 22px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f6faff 0%, #eef5ff 100%);
    border: 1px solid #dbe7fb;
}

.product-price-main-v3 {
    font-size: 34px;
    line-height: 1;
}

.product-buy-form-v3 {
    margin-bottom: 24px;
}

.product-qty-wrap-v3 {
    margin-bottom: 18px;
}

.product-qty-wrap-v3 label {
    display: block;
    margin-bottom: 8px;
    color: #0f2740;
    font-weight: 700;
}

.qty-box-v3 {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.qty-btn-v3 {
    width: 46px;
    height: 46px;
    border: none;
    background: #f8fbff;
    color: #0f2740;
    font-size: 22px;
    cursor: pointer;
}

.qty-input-v3 {
    width: 68px;
    height: 46px;
    border: none;
    outline: none;
    text-align: center;
    font-weight: 700;
    color: #0f2740;
    background: #fff;
}

.product-action-grid-v3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.product-description-v3 {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid #edf2f7;
}

.product-description-v3 h3 {
    margin: 0 0 12px;
    color: #0f2740;
    font-size: 22px;
}

.product-description-content-v3 {
    color: #516374;
    line-height: 1.7;
}

.product-related-v3 {
    margin-top: 34px;
}

@media (max-width: 992px) {
    .product-top-v3 {
        grid-template-columns: 1fr;
    }

    .product-title-main-v3 {
        font-size: 28px;
    }

    .product-price-main-v3 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .product-page-v3 {
        padding-top: 14px;
    }

    .product-gallery-v3,
    .product-info-v3 {
        border-radius: 20px;
    }

    .product-main-image-v3 {
        padding: 14px;
        border-radius: 16px;
    }

    .product-thumbs-v3 {
        gap: 8px;
    }

    .product-thumb-btn-v3 {
        width: 62px;
        height: 62px;
        border-radius: 12px;
    }

    .product-info-v3 {
        padding: 16px;
    }

    .product-title-main-v3 {
        font-size: 24px;
        line-height: 1.15;
    }

    .product-price-box-v3 {
        padding: 14px 16px;
        border-radius: 16px;
    }

    .product-price-main-v3 {
        font-size: 24px;
    }

    .qty-btn-v3 {
        width: 42px;
        height: 42px;
    }

    .qty-input-v3 {
        width: 58px;
        height: 42px;
    }

    .product-description-v3 h3 {
        font-size: 20px;
    }
}
.search-page-v3 {
    padding: 24px 0 10px;
}

.search-hero-v3 {
    margin-bottom: 22px;
    border-radius: 28px;
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #e7edf5;
    box-shadow: 0 12px 34px rgba(15,39,64,0.05);
}

.search-layout-v3 {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.search-sidebar-v3 {
    border-radius: 24px;
    padding: 18px;
    position: sticky;
    top: 110px;
}

.search-filter-form-v3 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-filter-actions-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.search-results-v3 {
    min-width: 0;
}

@media (max-width: 992px) {
    .search-layout-v3 {
        grid-template-columns: 1fr;
    }

    .search-sidebar-v3 {
        position: static;
    }
}

@media (max-width: 640px) {
    .search-page-v3 {
        padding-top: 14px;
    }

    .search-hero-v3 {
        padding: 18px;
        border-radius: 20px;
        margin-bottom: 16px;
    }

    .search-sidebar-v3 {
        padding: 14px;
        border-radius: 20px;
    }

    .search-filter-actions-v3 {
        grid-template-columns: 1fr;
    }
}
.footer-v2 {
    margin-top: 60px;
    background: linear-gradient(180deg, #0f2740 0%, #122d49 100%);
    color: #dbe6f2;
    padding: 48px 0 92px;
}

.footer-top-v2 {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 36px;
    align-items: start;
}

.footer-brand-v2 strong {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 24px;
    color: #fff;
}

.footer-brand-v2 p {
    margin: 0 0 18px;
    max-width: 420px;
    color: #c7d5e3;
    line-height: 1.7;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}

.footer-links-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-col strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: #c7d5e3;
    line-height: 1.6;
}

.footer-col a {
    color: #dbe6f2;
    font-size: 14px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-contact-list li {
    font-size: 14px;
}

.footer-bottom-v2 {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    color: #9fb2c7;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #9fb2c7;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* MOBILE NAV PREMIUM */
.mobile-nav {
    display: none;
}

.mobile-nav a {
    text-decoration: none;
}

.mobile-nav span {
    font-size: 18px;
    line-height: 1;
}

.mobile-nav small {
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .footer-top-v2 {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-links-v2 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .footer-v2 {
        padding: 36px 0 96px;
    }

    .footer-top-v2 {
        gap: 22px;
    }

    .footer-brand-v2 strong {
        font-size: 22px;
    }

    .footer-links-v2 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(12px);
        border-top: 1px solid #e7edf3;
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
        justify-content: space-around;
        gap: 4px;
        z-index: 1400;
        box-shadow: 0 -6px 25px rgba(15,39,64,0.08);
    }

    .mobile-nav a {
        min-width: 58px;
        flex: 1;
        color: #6b7a8a;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 6px 4px;
        border-radius: 12px;
        transition: .18s ease;
    }

    .mobile-nav a:hover,
    .mobile-nav a:focus {
        color: #0f6efd;
        background: #eef5ff;
    }
}
.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}
@media (max-width: 640px) {
    .logo img {
        height: 50px;
    }
}
.auth-page-v2 {
    padding: 28px 0 14px;
    display: flex;
    justify-content: center;
}

.auth-box-v2 {
    width: 100%;
    max-width: 620px;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid #e7edf5;
    box-shadow: 0 14px 38px rgba(15,39,64,0.07);
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.auth-head-v2 {
    margin-bottom: 20px;
}

.auth-head-v2 .section-subtitle {
    margin-top: 8px;
}

.auth-alert-v2 {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff1f2;
    color: #b42318;
    border: 1px solid #fecdd3;
    font-weight: 600;
}

.auth-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auth-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.phone-input-wrap-v2 {
    display: flex;
    align-items: center;
    border: 1px solid #d7e0ea;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.phone-prefix-v2 {
    flex: 0 0 auto;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: #f8fbff;
    color: #0f2740;
    font-weight: 700;
    border-right: 1px solid #e7edf5;
}

.phone-input-v2 {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.phone-input-v2:focus {
    box-shadow: none !important;
}

.auth-submit-v2 {
    margin-top: 8px;
    min-height: 50px;
    font-size: 15px;
}

.auth-footer-v2 {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    color: #6b7a8a;
    font-size: 14px;
}

.auth-footer-v2 a {
    color: #0f6efd;
    font-weight: 700;
}

@media (max-width: 640px) {
    .auth-page-v2 {
        padding-top: 16px;
    }

    .auth-box-v2 {
        padding: 18px;
        border-radius: 20px;
    }

    .auth-grid-v2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .phone-prefix-v2 {
        height: 44px;
        padding: 0 12px;
    }
}
.account-page-v2 {
    padding: 24px 0 10px;
}

.account-hero-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #e7edf5;
    box-shadow: 0 12px 34px rgba(15,39,64,0.06);
    margin-bottom: 22px;
}

.account-avatar-v2 {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f6efd 0%, #0b57ca 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    flex: 0 0 72px;
    box-shadow: 0 12px 28px rgba(15,110,253,0.24);
}

.account-layout-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 340px;
    gap: 22px;
    align-items: start;
}

.account-main-v2,
.account-sidebar-v2 {
    min-width: 0;
}

.account-info-card-v2,
.account-admin-card-v2,
.account-quick-card-v2,
.account-logout-card-v2 {
    border-radius: 24px;
}

.account-admin-card-v2,
.account-logout-card-v2 {
    margin-top: 18px;
}

.account-card-head-v2 {
    margin-bottom: 16px;
}

.account-card-head-v2 h2 {
    margin: 0;
    color: #0f2740;
    font-size: 22px;
}

.account-info-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.account-info-item-v2 {
    padding: 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e7edf5;
}

.account-info-item-v2 span {
    display: block;
    font-size: 13px;
    color: #758599;
    margin-bottom: 6px;
}

.account-info-item-v2 strong {
    display: block;
    font-size: 16px;
    color: #0f2740;
    line-height: 1.4;
}

.account-quick-links-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-quick-links-v2 a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e7edf5;
    color: #0f2740;
    font-weight: 600;
    transition: .18s ease;
}

.account-quick-links-v2 a:hover {
    background: #eef5ff;
    color: #0f6efd;
}

.account-actions-v2 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

@media (max-width: 992px) {
    .account-layout-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .account-page-v2 {
        padding-top: 14px;
    }

    .account-hero-v2 {
        padding: 18px;
        border-radius: 20px;
    }

    .account-avatar-v2 {
        width: 58px;
        height: 58px;
        font-size: 22px;
        flex-basis: 58px;
    }

    .account-info-grid-v2 {
        grid-template-columns: 1fr;
    }

    .account-card-head-v2 h2 {
        font-size: 20px;
    }

    .account-info-item-v2 {
        border-radius: 14px;
    }
}
.cart-page-v2 {
    padding: 24px 0 10px;
}

.cart-layout-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    gap: 22px;
    align-items: start;
}

.cart-main-v2,
.cart-sidebar-v2 {
    min-width: 0;
}

.cart-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 24px;
}

.cart-item-v2 {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #edf2f7;
}

.cart-item-v2:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-image-v2 {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    border: 1px solid #edf2f7;
    padding: 14px;
    overflow: hidden;
}

.cart-item-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-content-v2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
}

.cart-item-top-v2 {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
}

.cart-item-info-v2 {
    min-width: 0;
}

.cart-item-title-v2 {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #0f2740;
    line-height: 1.35;
    margin-bottom: 6px;
}

.cart-item-price-v2 {
    text-align: right;
    white-space: nowrap;
}

.cart-item-bottom-v2 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.cart-qty-box-v2 {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.cart-line-total-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.cart-line-total-v2 strong {
    font-size: 18px;
    color: #0f2740;
}

.cart-summary-v2 {
    border-radius: 24px;
    position: sticky;
    top: 110px;
}

.cart-summary-v2 h2 {
    margin: 0 0 18px;
    color: #0f2740;
    font-size: 24px;
}

.cart-summary-row-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.cart-summary-row-v2:last-of-type {
    margin-bottom: 16px;
}

.cart-summary-actions-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
}

.cart-continue-link-v2 {
    display: inline-block;
    margin-top: 16px;
    color: #0f6efd;
    font-weight: 700;
}

@media (max-width: 992px) {
    .cart-layout-v2 {
        grid-template-columns: 1fr;
    }

    .cart-summary-v2 {
        position: static;
    }
}

@media (max-width: 640px) {
    .cart-page-v2 {
        padding-top: 14px;
    }

    .cart-item-v2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cart-item-image-v2 {
        max-width: 180px;
    }

    .cart-item-top-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-price-v2 {
        text-align: left;
    }

    .cart-item-title-v2 {
        font-size: 17px;
    }

    .cart-item-bottom-v2 {
        align-items: stretch;
        flex-direction: column;
    }

    .cart-line-total-v2 {
        align-items: flex-start;
    }

    .cart-summary-v2 h2 {
        font-size: 22px;
    }
}
.checkout-page-v2 {
    padding: 24px 0 10px;
}

.checkout-layout-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 380px;
    gap: 22px;
    align-items: start;
}

.checkout-form-side-v2,
.checkout-summary-side-v2 {
    min-width: 0;
}

.checkout-form-v2,
.checkout-summary-v2 {
    border-radius: 24px;
}

.checkout-card-head-v2 {
    margin-bottom: 18px;
}

.checkout-card-head-v2 h2 {
    margin: 0;
    font-size: 24px;
    color: #0f2740;
}

.checkout-actions-v2 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.checkout-summary-v2 {
    position: sticky;
    top: 110px;
}

.checkout-items-v2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.checkout-item-v2 {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf2f7;
}

.checkout-item-v2:last-child {
    padding-bottom: 0;
}

.checkout-item-image-v2 {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    border: 1px solid #edf2f7;
    overflow: hidden;
    padding: 8px;
}

.checkout-item-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-item-info-v2 {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-item-info-v2 strong {
    color: #0f2740;
    line-height: 1.4;
}

.checkout-item-total-v2 {
    font-weight: 700;
    color: #0f2740;
    white-space: nowrap;
}

.checkout-summary-row-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #edf2f7;
}

@media (max-width: 992px) {
    .checkout-layout-v2 {
        grid-template-columns: 1fr;
    }

    .checkout-summary-v2 {
        position: static;
    }
}

@media (max-width: 640px) {
    .checkout-page-v2 {
        padding-top: 14px;
    }

    .checkout-card-head-v2 h2 {
        font-size: 20px;
    }

    .checkout-actions-v2 {
        flex-direction: column;
    }

    .checkout-actions-v2 .btn,
    .checkout-actions-v2 .btn-outline {
        width: 100%;
    }

    .checkout-item-v2 {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .checkout-item-total-v2 {
        grid-column: 2 / 3;
        margin-top: 4px;
    }
}
.payment-status-page-v2 {
    padding: 34px 0 20px;
    display: flex;
    justify-content: center;
}

.payment-status-card-v2 {
    width: 100%;
    max-width: 760px;
    text-align: center;
    border-radius: 28px;
    padding: 34px 28px;
    border: 1px solid #e7edf5;
    box-shadow: 0 16px 42px rgba(15,39,64,0.08);
}

.payment-status-icon-v2 {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
}

.success-icon-v2 {
    background: #ecfdf3;
    color: #12824c;
    box-shadow: 0 12px 28px rgba(18,130,76,0.18);
}

.fail-icon-v2 {
    background: #fff1f2;
    color: #b42318;
    box-shadow: 0 12px 28px rgba(180,35,24,0.16);
}

.gateway-icon-v2 {
    background: #eef5ff;
    color: #0f6efd;
    box-shadow: 0 12px 28px rgba(15,110,253,0.18);
}

.payment-status-card-v2 h1 {
    margin: 0 0 12px;
    color: #0f2740;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.payment-status-text-v2 {
    margin: 0 auto 22px;
    max-width: 560px;
    color: #66788c;
    font-size: 16px;
    line-height: 1.7;
}

.payment-order-box-v2 {
    max-width: 320px;
    margin: 0 auto 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f6faff 0%, #eef5ff 100%);
    border: 1px solid #dbe7fb;
}

.payment-order-box-v2 span {
    display: block;
    font-size: 13px;
    color: #6f8094;
    margin-bottom: 6px;
}

.payment-order-box-v2 strong {
    display: block;
    font-size: 24px;
    color: #0f2740;
    line-height: 1.2;
}

.payment-actions-v2 {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.gateway-payload-box-v2 {
    margin: 24px 0;
    text-align: left;
    border: 1px solid #e7edf5;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.gateway-payload-head-v2 {
    padding: 14px 16px;
    background: #f8fbff;
    border-bottom: 1px solid #edf2f7;
    font-weight: 700;
    color: #0f2740;
}

.gateway-payload-box-v2 pre {
    margin: 0;
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #24384f;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.success-card-v2 {
    background: linear-gradient(135deg, #ffffff 0%, #f7fffb 100%);
}

.fail-card-v2 {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
}

.gateway-card-v2 {
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

@media (max-width: 640px) {
    .payment-status-page-v2 {
        padding-top: 18px;
    }

    .payment-status-card-v2 {
        padding: 24px 16px;
        border-radius: 22px;
    }

    .payment-status-icon-v2 {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .payment-status-card-v2 h1 {
        font-size: 26px;
    }

    .payment-status-text-v2 {
        font-size: 14px;
    }

    .payment-order-box-v2 strong {
        font-size: 20px;
    }

    .payment-actions-v2 {
        flex-direction: column;
    }

    .payment-actions-v2 .btn,
    .payment-actions-v2 .btn-outline {
        width: 100%;
    }

    .gateway-payload-box-v2 pre {
        font-size: 12px;
    }
}
.favorites-page-v2 {
    padding: 24px 0 10px;
}

.favorites-hero-v2 {
    margin-bottom: 22px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #e7edf5;
    box-shadow: 0 12px 34px rgba(15,39,64,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.favorites-count-v2 {
    min-width: 110px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7edf5;
    text-align: center;
    box-shadow: 0 8px 22px rgba(15,39,64,0.04);
}

.favorites-count-v2 strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #0f2740;
    margin-bottom: 6px;
}

.favorites-count-v2 span {
    display: block;
    font-size: 13px;
    color: #758599;
}

@media (max-width: 640px) {
    .favorites-page-v2 {
        padding-top: 14px;
    }

    .favorites-hero-v2 {
        padding: 18px;
        border-radius: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .favorites-count-v2 {
        width: 100%;
    }
}
.brands-page-v3 {
    padding: 24px 0 10px;
}

.brands-hero-v3 {
    margin-bottom: 22px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #e7edf5;
    box-shadow: 0 12px 34px rgba(15,39,64,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brands-count-v3 {
    min-width: 120px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7edf5;
    text-align: center;
    box-shadow: 0 8px 22px rgba(15,39,64,0.04);
}

.brands-count-v3 strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #0f2740;
    margin-bottom: 6px;
}

.brands-count-v3 span {
    display: block;
    font-size: 13px;
    color: #758599;
}

.brands-toolbar-v3 {
    margin-bottom: 22px;
    border-radius: 22px;
    padding: 16px;
}

.brands-search-box-v3 {
    max-width: 360px;
}

.brands-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.brand-card-v3 {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15,39,64,0.05);
    transition: .2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.brand-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(15,39,64,0.09);
}

.brand-card-image-v3 {
    height: 180px;
    padding: 22px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    border-bottom: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card-image-v3 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card-body-v3 {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-card-body-v3 strong {
    display: block;
    color: #0f2740;
    font-size: 17px;
    line-height: 1.4;
    min-height: 48px;
}

.brand-card-body-v3 span {
    color: #0f6efd;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .brands-grid-v3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .brands-hero-v3 {
        flex-direction: column;
        align-items: flex-start;
    }

    .brands-count-v3 {
        width: 100%;
    }

    .brands-grid-v3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .brand-card-image-v3 {
        height: 150px;
        padding: 16px;
    }
}

@media (max-width: 640px) {
    .brands-page-v3 {
        padding-top: 14px;
    }

    .brands-hero-v3 {
        padding: 18px;
        border-radius: 20px;
    }

    .brands-toolbar-v3 {
        padding: 14px;
        border-radius: 18px;
    }

    .brands-search-box-v3 {
        max-width: 100%;
    }

    .brand-card-v3 {
        border-radius: 18px;
    }

    .brand-card-image-v3 {
        height: 130px;
        padding: 14px;
    }

    .brand-card-body-v3 {
        padding: 14px;
    }

    .brand-card-body-v3 strong {
        min-height: 40px;
        font-size: 15px;
    }
}
.blog-page-v2,
.blog-detail-page-v2 {
    padding: 24px 0 10px;
}

.blog-hero-v2 {
    margin-bottom: 22px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #e7edf5;
    box-shadow: 0 12px 34px rgba(15,39,64,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.blog-count-v2 {
    min-width: 120px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7edf5;
    text-align: center;
    box-shadow: 0 8px 22px rgba(15,39,64,0.04);
}

.blog-count-v2 strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #0f2740;
    margin-bottom: 6px;
}

.blog-count-v2 span {
    display: block;
    font-size: 13px;
    color: #758599;
}

.blog-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-card-v2 {
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15,39,64,0.05);
    transition: .2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(15,39,64,0.09);
}

.blog-card-image-v2 {
    height: 220px;
    overflow: hidden;
    background: #f4f8fc;
}

.blog-card-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    flex: 1;
}

.blog-card-body-v2 strong {
    display: block;
    color: #0f2740;
    font-size: 20px;
    line-height: 1.35;
    min-height: 54px;
}

.blog-date-v2 {
    font-size: 13px;
}

.blog-card-body-v2 p {
    margin: 0;
    line-height: 1.7;
}

.blog-readmore-v2 {
    margin-top: auto;
    color: #0f6efd;
    font-weight: 700;
    font-size: 14px;
}

.blog-detail-card-v2 {
    border-radius: 28px;
    overflow: hidden;
    padding: 0;
}

.blog-detail-cover-v2 {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #f4f8fc;
}

.blog-detail-cover-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-head-v2 {
    padding: 28px 28px 0;
}

.blog-detail-head-v2 h1 {
    margin: 12px 0 10px;
    color: #0f2740;
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -1px;
}

.blog-detail-content-v2 {
    padding: 22px 28px 10px;
    color: #47596d;
    line-height: 1.85;
    font-size: 16px;
}

.blog-detail-content-v2 h2,
.blog-detail-content-v2 h3,
.blog-detail-content-v2 h4 {
    color: #0f2740;
    margin-top: 24px;
    margin-bottom: 10px;
}

.blog-detail-content-v2 p {
    margin: 0 0 16px;
}

.blog-detail-content-v2 ul,
.blog-detail-content-v2 ol {
    padding-left: 20px;
    margin: 0 0 16px;
}

.blog-detail-content-v2 img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 16px 0;
}

.blog-detail-actions-v2 {
    padding: 8px 28px 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-related-v2 {
    margin-top: 34px;
}

@media (max-width: 1100px) {
    .blog-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-hero-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-count-v2 {
        width: 100%;
    }

    .blog-grid-v2 {
        grid-template-columns: 1fr;
    }

    .blog-detail-cover-v2 {
        height: 250px;
    }

    .blog-detail-head-v2 h1 {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .blog-page-v2,
    .blog-detail-page-v2 {
        padding-top: 14px;
    }

    .blog-hero-v2 {
        padding: 18px;
        border-radius: 20px;
    }

    .blog-card-v2 {
        border-radius: 18px;
    }

    .blog-card-image-v2 {
        height: 180px;
    }

    .blog-card-body-v2 {
        padding: 14px;
    }

    .blog-card-body-v2 strong {
        font-size: 17px;
        min-height: auto;
    }

    .blog-detail-card-v2 {
        border-radius: 20px;
    }

    .blog-detail-cover-v2 {
        height: 200px;
    }

    .blog-detail-head-v2 {
        padding: 18px 18px 0;
    }

    .blog-detail-head-v2 h1 {
        font-size: 24px;
    }

    .blog-detail-content-v2 {
        padding: 16px 18px 8px;
        font-size: 15px;
    }

    .blog-detail-actions-v2 {
        padding: 8px 18px 18px;
        flex-direction: column;
    }

    .blog-detail-actions-v2 .btn,
    .blog-detail-actions-v2 .btn-outline {
        width: 100%;
    }
}
.contact-page-v2 {
    padding: 24px 0 10px;
}

.contact-hero-v2 {
    margin-bottom: 22px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #e7edf5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.contact-whatsapp-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(37,211,102,0.25);
}

.contact-layout-v2 {
    display: grid;
    grid-template-columns: 360px minmax(0,1fr);
    gap: 22px;
}

.contact-card-v2,
.contact-form-card-v2 {
    border-radius: 24px;
}

.contact-info-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 16px 0;
}

.contact-item-v2 span {
    display: block;
    font-size: 13px;
    color: #758599;
    margin-bottom: 4px;
}

.contact-item-v2 strong {
    color: #0f2740;
    font-size: 16px;
}

.contact-call-btn-v2 {
    margin-top: 14px;
    width: 100%;
}

.contact-form-card-v2 h2 {
    margin-bottom: 14px;
}

@media (max-width: 992px) {
    .contact-layout-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-page-v2 {
        padding-top: 14px;
    }

    .contact-hero-v2 {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border-radius: 20px;
    }

    .contact-whatsapp-btn-v2 {
        width: 100%;
    }
}
.category-page-v3 {
    padding: 24px 0 10px;
}

.category-hero-v3 {
    margin-bottom: 22px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #e7edf5;
    box-shadow: 0 12px 34px rgba(15,39,64,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.category-count-v3 {
    min-width: 120px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7edf5;
    text-align: center;
    box-shadow: 0 8px 22px rgba(15,39,64,0.04);
}

.category-count-v3 strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #0f2740;
    margin-bottom: 6px;
}

.category-count-v3 span {
    display: block;
    font-size: 13px;
    color: #758599;
}

.category-products-section-v3 {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .category-hero-v3 {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-count-v3 {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .category-page-v3 {
        padding-top: 14px;
    }

    .category-hero-v3 {
        padding: 18px;
        border-radius: 20px;
    }
}
.category-subcats-v3 {
    margin-bottom: 28px;
}

.category-subcat-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-subcat-card-v3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e7edf5;
    box-shadow: 0 8px 22px rgba(15,39,64,0.04);
    transition: .2s ease;
}

.category-subcat-card-v3:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15,39,64,0.08);
}

.category-subcat-card-v3 strong {
    color: #0f2740;
    font-size: 16px;
    line-height: 1.4;
}

.category-subcat-card-v3 span {
    color: #0f6efd;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .category-subcat-grid-v3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .category-subcat-grid-v3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .category-subcat-grid-v3 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .category-subcat-card-v3 {
        padding: 14px;
        border-radius: 16px;
    }
}
.checkout-user-info-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.checkout-user-box-v2 {
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid #e7edf5;
}

.checkout-user-box-v2 span {
    display: block;
    font-size: 13px;
    color: #758599;
    margin-bottom: 5px;
}

.checkout-user-box-v2 strong {
    display: block;
    font-size: 16px;
    color: #0f2740;
    line-height: 1.4;
}

.checkout-login-hint-v2 {
    margin-top: 16px;
    font-size: 14px;
    color: #6b7a8a;
}

.checkout-login-hint-v2 a {
    color: #0f6efd;
    font-weight: 700;
}

@media (max-width: 640px) {
    .checkout-user-info-v2 {
        grid-template-columns: 1fr;
    }
}