/* ===================================================================
   Ecommerce V6 — Luxury / Jewelry Theme (inspired by Nysha Jewels)
   =================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
    --v6-primary: var(--theme-primary, #c9a84c);
    --v6-accent: var(--theme-accent, #111111);
    --v6-text: #333333;
    --v6-text-light: #777777;
    --v6-bg: #ffffff;
    --v6-bg-dark: #111111;
    --v6-bg-light: #f9f7f3;
    --v6-border: #e5e5e5;
    --v6-gold: var(--theme-primary, #c9a84c);
    --v6-whatsapp: var(--theme-whatsapp, #25d366);
    --v6-text-on-primary: var(--theme-text-on-primary, #ffffff);
    --v6-font-heading: 'Playfair Display', Georgia, serif;
    --v6-font-body: 'Jost', 'Segoe UI', sans-serif;
    --v6-radius: 0;
    --v6-transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--v6-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--v6-text);
    background: var(--v6-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--v6-font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--v6-bg-dark);
    margin-top: 0;
}

a {
    color: var(--v6-primary);
    text-decoration: none;
    transition: color var(--v6-transition);
}

a:hover {
    color: var(--v6-accent);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Utility ---------- */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--v6-primary);
    margin: 12px auto 0;
}

.section-heading p {
    color: var(--v6-text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.btn-v6 {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--v6-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--v6-primary);
    background: var(--v6-primary);
    color: var(--v6-text-on-primary);
    cursor: pointer;
    transition: all var(--v6-transition);
    text-decoration: none;
    text-align: center;
    line-height: 1;
}

.btn-v6:hover {
    background: transparent;
    color: var(--v6-primary);
}

.btn-v6-outline {
    background: transparent;
    color: var(--v6-primary);
}

.btn-v6-outline:hover {
    background: var(--v6-primary);
    color: var(--v6-text-on-primary);
}

.btn-v6-white {
    border-color: #fff;
    background: #fff;
    color: var(--v6-bg-dark);
}

.btn-v6-white:hover {
    background: transparent;
    color: #fff;
}

.btn-v6-sm {
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
}

/* ---------- Top Announcement Bar ---------- */
.v6-announcement-bar {
    background: var(--v6-bg-dark);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 300;
}

.v6-announcement-bar a {
    color: var(--v6-primary);
    text-decoration: underline;
}

/* ---------- Header ---------- */
.v6-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--v6-border);
}

.v6-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.v6-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.v6-hamburger {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--v6-bg-dark);
    padding: 5px;
    display: none;
}

.v6-header-center {
    flex: 0 0 auto;
}

.v6-logo {
    display: flex;
    align-items: center;
}

.v6-logo img {
    max-height: 45px;
    width: auto;
}

.v6-logo-text {
    font-family: var(--v6-font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--v6-bg-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.v6-logo-text:hover {
    color: var(--v6-primary);
}

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

.v6-header-search {
    position: relative;
    flex: 0 1 300px;
}

.v6-header-search input {
    width: 100%;
    padding: 8px 36px 8px 14px;
    border: 1px solid var(--v6-border);
    border-radius: 25px;
    font-family: var(--v6-font-body);
    font-size: 13px;
    outline: none;
    transition: border-color var(--v6-transition);
}

.v6-header-search input:focus {
    border-color: var(--v6-primary);
}

.v6-header-search button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--v6-text-light);
    cursor: pointer;
    font-size: 14px;
    padding: 6px 10px;
}

.v6-header-icon {
    position: relative;
    font-size: 20px;
    color: var(--v6-bg-dark);
    cursor: pointer;
    transition: color var(--v6-transition);
}

.v6-header-icon:hover {
    color: var(--v6-primary);
}

.v6-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--v6-primary);
    color: var(--v6-text-on-primary);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Main Navigation ---------- */
.v6-nav {
    background: #fff;
    border-bottom: 1px solid var(--v6-border);
}

.v6-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.v6-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.v6-nav-list li {
    position: relative;
}

.v6-nav-list li a {
    display: block;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--v6-bg-dark);
    transition: color var(--v6-transition);
}

.v6-nav-list li a:hover,
.v6-nav-list li.active a {
    color: var(--v6-primary);
}

/* Dropdown */
.v6-nav-list li .v6-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--v6-border);
    z-index: 100;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.v6-nav-list li:hover .v6-dropdown {
    display: block;
}

.v6-dropdown li a {
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: none;
}

/* ---------- Mobile Nav Overlay ---------- */
.v6-mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}

.v6-mobile-nav-overlay.active {
    display: block;
}

.v6-mobile-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    overflow-y: auto;
    transition: left 0.35s ease;
    padding: 20px;
}

.v6-mobile-nav.active {
    left: 0;
}

.v6-mobile-nav-close {
    text-align: right;
    margin-bottom: 20px;
}

.v6-mobile-nav-close button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--v6-bg-dark);
}

.v6-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v6-mobile-nav-list li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--v6-bg-dark);
    border-bottom: 1px solid var(--v6-border);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.v6-mobile-nav-list li a:hover {
    color: var(--v6-primary);
}

/* ---------- Hero Slider ---------- */
.v6-hero {
    position: relative;
    overflow: hidden;
}

.v6-hero .swiper-slide {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v6-hero .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.v6-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 650px;
    padding: 0 20px;
}

.v6-hero-content h6 {
    font-family: var(--v6-font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--v6-primary);
}

.v6-hero-content h1 {
    font-family: var(--v6-font-heading);
    font-size: 52px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.v6-hero-content p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.v6-hero .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.v6-hero .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--v6-primary);
}

.v6-hero .swiper-button-next,
.v6-hero .swiper-button-prev {
    color: #fff;
    opacity: 0.7;
    transition: opacity var(--v6-transition);
}

.v6-hero .swiper-button-next:hover,
.v6-hero .swiper-button-prev:hover {
    opacity: 1;
}

/* ---------- Promo Banner Grid ---------- */
.v6-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v6-promo-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--v6-radius);
    aspect-ratio: 1.4;
    background: var(--v6-bg-light);
}

.v6-promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v6-promo-card:hover img {
    transform: scale(1.05);
}

.v6-promo-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
}

.v6-promo-card-overlay h3 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.v6-promo-card-overlay .btn-v6-sm {
    align-self: flex-start;
}

/* ---------- Categories ---------- */
.v6-categories {
    background: var(--v6-bg-light);
}

.v6-categories-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.v6-category-item {
    text-align: center;
    text-decoration: none;
    color: var(--v6-text);
    transition: transform var(--v6-transition);
}

.v6-category-item:hover {
    transform: translateY(-5px);
    color: var(--v6-primary);
}

.v6-category-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--v6-border);
    margin: 0 auto 12px;
    transition: border-color var(--v6-transition);
}

.v6-category-item:hover .v6-category-img {
    border-color: var(--v6-primary);
}

.v6-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v6-category-img .v6-cat-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v6-bg);
    font-size: 32px;
    color: var(--v6-primary);
}

.v6-category-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- Product Grid ---------- */
.v6-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.v6-product-card {
    position: relative;
    overflow: hidden;
}

.v6-product-img {
    position: relative;
    overflow: hidden;
    background: var(--v6-bg-light);
    aspect-ratio: 0.85;
}

.v6-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.v6-product-card:hover .v6-product-img img {
    transform: scale(1.06);
}

.v6-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--v6-primary);
    color: var(--v6-text-on-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
}

.v6-product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.v6-product-card:hover .v6-product-actions {
    transform: translateY(0);
}

.v6-product-actions .v6-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--v6-primary);
    background: var(--v6-primary);
    color: var(--v6-text-on-primary);
    cursor: pointer;
    transition: all var(--v6-transition);
    text-decoration: none;
    font-family: var(--v6-font-body);
}

.v6-product-actions .v6-action-btn:hover {
    background: var(--v6-accent);
    border-color: var(--v6-accent);
}

.v6-product-actions .v6-action-btn--outline {
    background: transparent;
    color: var(--v6-primary);
}

.v6-product-actions .v6-action-btn--outline:hover {
    background: var(--v6-primary);
    color: var(--v6-text-on-primary);
}

.v6-product-actions .v6-action-btn--wa {
    background: #fff;
    border-color: var(--v6-whatsapp);
    color: #111;
    gap: 6px;
}

.v6-product-actions .v6-action-btn--wa img {
    width: 16px;
    height: 16px;
}

.v6-product-info {
    padding: 15px 0;
    text-align: center;
}

.v6-product-category {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--v6-primary);
    margin-bottom: 6px;
}

.v6-product-name {
    font-family: var(--v6-font-heading);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.v6-product-name a {
    color: var(--v6-bg-dark);
    text-decoration: none;
}

.v6-product-name a:hover {
    color: var(--v6-primary);
}

.v6-product-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--v6-bg-dark);
}

.v6-product-price .v6-old-price {
    text-decoration: line-through;
    color: var(--v6-text-light);
    font-weight: 400;
    margin-right: 6px;
}

/* ---------- Featured Product Tabs ---------- */
.v6-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--v6-border);
}

.v6-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 28px;
    font-family: var(--v6-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--v6-text-light);
    cursor: pointer;
    transition: all var(--v6-transition);
    margin-bottom: -1px;
}

.v6-tab-btn.active,
.v6-tab-btn:hover {
    color: var(--v6-primary);
    border-bottom-color: var(--v6-primary);
}

/* ---------- Feature Banners (2-col) ---------- */
.v6-feature-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.v6-feature-banner {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.65;
    background: var(--v6-bg-light);
}

.v6-feature-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v6-feature-banner:hover img {
    transform: scale(1.05);
}

.v6-feature-banner-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.55), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: #fff;
}

.v6-feature-banner-content h3 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.v6-feature-banner-content p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ---------- Instagram Section ---------- */
.v6-instagram {
    background: var(--v6-bg-light);
}

.v6-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.v6-instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.v6-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.v6-instagram-item:hover img {
    transform: scale(1.08);
}

.v6-instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--v6-transition);
}

.v6-instagram-item:hover::after {
    opacity: 1;
}

/* ---------- Footer ---------- */
.v6-footer {
    background: var(--v6-bg-dark);
    color: #aaa;
    padding: 60px 0 0;
}

.v6-footer h5 {
    font-family: var(--v6-font-heading);
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.v6-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.v6-footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.v6-footer-contact-line {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.v6-footer-contact-line i {
    color: var(--v6-primary);
    width: 16px;
    text-align: center;
    margin-top: 4px;
}

.v6-footer-contact-line a {
    color: #ccc;
}

.v6-footer-contact-line a:hover {
    color: var(--v6-primary);
}

.v6-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v6-footer-links li {
    margin-bottom: 8px;
}

.v6-footer-links li a {
    color: #aaa;
    font-size: 14px;
    transition: color var(--v6-transition);
}

.v6-footer-links li a:hover {
    color: var(--v6-primary);
}

.v6-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.v6-footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    color: #aaa;
    font-size: 14px;
    transition: all var(--v6-transition);
}

.v6-footer-social a:hover {
    background: var(--v6-primary);
    border-color: var(--v6-primary);
    color: var(--v6-text-on-primary);
}

.v6-footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #777;
}

.v6-footer-bottom a {
    color: var(--v6-primary);
}

/* ---------- Breadcrumb ---------- */
.v6-breadcrumb-area {
    background: var(--v6-bg-light);
    padding: 35px 0;
    border-bottom: 1px solid var(--v6-border);
}

.v6-breadcrumb-area h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.v6-breadcrumb-area .v6-breadcrumb {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--v6-text-light);
}

.v6-breadcrumb a {
    color: var(--v6-text-light);
}

.v6-breadcrumb a:hover {
    color: var(--v6-primary);
}

.v6-breadcrumb .separator {
    color: var(--v6-border);
}

/* ---------- Products Page Filters ---------- */
.v6-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid var(--v6-border);
}

.v6-filter-bar .v6-cat-pill {
    display: inline-block;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--v6-border);
    color: var(--v6-text);
    text-decoration: none;
    transition: all var(--v6-transition);
}

.v6-filter-bar .v6-cat-pill.active,
.v6-filter-bar .v6-cat-pill:hover {
    background: var(--v6-primary);
    border-color: var(--v6-primary);
    color: var(--v6-text-on-primary);
}

/* ---------- Single Product Page ---------- */
.v6-single-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.v6-product-gallery {
    position: relative;
}

.v6-product-gallery .v6-main-image {
    aspect-ratio: 0.85;
    overflow: hidden;
    background: var(--v6-bg-light);
    margin-bottom: 15px;
}

.v6-product-gallery .v6-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.v6-product-thumbs .v6-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border: 2px solid var(--v6-border);
    cursor: pointer;
    transition: border-color var(--v6-transition);
}

.v6-product-thumbs .v6-thumb.active,
.v6-product-thumbs .v6-thumb:hover {
    border-color: var(--v6-primary);
}

.v6-product-thumbs .v6-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v6-product-detail h1 {
    font-size: 30px;
    margin-bottom: 12px;
}

.v6-product-detail .v6-detail-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--v6-primary);
    margin-bottom: 20px;
}

.v6-product-detail .v6-detail-short-desc {
    font-size: 15px;
    color: var(--v6-text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.v6-product-detail .v6-detail-desc {
    margin-bottom: 25px;
    line-height: 1.8;
}

.v6-qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 25px;
}

.v6-qty-selector button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--v6-border);
    background: var(--v6-bg-light);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v6-qty-selector input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--v6-border);
    border-left: 0;
    border-right: 0;
    font-family: var(--v6-font-body);
    font-size: 14px;
}

.v6-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.v6-detail-meta {
    border-top: 1px solid var(--v6-border);
    padding-top: 20px;
    font-size: 14px;
    color: var(--v6-text-light);
}

.v6-detail-meta span {
    display: block;
    margin-bottom: 6px;
}

.v6-detail-meta a {
    color: var(--v6-primary);
}

/* ---------- Contact Page ---------- */
.v6-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.v6-contact-info h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.v6-contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.v6-contact-form h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.v6-form-group {
    margin-bottom: 18px;
}

.v6-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--v6-bg-dark);
}

.v6-form-group input,
.v6-form-group textarea,
.v6-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--v6-border);
    font-family: var(--v6-font-body);
    font-size: 14px;
    outline: none;
    transition: border-color var(--v6-transition);
}

.v6-form-group input:focus,
.v6-form-group textarea:focus,
.v6-form-group select:focus {
    border-color: var(--v6-primary);
}

.v6-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ---------- Search Page Sidebar ---------- */
.v6-search-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

.v6-search-sidebar {
    padding: 20px;
    background: var(--v6-bg-light);
    border: 1px solid var(--v6-border);
    align-self: start;
}

.v6-search-sidebar h5 {
    font-size: 16px;
    margin-bottom: 15px;
}

/* ---------- WhatsApp Button ---------- */
.v6-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: var(--v6-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform var(--v6-transition);
}

.v6-wa-float:hover {
    transform: scale(1.1);
}

.v6-wa-float img {
    width: 28px;
    height: 28px;
}

/* ---------- Alert ---------- */
.v6-alert {
    padding: 14px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid;
}

.v6-alert-info {
    background: #e8f4fd;
    border-color: #b6d4fe;
    color: #0a3a6b;
}

.v6-alert-success {
    background: #e8f8e8;
    border-color: #b3e6b3;
    color: #1a5c1a;
}

.v6-alert-danger {
    background: #fde8e8;
    border-color: #f5b3b3;
    color: #6b1a1a;
}

/* ---------- Pagination ---------- */
.v6-pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.v6-pagination-info {
    font-size: 13px;
    color: var(--v6-text-light, #888);
    margin: 0;
}

.v6-pagination-info strong {
    color: var(--v6-text);
    font-weight: 600;
}

.v6-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.v6-pagination a,
.v6-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--v6-border);
    font-size: 13px;
    color: var(--v6-text);
    text-decoration: none;
    transition: all var(--v6-transition);
    border-radius: 4px;
}

.v6-pagination a:hover,
.v6-pagination span.active {
    background: var(--v6-primary);
    border-color: var(--v6-primary);
    color: var(--v6-text-on-primary);
}

.v6-pagination span.disabled {
    color: var(--v6-text-light, #ccc);
    cursor: not-allowed;
    opacity: 0.5;
}

.v6-pagination span.ellipsis {
    border: none;
    min-width: auto;
    padding: 0 4px;
    cursor: default;
}

/* ---------- Cart Page ---------- */
.v6-empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.v6-empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v6-bg-light);
    border-radius: 50%;
    font-size: 48px;
    color: var(--v6-text-light);
}

.v6-empty-cart h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.v6-empty-cart p {
    color: var(--v6-text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.v6-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.v6-cart-table-wrap {
    overflow-x: auto;
}

.v6-cart-table {
    width: 100%;
}

.v6-cart-table th {
    white-space: nowrap;
}

.v6-cart-img-cell {
    width: 80px;
    padding-right: 0 !important;
}

.v6-cart-thumb {
    display: block;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 1px solid var(--v6-border);
}

.v6-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v6-cart-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--v6-bg-light);
    color: var(--v6-text-light);
    font-size: 24px;
}

.v6-cart-product-name {
    font-family: var(--v6-font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--v6-bg-dark);
    transition: color var(--v6-transition);
}

a.v6-cart-product-name:hover {
    color: var(--v6-primary);
}

.v6-cart-price-cell,
.v6-cart-total-cell {
    font-weight: 500;
    white-space: nowrap;
}

.v6-cart-total-cell {
    color: var(--v6-bg-dark);
    font-weight: 600;
}

.v6-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--v6-border);
}

.v6-qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v6-bg-light);
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--v6-text);
    transition: all var(--v6-transition);
    font-family: var(--v6-font-body);
}

.v6-qty-btn:hover {
    background: var(--v6-primary);
    color: var(--v6-text-on-primary);
}

.v6-qty-input {
    width: 48px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--v6-border);
    border-right: 1px solid var(--v6-border);
    font-family: var(--v6-font-body);
    font-size: 14px;
    outline: none;
    -moz-appearance: textfield;
}

.v6-qty-input::-webkit-outer-spin-button,
.v6-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.v6-cart-remove {
    background: none;
    border: 1px solid var(--v6-border);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--v6-text-light);
    transition: all var(--v6-transition);
    font-size: 14px;
}

.v6-cart-remove:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.v6-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    gap: 16px;
}

.v6-cart-clear-form {
    margin-top: 12px;
}

.v6-cart-clear-btn {
    background: none;
    border: none;
    color: var(--v6-text-light);
    font-family: var(--v6-font-body);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color var(--v6-transition);
}

.v6-cart-clear-btn:hover {
    color: #dc3545;
}

/* Cart Summary */
.v6-cart-summary .v6-card {
    position: sticky;
    top: 20px;
}

.v6-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
}

.v6-summary-row span {
    color: var(--v6-text-light);
}

.v6-summary-divider {
    height: 1px;
    background: var(--v6-border);
    margin: 8px 0;
}

.v6-summary-total {
    font-size: 18px;
}

.v6-summary-total span,
.v6-summary-total strong {
    color: var(--v6-bg-dark);
    font-weight: 600;
}

.v6-checkout-btn {
    display: block;
    width: 100%;
    margin-top: 24px;
    text-align: center;
}

/* Coupon */
.v6-coupon-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--v6-border);
}

.v6-coupon-input {
    display: flex;
    gap: 8px;
}

.v6-coupon-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--v6-border);
    font-family: var(--v6-font-body);
    font-size: 14px;
    outline: none;
    transition: border-color var(--v6-transition);
}

.v6-coupon-input input:focus {
    border-color: var(--v6-primary);
}

.v6-coupon-message {
    font-size: 13px;
    margin-top: 6px;
}

.v6-coupon-error {
    color: #dc3545;
}

.v6-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #e8f8e8;
    border: 1px solid #b3e6b3;
}

.v6-coupon-badge {
    color: #1a5c1a;
    font-size: 14px;
}

.v6-coupon-badge i {
    margin-right: 4px;
}

.v6-coupon-remove {
    background: none;
    border: none;
    color: #dc3545;
    font-family: var(--v6-font-body);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

/* ---------- Card (for account/shared pages) ---------- */
.v6-card {
    background: #fff;
    border: 1px solid var(--v6-border);
    padding: 30px;
    margin-bottom: 20px;
}

.v6-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.v6-account-shell {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.v6-auth-shell {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: stretch;
}

.v6-auth-aside {
    padding: 42px 34px;
    background: linear-gradient(155deg, #fff8f6 0%, #f7ede9 100%);
    border: 1px solid rgba(194, 82, 58, 0.12);
}

.v6-auth-eyebrow,
.v6-auth-card-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--v6-primary);
}

.v6-auth-aside h2,
.v6-auth-card h3 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.v6-auth-aside p,
.v6-auth-card-head p,
.v6-auth-benefits span,
.v6-auth-footer-links a,
.v6-auth-status {
    color: var(--v6-text-light);
}

.v6-auth-benefits {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.v6-auth-benefits li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
}

.v6-auth-benefit-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(194, 82, 58, 0.12);
    color: var(--v6-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.v6-auth-benefits strong {
    display: block;
    margin-bottom: 4px;
    color: var(--v6-bg-dark);
}

.v6-auth-card {
    padding: 36px;
    display: grid;
    align-content: start;
    gap: 22px;
}

.v6-auth-card-head h3 {
    margin-bottom: 10px;
}

.v6-auth-form {
    display: grid;
    gap: 16px;
}

.v6-auth-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.v6-auth-submit-btn {
    width: 100%;
}

.v6-auth-google-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--v6-border);
    background: #fff;
    color: var(--v6-bg-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--v6-transition);
}

.v6-auth-google-link:hover {
    border-color: var(--v6-primary);
    transform: translateY(-1px);
}

.v6-auth-error {
    margin: 6px 0 0;
    color: #b42318;
    font-size: 12px;
}

.v6-auth-status {
    min-height: 18px;
    margin: 0;
    font-size: 13px;
}

.v6-auth-footer-links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
}

.v6-auth-footer-links a {
    text-decoration: none;
}

.v6-auth-footer-links a:hover {
    color: var(--v6-primary);
}

.v6-checkout-auth-shell {
    margin-bottom: 32px;
}

.v6-checkout-auth-card {
    justify-content: center;
}

.v6-checkout-auth-actions {
    display: grid;
    gap: 14px;
}

.v6-checkout-auth-link {
    font-size: 13px;
    color: var(--v6-text-light);
    text-decoration: none;
}

.v6-checkout-auth-link:hover {
    color: var(--v6-primary);
}

.v6-checkout-layout {
    align-items: start;
}

.v6-checkout-main {
    min-width: 0;
}

.v6-checkout-summary-card {
    display: grid;
    gap: 14px;
}

.v6-checkout-items {
    display: grid;
    gap: 14px;
}

.v6-checkout-item-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--v6-border);
}

.v6-checkout-item-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.v6-checkout-item-row strong {
    color: var(--v6-bg-dark);
}

.v6-checkout-item-row span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--v6-text-light);
}

.v6-checkout-back-link {
    width: 100%;
    margin-top: 8px;
}

.v6-account-sidebar {
    position: sticky;
    top: 24px;
    background: linear-gradient(180deg, #fff 0%, #fdf7f5 100%);
}

.v6-account-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--v6-primary);
    color: var(--v6-text-on-primary);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.v6-account-sidebar h2 {
    font-size: 24px;
    margin-bottom: 6px;
}

.v6-account-sidebar > p {
    margin-bottom: 22px;
    color: var(--v6-text-light);
    word-break: break-word;
}

.v6-account-meta-list {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.v6-account-meta-item {
    padding: 14px 16px;
    border: 1px solid var(--v6-border);
    background: rgba(255, 255, 255, 0.8);
}

.v6-account-meta-item span,
.v6-account-detail-item span,
.v6-account-shortcut span,
.v6-account-eyebrow {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--v6-text-light);
}

.v6-account-meta-item strong,
.v6-account-detail-item strong,
.v6-account-shortcut strong {
    display: block;
    margin-top: 6px;
    color: var(--v6-bg-dark);
    font-size: 15px;
}

.v6-account-nav {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.v6-account-nav a,
.v6-account-action-link,
.v6-account-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--v6-border);
    background: #fff;
    color: var(--v6-bg-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--v6-transition);
}

.v6-account-nav a.active,
.v6-account-nav a:hover,
.v6-account-action-link:hover {
    border-color: var(--v6-primary);
    background: var(--v6-primary);
    color: var(--v6-text-on-primary);
}

.v6-account-logout {
    width: 100%;
    cursor: pointer;
}

.v6-account-logout:hover {
    border-color: #c43f3f;
    background: #c43f3f;
    color: #fff;
}

.v6-account-main {
    display: grid;
    gap: 24px;
}

.v6-account-hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, #fff8f6 0%, #fff 45%, #f9f1ee 100%);
}

.v6-account-hero-card h3 {
    margin-bottom: 12px;
}

.v6-account-hero-card p {
    margin-bottom: 0;
    max-width: 560px;
    color: var(--v6-text-light);
}

.v6-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.v6-account-action-link {
    min-width: 170px;
}

.v6-account-action-link--secondary {
    background: transparent;
}

.v6-account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.v6-account-grid--wide {
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1fr);
}

.v6-account-stack {
    display: grid;
    gap: 24px;
}

.v6-account-details-grid,
.v6-account-shortcuts {
    display: grid;
    gap: 14px;
}

.v6-account-detail-item,
.v6-account-shortcut {
    padding: 18px;
    border: 1px solid var(--v6-border);
    background: var(--v6-bg-light);
}

.v6-account-shortcut {
    text-decoration: none;
    transition: all var(--v6-transition);
}

.v6-account-shortcut:hover {
    border-color: var(--v6-primary);
    transform: translateY(-2px);
}

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

.v6-account-section-head p {
    margin: 8px 0 0;
    color: var(--v6-text-light);
}

.v6-order-table-wrap {
    overflow-x: auto;
}

.v6-account-table th,
.v6-account-table td {
    vertical-align: middle;
}

.v6-account-table-action {
    text-align: right;
}

.v6-order-number {
    font-family: monospace;
    font-size: 14px;
    font-weight: 700;
}

.v6-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(194, 82, 58, 0.12);
    color: var(--v6-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.v6-status-badge-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    flex: 0 0 auto;
}

.v6-status-badge--muted {
    background: rgba(17, 24, 39, 0.06);
    color: var(--v6-bg-dark);
}

.v6-status-badge--warning {
    background: rgba(217, 119, 6, 0.12);
    color: #b45309;
}

.v6-status-badge--info {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

.v6-status-badge--accent {
    background: rgba(124, 58, 237, 0.12);
    color: #6d28d9;
}

.v6-status-badge--success {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
}

.v6-status-badge--danger {
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
}

.v6-account-table-link,
.v6-account-ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--v6-border);
    background: transparent;
    color: var(--v6-bg-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--v6-transition);
}

.v6-account-table-link:hover,
.v6-account-ghost-btn:hover {
    border-color: var(--v6-primary);
    color: var(--v6-primary);
}

.v6-account-ghost-btn--danger:hover {
    border-color: #c43f3f;
    color: #c43f3f;
}

.v6-summary-list {
    display: grid;
    gap: 12px;
}

.v6-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}

.v6-summary-row span {
    color: var(--v6-text-light);
}

.v6-summary-row strong {
    color: var(--v6-bg-dark);
    text-align: right;
}

.v6-summary-row--total {
    font-size: 16px;
}

.v6-summary-divider {
    height: 1px;
    margin: 20px 0;
    background: var(--v6-border);
}

.v6-address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.v6-address-card {
    border: 1px solid var(--v6-border);
    background: var(--v6-bg-light);
    padding: 20px;
}

.v6-address-card-title {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
}

.v6-address-card-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(194, 82, 58, 0.12);
    color: var(--v6-primary);
}

.v6-address-card-icon svg {
    width: 18px;
    height: 18px;
}

.v6-address-card-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    margin-bottom: 14px;
}

.v6-address-card-head h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.v6-address-card-head p {
    margin: 0;
    color: var(--v6-text-light);
}

.v6-address-lines {
    display: grid;
    gap: 6px;
    color: var(--v6-bg-dark);
}

.v6-address-line {
    display: inline-flex;
    align-items: start;
    gap: 10px;
}

.v6-address-line--lead {
    align-items: center;
}

.v6-inline-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    color: var(--v6-primary);
}

.v6-inline-icon::before,
.v6-inline-icon::after {
    content: '';
    position: absolute;
    box-sizing: border-box;
}

.v6-inline-icon--eye::before {
    inset: 3px 1px;
    border: 1.5px solid currentColor;
    border-radius: 50% / 60%;
}

.v6-inline-icon--eye::after {
    width: 4px;
    height: 4px;
    top: 6px;
    left: 6px;
    border-radius: 50%;
    background: currentColor;
}

.v6-inline-icon--phone::before {
    width: 8px;
    height: 12px;
    top: 2px;
    left: 4px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
}

.v6-inline-icon--phone::after {
    width: 2px;
    height: 2px;
    bottom: 3px;
    left: 7px;
    border-radius: 50%;
    background: currentColor;
}

.v6-inline-icon--map::before {
    width: 12px;
    height: 12px;
    top: 1px;
    left: 2px;
    border: 1.5px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.v6-inline-icon--map::after,
.v6-inline-icon--pin::after {
    width: 3px;
    height: 3px;
    top: 6px;
    left: 6px;
    border-radius: 50%;
    background: currentColor;
}

.v6-inline-icon--pin::before {
    width: 12px;
    height: 12px;
    top: 1px;
    left: 2px;
    border: 1.5px solid currentColor;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.v6-inline-icon--edit::before {
    width: 10px;
    height: 3px;
    top: 9px;
    left: 2px;
    background: currentColor;
    transform: rotate(-35deg);
    border-radius: 2px;
}

.v6-inline-icon--edit::after {
    width: 4px;
    height: 4px;
    top: 4px;
    left: 10px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(10deg);
}

.v6-inline-icon--star::before {
    inset: 1px;
    background: currentColor;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 93%, 50% 72%, 21% 93%, 32% 57%, 2% 35%, 39% 35%);
}

.v6-inline-icon--delete::before {
    width: 10px;
    height: 10px;
    top: 5px;
    left: 3px;
    border: 1.5px solid currentColor;
    border-top: none;
    border-radius: 1px;
}

.v6-inline-icon--delete::after {
    width: 12px;
    height: 2px;
    top: 3px;
    left: 2px;
    background: currentColor;
    box-shadow: 3px -3px 0 -1px currentColor;
}

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

.v6-account-form-stack {
    display: grid;
    gap: 18px;
}

.v6-account-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.v6-account-form-grid-full {
    grid-column: 1 / -1;
}

.v6-account-checkbox-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--v6-bg-dark);
    font-size: 14px;
}

.v6-account-checkbox-row input {
    width: 16px;
    height: 16px;
}

.v6-account-error-list {
    margin: 0;
    padding-left: 18px;
}

.v6-account-error-list li + li {
    margin-top: 6px;
}

/* ---------- Table ---------- */
.v6-table {
    width: 100%;
    border-collapse: collapse;
}

.v6-table th,
.v6-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--v6-border);
    font-size: 14px;
    text-align: left;
}

.v6-table th {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--v6-bg-light);
    color: var(--v6-bg-dark);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .v6-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .v6-account-shell,
    .v6-account-grid,
    .v6-account-grid--wide,
    .v6-address-grid,
    .v6-account-form-grid,
    .v6-auth-shell,
    .v6-auth-form-grid {
        grid-template-columns: 1fr;
    }

    .v6-account-sidebar {
        position: static;
    }

    .v6-account-hero-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .v6-auth-aside,
    .v6-auth-card {
        padding: 28px 22px;
    }

    .v6-auth-aside h2,
    .v6-auth-card h3 {
        font-size: 28px;
    }

    .v6-checkout-item-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .v6-account-table-action {
        text-align: left;
    }

    .v6-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v6-single-product {
        gap: 30px;
    }

    .v6-feature-banners {
        gap: 15px;
    }

    .v6-cart-layout {
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .v6-hamburger {
        display: block;
    }

    .v6-nav {
        display: none;
    }

    .v6-header-search {
        display: none;
    }

    .v6-hero .swiper-slide {
        height: 400px;
    }

    .v6-hero-content h1 {
        font-size: 32px;
    }

    .v6-promo-grid {
        grid-template-columns: 1fr;
    }

    .v6-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .v6-contact-grid {
        grid-template-columns: 1fr;
    }

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

    .v6-account-actions {
        width: 100%;
        flex-direction: column;
    }

    .v6-account-action-link {
        width: 100%;
    }

    .v6-address-card-head,
    .v6-summary-row,
    .v6-account-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .v6-cart-summary .v6-card {
        position: static;
    }

    .v6-cart-img-cell {
        width: 60px;
    }

    .v6-cart-thumb {
        width: 56px;
        height: 56px;
    }

    .v6-feature-banners {
        grid-template-columns: 1fr;
    }

    .v6-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .v6-categories-grid {
        gap: 20px;
    }

    .v6-category-img {
        width: 80px;
        height: 80px;
    }

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

    .section-heading h2 {
        font-size: 26px;
    }

    .section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .v6-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .v6-product-info {
        padding: 10px 0;
    }

    .v6-product-name {
        font-size: 14px;
    }

    .v6-hero .swiper-slide {
        height: 320px;
    }

    .v6-hero-content h1 {
        font-size: 26px;
    }

    .v6-logo-text {
        font-size: 20px;
    }
}

/* ---------- Swiper overrides ---------- */
.swiper {
    width: 100%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px;
}
