/* ==========================================================================
   Netyex Theme — WooCommerce Styles (matching the design 100%)
   ========================================================================== */

/* ---------- Shop wrapper ---------- */
.netyex-shop-wrapper { padding: 0; }
.shop-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .shop-layout.has-sidebar { grid-template-columns: 1fr 280px; } }
.shop-main { min-width: 0; }

/* ---------- Shop breadcrumb hero ---------- */
.shop-breadcrumb-hero {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 200px;
        max-height: 250px;
        height: 250px;
        overflow: hidden;
        background: #0f172a;
}
@media (max-width: 640px) { .shop-breadcrumb-hero { height: 200px; min-height: 180px; } }
.shop-breadcrumb-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
}
.shop-breadcrumb-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg, rgba(15, 23, 42, 0.82) 0%, rgba(37, 99, 235, 0.55) 55%, rgba(124, 58, 237, 0.35) 100%);
}
.shop-breadcrumb-content {
        position: relative;
        z-index: 2;
        padding-top: 2rem;
        padding-bottom: 2rem;
        text-align: center;
}
.shop-breadcrumb-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 1rem;
        color: rgba(255,255,255,0.75);
        margin-bottom: 0.75rem;
}
.shop-breadcrumb-nav a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.15s; }
.shop-breadcrumb-nav a:hover { color: #ffffff; text-decoration: underline; }
.shop-breadcrumb-nav .sep { color: rgba(255,255,255,0.5); }
.shop-breadcrumb-nav .current { color: #ffffff; font-weight: 600; }
.shop-title { font-size: 2rem; font-weight: 700; color: #ffffff; margin: 0; line-height: 1.2; }
@media (min-width: 1024px) { .shop-title { font-size: 2.25rem; } }
.shop-breadcrumb-content .shop-title.heading-colorful,
.shop-breadcrumb-content .heading-colorful {
        background: none;
        -webkit-text-fill-color: #ffffff;
        background-clip: unset;
        -webkit-background-clip: unset;
        color: #ffffff;
}
.shop-desc { color: rgba(255,255,255,0.85); margin: 0.5rem auto 0; max-width: 42rem; font-size: 0.95rem; }

/* ---------- Breadcrumb (shop) ---------- */
.netyex-breadcrumb { background: #ffffff; border-bottom: 1px solid #f1f5f9; padding: 0.75rem 0; }
.breadcrumb-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 0.375rem; font-size: 0.8125rem; color: #64748b; }
.breadcrumb-inner a { color: #64748b; text-decoration: none; }
.breadcrumb-inner a:hover { color: #2563eb; }
.breadcrumb-inner .sep { color: #cbd5e1; }
.breadcrumb-inner span:last-child { color: #0f172a; font-weight: 600; }

/* ---------- Category circles row ---------- */
.shop-categories-row { border-bottom: 1px solid #f1f5f9; padding: 1.5rem 0; }
.shop-categories-row .category-circles { justify-content: flex-start; gap: 1.5rem; }
.category-circles { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; }
.category-circles::-webkit-scrollbar { display: none; }
.category-circles .category-item { flex-shrink: 0; }

   PRODUCT CARD — Image Carousel on Hover + Attributes + No Rating
   ========================================================================== */

/* Image carousel container */
.product-image-carousel {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
}
.product-image-carousel .carousel-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.3s ease;
}
.product-image-carousel .carousel-img.active { opacity: 1; position: relative; }
.product-image-carousel .carousel-img:first-child { position: relative; opacity: 1; }

/* On hover, make all images absolute and cycle */
.product-card:hover .product-image-carousel .carousel-img { position: absolute; }
.product-card:hover .product-image-carousel .carousel-img.active { opacity: 1; }

/* Carousel dots indicator */
.carousel-dots {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 5px;
        z-index: 3;
        opacity: 0;
        transition: opacity 0.2s;
}
.product-card:hover .carousel-dots { opacity: 1; }
.carousel-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.15s;
}
.carousel-dot.active { background: #2563eb; transform: scale(1.3); }

/* Product short description */
.product-short-desc {
        font-size: 0.75rem;
        color: #64748b;
        margin: 0.25rem 0 0.5rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
}

/* Product attributes mini (Size, Color, Material) */
.product-attributes-mini {
        display: flex;
        flex-wrap: wrap;
        gap: 0.375rem;
        margin-bottom: 0.5rem;
}
.product-attr-mini {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.625rem;
        color: #64748b;
        background: #f8fafc;
        padding: 0.125rem 0.5rem;
        border-radius: 4px;
}
.product-attr-mini .attr-label { font-weight: 600; color: #475569; }
.product-attr-mini .attr-value { color: #64748b; }

/* Hide rating (disabled per user request) */
.product-rating { display: none !important; }
.shop-toolbar .toolbar-results .woocommerce-result-count { display: none !important; }

/* Sort dropdown — hide "rating" option */
.woocommerce-ordering select option[value="rating"] { display: none; }

/* ==========================================================================
   CATEGORY CIRCLES CAROUSEL — scrollable with arrows
   ========================================================================== */
.category-carousel-wrap {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
}
.category-carousel-wrap .category-circles {
        flex: 1;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
}
.category-carousel-wrap .category-circles::-webkit-scrollbar { display: none; }

.category-carousel-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        color: #475569;
        cursor: pointer;
        transition: all 0.15s;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(15,23,42,0.08);
        z-index: 5;
}
.category-carousel-arrow:hover {
        background: #2563eb;
        border-color: #2563eb;
        color: #ffffff;
}
.category-carousel-arrow:disabled {
        opacity: 0.3;
        cursor: default;
        pointer-events: none;
}
.category-carousel-arrow.prev { order: -1; }

/* ==========================================================================
   CUSTOM PRODUCT GALLERY — 2-column grid style + lightbox
   ========================================================================== */
.netyex-custom-gallery { display: flex; flex-direction: column; gap: 0.75rem; }

/* Main image */
.gallery-main-image {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        border: 1px solid #f1f5f9;
        aspect-ratio: 1;
}
.gallery-main-image img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.gallery-sale-badge {
        position: absolute;
        top: 0.875rem;
        left: 0.875rem;
        padding: 0.375rem 0.875rem;
        border-radius: 0.375rem;
        background: #e11d48;
        color: #fff;
        font-size: 0.6875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
}
.gallery-badge {
        position: absolute;
        top: 0.875rem;
        right: 0.875rem;
        padding: 0.375rem 0.875rem;
        border-radius: 0.375rem;
        background: #7c3aed;
        color: #fff;
        font-size: 0.6875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
}

/* 2-column grid thumbnails */
.gallery-grid-thumbnails {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
}
.gallery-thumb {
        border: 2px solid #e2e8f0;
        border-radius: 0.75rem;
        overflow: hidden;
        cursor: pointer;
        transition: border-color 0.15s;
        aspect-ratio: 1;
        padding: 0;
        background: #f1f5f9;
}
.gallery-thumb:hover { border-color: #93c5fd; }
.gallery-thumb.active { border-color: #2563eb; box-shadow: 0 0 0 1px #2563eb; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* "+N more" button */
.gallery-more-btn {
        border: 2px dashed #cbd5e1;
        border-radius: 0.75rem;
        background: #f8fafc;
        color: #475569;
        cursor: pointer;
        transition: all 0.15s;
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.125rem;
        padding: 0;
}
.gallery-more-btn:hover { border-color: #2563eb; background: #eff4ff; color: #2563eb; }
.gallery-more-btn .more-count { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.gallery-more-btn .more-text { font-size: 0.625rem; font-weight: 600; text-transform: uppercase; }

/* Lightbox */
.gallery-lightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        z-index: 99999;
        align-items: center;
        justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.lightbox-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.15s;
        border: none;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.15s;
        border: none;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-content { max-width: 90vw; max-height: 85vh; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 0.5rem; }
.lightbox-counter {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255,255,255,0.8);
        font-size: 0.875rem;
        font-weight: 600;
        background: rgba(0,0,0,0.5);
        padding: 0.25rem 0.875rem;
        border-radius: 9999px;
}

/* ==========================================================================
   PRODUCT ATTRIBUTES LIST + TABS
   ========================================================================== */
.product-attributes-list { margin: 1.25rem 0; padding: 1rem 1.25rem; background: #f8fafc; border-radius: 0.75rem; border: 1px solid #f1f5f9; }
.product-attr-row { display: flex; gap: 0.5rem; padding: 0.375rem 0; font-size: 0.8125rem; }
.product-attr-row .attr-name { font-weight: 600; color: #475569; min-width: 100px; }
.product-attr-row .attr-values { color: #0f172a; }
.product-attr-row + .product-attr-row { border-top: 1px solid #f1f5f9; }

.stock-status { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.stock-status.in-stock { color: #10b981; }
.stock-status.out-of-stock { color: #ef4444; }

.product-cats-row { margin-top: 1rem; font-size: 0.8125rem; color: #64748b; }
.product-cats-row .cats-label { font-weight: 600; color: #475569; }

/* Product tabs */
.product-tabs-section { margin-top: 3rem; border-top: 1px solid #f1f5f9; padding-top: 2rem; }
.product-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; border-bottom: 2px solid #f1f5f9; }
.product-tab {
        padding: 0.75rem 1.5rem;
        border: none;
        background: none;
        font-size: 0.875rem;
        font-weight: 600;
        color: #64748b;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        margin-bottom: -2px;
        transition: all 0.15s;
}
.product-tab:hover { color: #2563eb; }
.product-tab.active { color: #2563eb; border-bottom-color: #2563eb; }
.product-tab-content { display: none; line-height: 1.8; color: #334155; }
.product-tab-content.active { display: block; }
.product-tab-content p { margin-bottom: 1rem; }
.product-tab-content h2, .product-tab-content h3 { color: #0f172a; margin-top: 1.5rem; }

.product-attr-table { width: 100%; border-collapse: collapse; }
.product-attr-table th { text-align: left; padding: 0.75rem 1rem; background: #f8fafc; font-size: 0.8125rem; font-weight: 600; color: #0f172a; border-bottom: 1px solid #e2e8f0; width: 200px; }
.product-attr-table td { padding: 0.75rem 1rem; font-size: 0.8125rem; color: #475569; border-bottom: 1px solid #f1f5f9; }

/* ==========================================================================
   SHOP PAGE — Category Carousel + Filter Bar + Toolbar (v2.9.0)
   ========================================================================== */

/* Category Carousel */
.shop-categories-row { border-bottom: 1px solid #f1f5f9; padding: 1.25rem 0; }
.category-carousel-wrap { display: flex; align-items: center; gap: 0.5rem; }
.cat-track {
        flex: 1;
        display: flex;
        gap: 1.25rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
}
.cat-track::-webkit-scrollbar { display: none; }
.cat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; flex-shrink: 0; text-decoration: none; color: inherit; }
.cat-circle {
        width: 72px; height: 72px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #f1f5f9;
        transition: border-color 0.15s;
        background: #f8fafc;
}
.cat-item:hover .cat-circle { border-color: #93c5fd; }
.cat-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.cat-item:hover .cat-circle img { transform: scale(1.1); }
.cat-item span { font-size: 0.75rem; font-weight: 500; color: #475569; text-align: center; white-space: nowrap; transition: color 0.15s; }
.cat-item:hover span { color: #2563eb; }
.cat-arrow {
        display: flex; align-items: center; justify-content: center;
        width: 34px; height: 34px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #e2e8f0;
        color: #475569;
        cursor: pointer;
        flex-shrink: 0;
        box-shadow: 0 2px 6px rgba(15,23,42,0.06);
        transition: all 0.15s;
}
.cat-arrow:hover { background: #2563eb; border-color: #2563eb; color: #fff; }
.cat-arrow[disabled] { opacity: 0.3; pointer-events: none; }

/* Shop Toolbar */
.shop-toolbar { background: #fff; border-bottom: 1px solid #e2e8f0; padding: 0.75rem 0; }
.toolbar-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.toolbar-filters { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.toolbar-right { display: flex; align-items: center; gap: 1rem; }
.toolbar-sort .woocommerce-ordering { margin: 0; }
.toolbar-sort select {
        padding: 0.5rem 2rem 0.5rem 0.75rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 0.8125rem;
        font-weight: 500;
        color: #475569;
        background: #fff;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.5rem center;
}
.toolbar-view { display: flex; gap: 0.25rem; background: #f1f5f9; padding: 0.25rem; border-radius: 8px; }
.view-btn { padding: 0.375rem; border: none; border-radius: 6px; color: #94a3b8; cursor: pointer; background: transparent; transition: all 0.15s; }
.view-btn:hover { color: #475569; }
.view-btn.active { background: #fff; color: #2563eb; box-shadow: 0 1px 2px rgba(15,23,42,0.06); }

/* Filter Dropdown */
.fdd { position: relative; display: inline-block; }
.fdd-btn {
        display: inline-flex; align-items: center; gap: 0.375rem;
        padding: 0.5rem 0.875rem;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 0.8125rem;
        font-weight: 500;
        color: #475569;
        cursor: pointer;
        transition: all 0.15s;
        white-space: nowrap;
}
.fdd-btn:hover { border-color: #cbd5e1; }
.fdd-btn.active, .fdd-btn:hover { border-color: #2563eb; color: #2563eb; background: #eff4ff; }
.fdd-count {
        display: inline-flex; align-items: center; justify-content: center;
        min-width: 18px; height: 18px;
        border-radius: 9999px;
        background: #2563eb;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 0 5px;
}
.fdd-menu {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        min-width: 220px;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        box-shadow: 0 12px 32px rgba(15,23,42,0.12);
        z-index: 50;
        display: none;
        padding: 1rem;
}
.fdd.open .fdd-menu { display: block; }
.fdd-inner { max-height: 280px; overflow-y: auto; }
.fdd-check { display: flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0; cursor: pointer; font-size: 0.8125rem; color: #334155; }
.fdd-check input { width: 16px; height: 16px; accent-color: #2563eb; cursor: pointer; }
.fdd-check span { flex: 1; }
.fdd-colors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.625rem; }
.fdd-color { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; cursor: pointer; }
.fdd-color input { display: none; }
.fdd-swatch { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #e2e8f0; transition: all 0.15s; }
.fdd-color:hover .fdd-swatch { border-color: #93c5fd; }
.fdd-color input:checked + .fdd-swatch { border-color: #2563eb; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2563eb; }
.fdd-cname { font-size: 0.625rem; color: #64748b; text-align: center; }
.fdd-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid #f1f5f9; }
.fdd-apply { flex: 1; padding: 0.5rem; background: #2563eb; border: none; border-radius: 8px; font-size: 0.75rem; font-weight: 600; color: #fff; cursor: pointer; }
.fdd-apply:hover { background: #1d4ed8; }

/* Active filter pills */
.active-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; min-height: 28px; }
.active-pill { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.625rem; background: #eff4ff; border: 1px solid #bfdbfe; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; color: #1d4ed8; }
.active-pill button { display: inline-flex; align-items: center; justify-content: center; width: 14px; height: 14px; border: none; background: transparent; color: #1d4ed8; cursor: pointer; font-size: 14px; line-height: 1; }
.active-pill-clear { font-size: 0.75rem; color: #64748b; background: none; border: none; cursor: pointer; text-decoration: underline; }

/* ==========================================================================
   PRODUCT GRID — Shop page grid layout
   ========================================================================== */
.shop-products { padding: 2rem 0; }
.products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
}
@media (min-width: 640px) { .products-grid { gap: 1.5rem; } }
@media (min-width: 768px) { .products-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
        .products-grid-3 { grid-template-columns: repeat(3, 1fr); }
        .products-grid-4 { grid-template-columns: repeat(4, 1fr); }
        .products-grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* List view */
.products-grid.list-view { grid-template-columns: 1fr !important; }
.products-grid.list-view .product-card { flex-direction: row; }
.products-grid.list-view .product-image { width: 200px; flex-shrink: 0; aspect-ratio: 1; }
.products-grid.list-view .product-info { flex: 1; }

/* WooCommerce overrides */
.shop-products .product,
.shop-products ul.products li.product {
        margin: 0 !important;
        width: auto !important;
        float: none !important;
        text-align: left !important;
}
.shop-products ul.products { display: contents; list-style: none; margin: 0; padding: 0; }
.shop-products ul.products::before, .shop-products ul.products::after { display: none; content: none; }

/* Pagination */
.shop-pagination { padding: 2rem 0; text-align: center; }
.woocommerce-pagination .page-numbers { display: flex; justify-content: center; gap: 0.375rem; list-style: none; margin: 0; padding: 0; }
.woocommerce-pagination .page-numbers li { display: inline-block; }
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 0.75rem; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 0.875rem; font-weight: 500; color: #475569; text-decoration: none; transition: all 0.15s; }
.woocommerce-pagination .page-numbers a:hover { border-color: #93c5fd; color: #2563eb; }
.woocommerce-pagination .page-numbers .current { background: #2563eb; color: #fff; border-color: #2563eb; }

/* No products */
.no-products { text-align: center; padding: 4rem 0; }
.no-products h2 { font-size: 1.5rem; color: #0f172a; }
.no-products p { color: #64748b; }

/* Messages */
.woocommerce-message, .woocommerce-info, .woocommerce-error { padding: 1rem 1.25rem !important; border-radius: 12px !important; margin-bottom: 1rem !important; list-style: none !important; border-left: 4px solid #2563eb !important; background: #eff4ff !important; color: #1e293b !important; }
.woocommerce-error { border-left-color: #dc2626 !important; background: #fef2f2 !important; }
.woocommerce-info { border-left-color: #f59e0b !important; background: #fffbeb !important; }

/* WC breadcrumb hidden */
.woocommerce-breadcrumb { display: none !important; }

/* Rating hidden */
.product-rating { display: none !important; }

/* Sort rating hidden */
.woocommerce-ordering select option[value="rating"] { display: none; }

/* Hide onsale flash */
.woocommerce span.onsale { display: none !important; }

/* ==========================================================================
   SINGLE PRODUCT PAGE — Complete CSS
   ========================================================================== */
.single-product-page { padding: 1.5rem 0 3rem; }
.single-product-breadcrumb { background: transparent; border: none; padding: 1rem 0; }

.single-product-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
}
@media (min-width: 1024px) {
        .single-product-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* Gallery section */
.product-gallery-section { display: flex; flex-direction: column; gap: 1.5rem; }
.product-trust-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
}
@media (min-width: 640px) { .product-trust-row { grid-template-columns: repeat(4, 1fr); } }
.trust-mini {
        display: flex; align-items: center; gap: 0.5rem;
        padding: 0.75rem;
        background: #f8fafc;
        border-radius: 0.5rem;
        border: 1px solid #f1f5f9;
}
.trust-mini svg { color: #2563eb; flex-shrink: 0; }
.trust-mini span { font-size: 0.75rem; font-weight: 600; color: #0f172a; }

/* Product summary */
.product-summary { padding: 0; }
.product-title { font-size: 1.75rem; font-weight: 700; color: #0f172a; margin: 0 0 0.75rem; line-height: 1.2; }
@media (min-width: 1024px) { .product-title { font-size: 2rem; } }

.product-meta-top {
        display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
        font-size: 0.8125rem; color: #64748b; margin-bottom: 1rem;
}
.product-meta-top .meta-sep { color: #cbd5e1; }
.product-meta-top .sku { color: #64748b; }

.product-price {
        font-size: 1.75rem; font-weight: 700; color: #2563eb; margin: 1rem 0;
}
.product-price del { color: #94a3b8; font-weight: 400; font-size: 1.25rem; margin-right: 0.5rem; }
.product-price ins { text-decoration: none; }

.product-description { color: #475569; line-height: 1.7; margin-bottom: 1.25rem; font-size: 0.9375rem; }
.read-more-link {
        display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.5rem;
        font-size: 0.875rem; font-weight: 600; color: #2563eb;
        background: none; border: none; cursor: pointer; text-decoration: none;
}
.read-more-link:hover { color: #1d4ed8; text-decoration: underline; }

/* Product attributes list */
.product-attributes-list {
        margin: 1.25rem 0; padding: 1rem 1.25rem;
        background: #f8fafc; border-radius: 0.75rem; border: 1px solid #f1f5f9;
}
.product-attr-row { display: flex; gap: 0.5rem; padding: 0.375rem 0; font-size: 0.8125rem; }
.product-attr-row .attr-name { font-weight: 600; color: #475569; min-width: 100px; }
.product-attr-row .attr-values { color: #0f172a; }
.product-attr-row + .product-attr-row { border-top: 1px solid #f1f5f9; }

.stock-status { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.stock-status.in-stock { color: #10b981; }
.stock-status.out-of-stock { color: #ef4444; }

.product-cats-row { margin-top: 1rem; font-size: 0.8125rem; color: #64748b; }
.product-cats-row .cats-label { font-weight: 600; color: #475569; }

/* Option rows (size, color) */
.product-option-row { margin-bottom: 1.5rem; }
.option-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.625rem; }
.option-label { font-size: 0.875rem; font-weight: 600; color: #0f172a; }
.selected-color-name { font-weight: 500; color: #475569; }
.size-guide-link { font-size: 0.8125rem; font-weight: 600; color: #2563eb; text-decoration: none; }
.size-guide-link:hover { text-decoration: underline; }

.size-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
@media (max-width: 480px) { .size-buttons { grid-template-columns: repeat(2, 1fr); } }
.size-btn {
        padding: 0.625rem 0.5rem; background: #ffffff; border: 1px solid #e2e8f0;
        border-radius: 0.375rem; font-size: 0.75rem; font-weight: 500; color: #475569;
        cursor: pointer; transition: all 0.15s; text-align: center;
}
.size-btn:hover { border-color: #93c5fd; }
.size-btn.selected { border-color: #2563eb; background: #eff4ff; color: #2563eb; font-weight: 600; box-shadow: 0 0 0 1px #2563eb; }

.color-swatches { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.color-swatch {
        width: 36px; height: 36px; border-radius: 50%; border: 2px solid #e2e8f0;
        cursor: pointer; transition: all 0.15s; position: relative;
}
.color-swatch:hover { border-color: #93c5fd; transform: scale(1.08); }
.color-swatch.selected { border-color: #2563eb; box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #2563eb; }

/* ==========================================================================
   VARIABLE PRODUCT — Native WooCommerce Variation Form (professional)
   ========================================================================== */
.product-summary form.variations_form { margin: 0; }
.product-summary .variations {
        border: none;
        margin: 0 0 1rem;
        width: 100%;
}
.product-summary .variations tbody { display: block; }
.product-summary .variations tr { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.product-summary .variations .label { display: block; padding: 0; color: #0f172a; text-align: left; }
.product-summary .variations .label label {
        font-size: 0.875rem; font-weight: 600; color: #0f172a; margin: 0; text-align: left;
}
.product-summary .variations .value { display: block; padding: 0; text-align: left; }
.product-summary .variations select {
        width: 100%;
        padding: 0.75rem 2.5rem 0.75rem 0.875rem;
        border: 1px solid #e2e8f0;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: #0f172a;
        background-color: #ffffff;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.875rem center;
        transition: border-color 0.15s, box-shadow 0.15s;
}
.product-summary .variations select:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.product-summary .reset_variations {
        display: inline-flex;
        align-items: center;
        font-size: 0.75rem;
        font-weight: 600;
        color: #475569;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 9999px;
        padding: 0.375rem 0.875rem;
        margin: 0.5rem 0 0 0.5rem;
        text-decoration: none;
        line-height: 1.4;
        cursor: pointer;
        transition: all 0.2s;
}
.product-summary .reset_variations:hover { color: #1e293b; border-color: #cbd5e1; background: #f1f5f9; }

.product-summary .woocommerce-variation { margin: 0.25rem 0 1rem; }
.product-summary .woocommerce-variation-price { margin: 0; }
.product-summary .woocommerce-variation-price .price {
        font-size: 1.5rem; font-weight: 700; color: #2563eb;
}
.product-summary .woocommerce-variation-availability { margin-top: 0.375rem; }
.product-summary .woocommerce-variation-availability .stock {
        display: inline-block; font-size: 0.75rem; font-weight: 600;
        text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 9999px;
}
.product-summary .woocommerce-variation-availability .in-stock { background: #ecfdf5; color: #047857; }
.product-summary .woocommerce-variation-availability .out-of-stock { background: #fef2f2; color: #b91c1c; }

.product-summary .single_variation_wrap .woocommerce-variation-add-to-cart {
        display: flex; flex-wrap: wrap; gap: 0.625rem; align-items: center; margin-top: 0.5rem;
}
.product-summary .single_variation_wrap .quantity { margin: 0; }
.product-summary .single_variation_wrap .quantity .qty {
        width: 70px; height: 44px; text-align: center;
        border: 1px solid #e2e8f0; border-radius: 0.5rem;
        font-size: 1rem; font-weight: 600; color: #0f172a; background: #fff;
}
.product-summary .single_variation_wrap .quantity .qty:focus { outline: none; border-color: #2563eb; }
.product-summary .single_variation_wrap .button.single_add_to_cart_button {
        flex: 1; min-height: 44px; justify-content: center;
        padding: 0 1.5rem; background: #2563eb; color: #ffffff;
        border: none; border-radius: 0.5rem; font-size: 0.9375rem; font-weight: 600;
        cursor: pointer; transition: all 0.2s; white-space: nowrap;
        display: inline-flex; align-items: center; gap: 0.5rem;
}
.product-summary .single_variation_wrap .button.single_add_to_cart_button:hover { background: #1d4ed8; transform: translateY(-1px); }
.product-summary .single_variation_wrap .button.single_add_to_cart_button:disabled { background: #cbd5e1; cursor: not-allowed; transform: none; }

/* Cart row */
.product-cart-row { margin-bottom: 1.5rem; }
.product-cart-row form.cart { display: flex; flex-wrap: wrap; gap: 0.625rem; align-items: center; margin: 0; }
.quantity-selector { display: inline-flex; align-items: center; border: 1px solid #e2e8f0; border-radius: 0.5rem; overflow: hidden; background: #ffffff; }
.qty-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 44px; background: #f8fafc; border: none; color: #475569; font-size: 1.125rem; font-weight: 600; cursor: pointer; transition: background 0.15s; }
.qty-btn:hover { background: #e2e8f0; color: #0f172a; }
.qty-input { width: 50px; height: 44px; text-align: center; border: none; border-left: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; font-size: 1rem; font-weight: 600; background: #ffffff; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.add-to-cart-btn {
        display: inline-flex; align-items: center; gap: 0.5rem; flex: 1; min-height: 44px;
        justify-content: center; padding: 0 1.5rem; background: #2563eb; color: #ffffff;
        border: none; border-radius: 0.5rem; font-size: 0.9375rem; font-weight: 600;
        cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.add-to-cart-btn:hover { background: #1d4ed8; transform: translateY(-1px); }
.add-to-cart-btn:disabled { background: #cbd5e1; cursor: not-allowed; transform: none; }
.add-to-cart-btn.atc-loading { background: #1d4ed8; cursor: progress; opacity: 0.85; transform: none; }
.atc-spin { animation: netyex-spin 0.7s linear infinite; }
@keyframes netyex-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.wishlist-icon-btn {
        display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
        background: #ffffff; border: 1px solid #e2e8f0; border-radius: 0.5rem;
        color: #64748b; cursor: pointer; transition: all 0.15s;
}
.wishlist-icon-btn:hover { border-color: #fca5a5; color: #e11d48; background: #fef2f2; }

/* Checkout trust */
.checkout-trust { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid #f1f5f9; }
.secure-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.secure-row svg { color: #10b981; }
.secure-row span { font-size: 0.75rem; font-weight: 600; color: #334155; }
.payment-icons-row { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.payment-icon { display: inline-flex; align-items: center; justify-content: center; height: 24px; padding: 0 0.5rem; background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 0.25rem; font-size: 0.5625rem; font-weight: 700; color: #475569; text-transform: uppercase; }

/* Product design section */
.product-design-section { background: #f8fafc; padding: 3rem 0; margin-top: 3rem; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
.design-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .design-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: start; } }
.design-image img { border-radius: 1rem; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.design-content h2 { font-size: 1.75rem; margin: 0.5rem 0 1rem; }
.design-content .eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #2563eb; letter-spacing: 0.1em; }
.design-text { color: #475569; line-height: 1.7; font-size: 0.9375rem; }
.design-text p { margin-bottom: 0.75rem; }

/* Accordion */
.design-accordion { display: flex; flex-direction: column; gap: 0.5rem; }
.design-accordion-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 0.5rem; overflow: hidden; }
.design-accordion-item summary { display: flex; justify-content: space-between; align-items: center; padding: 0.875rem 1rem; cursor: pointer; list-style: none; font-size: 0.875rem; font-weight: 600; color: #0f172a; }
.design-accordion-item summary::-webkit-details-marker { display: none; }
.acc-icon { transition: transform 0.2s; color: #64748b; }
.design-accordion-item[open] .acc-icon { transform: rotate(180deg); }
.design-accordion-item .acc-content { padding: 0 1rem 1rem; font-size: 0.8125rem; color: #475569; line-height: 1.6; }
.design-accordion-item .acc-view-more { display: inline-block; margin-top: 0.5rem; font-size: 0.8125rem; font-weight: 600; color: #2563eb; text-decoration: none; }
.design-accordion-item .acc-view-more:hover { text-decoration: underline; }

/* Related products */
.related.products { padding: 3rem 0; }
.related.products > h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; color: #0f172a; }
.related.products ul.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 1024px) { .related.products ul.products { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

/* Product tabs (legacy, if present) */
.product-tabs-section { margin-top: 3rem; border-top: 1px solid #f1f5f9; padding-top: 2rem; }
.product-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; border-bottom: 2px solid #f1f5f9; }
.product-tab { padding: 0.75rem 1.5rem; border: none; background: none; font-size: 0.875rem; font-weight: 600; color: #64748b; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.15s; }
.product-tab:hover { color: #2563eb; }
.product-tab.active { color: #2563eb; border-bottom-color: #2563eb; }
.product-tab-content { display: none; line-height: 1.8; color: #334155; }
.product-tab-content.active { display: block; }

/* Product attribute table */
.product-attr-table { width: 100%; border-collapse: collapse; }
.product-attr-table th { text-align: left; padding: 0.75rem 1rem; background: #f8fafc; font-size: 0.8125rem; font-weight: 600; color: #0f172a; border-bottom: 1px solid #e2e8f0; width: 200px; }
.product-attr-table td { padding: 0.75rem 1rem; font-size: 0.8125rem; color: #475569; border-bottom: 1px solid #f1f5f9; }

/* WC Gallery zoom trigger */
.product-gallery .woocommerce-product-gallery__trigger {
        position: absolute; top: 14px; right: 14px; z-index: 5;
        width: 42px; height: 42px; border-radius: 50%;
        background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
        border: 1px solid rgba(15,23,42,0.08); box-shadow: 0 4px 12px rgba(15,23,42,0.12);
        display: flex; align-items: center; justify-content: center; text-indent: -9999px; overflow: hidden; cursor: pointer; transition: all 0.2s ease;
}
.product-gallery .woocommerce-product-gallery__trigger:hover { background: #2563eb; border-color: #2563eb; transform: scale(1.08); }
.product-gallery .woocommerce-product-gallery__trigger::before { content: ''; display: block; width: 16px; height: 16px; border: 2.5px solid #475569; border-radius: 50%; position: absolute; top: 11px; left: 11px; }
.product-gallery .woocommerce-product-gallery__trigger::after { content: ''; display: block; width: 7px; height: 2.5px; background: #475569; position: absolute; top: 25px; left: 25px; transform: rotate(45deg); border-radius: 2px; }
.product-gallery .woocommerce-product-gallery__trigger:hover::before { border-color: #fff; }
.product-gallery .woocommerce-product-gallery__trigger:hover::after { background: #fff; }
.product-gallery .woocommerce-product-gallery__trigger img { display: none !important; }
.product-gallery .woocommerce-product-gallery__image .zoomImg { cursor: zoom-in; }

/* ==========================================================================
   ADD TO CART POPUP + CUSTOM SIZE BUTTON
   ========================================================================== */

/* Custom Size button — WhatsApp green (distinct class, no .size-btn so no
   generic handler can intercept it). */
.netyex-custom-size-wa,
.size-custom-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        padding: 0.625rem 0.5rem;
        border: 2px dashed #10b981;
        border-radius: 0.375rem;
        background: #ecfdf5;
        color: #047857;
        font-size: 0.75rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.15s;
        text-align: center;
}
.netyex-custom-size-wa:hover,
.size-custom-btn:hover {
        background: #d1fae5;
        border-color: #059669;
        color: #064e3b;
        transform: translateY(-1px);
        text-decoration: none;
}
.netyex-custom-size-wa::before {
        content: "\1F4AC";
        margin-right: 0.25rem;
        font-size: 0.6875rem;
}

/* Add to Cart Popup */
.atc-popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        backdrop-filter: blur(4px);
        z-index: 99998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s, visibility 0.25s;
}
.atc-popup-overlay.open { opacity: 1; visibility: visible; }

.atc-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
        z-index: 99999;
        width: 90%;
        max-width: 400px;
        padding: 2rem;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.atc-popup.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.atc-popup-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #f1f5f9;
        border: none;
        color: #64748b;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.15s;
}
.atc-popup-close:hover { background: #e2e8f0; color: #0f172a; }

.atc-popup-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, #d1fae5, #a7f3d0);
        color: #10b981;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.25rem;
}

.atc-popup-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0f172a;
        margin: 0 0 0.5rem;
}

.atc-popup-text {
        font-size: 0.875rem;
        color: #64748b;
        margin: 0 0 1.5rem;
        line-height: 1.5;
}

.atc-popup-actions {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
}

.atc-popup-view-cart {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        color: #ffffff;
        font-size: 0.9375rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.atc-popup-view-cart:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35); color: #ffffff; }

.atc-popup-continue {
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
        background: #f1f5f9;
        color: #475569;
        font-size: 0.9375rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.15s;
}
.atc-popup-continue:hover { background: #e2e8f0; color: #0f172a; }

/* ==========================================================================
   CART PAGE — Modern Colorful Professional (v3.4.0)
   ========================================================================== */
.netyex-cart-page { padding: 0 0 4rem; background: #f8fafc; min-height: 60vh; }
.cart-body { padding-top: 2rem; }

/* ---- Gradient hero header ---- */
.cart-hero { background: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 45%, #7c3aed 100%); color: #fff; padding: 2rem 0; position: relative; overflow: hidden; }
.cart-hero::before { content: ""; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cart-hero::after { content: ""; position: absolute; bottom: -40%; left: -5%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(236,72,153,0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cart-hero-inner { position: relative; z-index: 1; }
.cart-breadcrumb { margin-bottom: 1rem; color: rgba(255,255,255,0.7); font-size: 0.8125rem; }
.cart-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.15s; }
.cart-breadcrumb a:hover { color: #fff; }
.cart-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.6; }
.cart-breadcrumb .current { color: #fff; font-weight: 600; }
.cart-hero-title { font-size: 2.25rem; font-weight: 800; margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
.cart-hero-subtitle { font-size: 0.9375rem; color: rgba(255,255,255,0.85); margin: 0.5rem 0 0; }
.cart-hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.cht-item { display: flex; align-items: center; gap: 0.625rem; }
.cht-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); color: #fff; flex-shrink: 0; }
.cht-item strong { display: block; font-size: 0.8125rem; font-weight: 700; color: #fff; line-height: 1.2; }
.cht-item span { display: block; font-size: 0.6875rem; color: rgba(255,255,255,0.75); margin-top: 0.125rem; }
@media (max-width: 640px) { .cart-hero-title { font-size: 1.5rem; } .cart-hero-trust { gap: 0.875rem; } .cht-item span { display: none; } }

/* ---- Layout ---- */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1fr 400px; gap: 2rem; align-items: start; } }

/* ---- Step indicator ---- */
.cart-steps { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; padding: 0.875rem 1.25rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; }
.cart-step { display: flex; align-items: center; gap: 0.5rem; }
.cs-num { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: #e2e8f0; color: #64748b; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; transition: all 0.2s; }
.cart-step.active .cs-num { background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,0.3); }
.cs-text { font-size: 0.8125rem; font-weight: 600; color: #64748b; }
.cart-step.active .cs-text { color: #0f172a; }
.cart-step-line { flex: 1; height: 2px; background: #e2e8f0; border-radius: 1px; min-width: 16px; }
@media (max-width: 640px) { .cs-text { display: none; } .cart-steps { justify-content: space-between; } }

/* ---- Cart items card ---- */
.cart-items-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 4px rgba(15,23,42,0.04); }
.cart-items-head { display: grid; grid-template-columns: 1fr 110px 140px 130px; gap: 1rem; padding: 1rem 1.5rem; background: linear-gradient(135deg, #eff4ff, #f5f3ff); border-bottom: 1px solid #e2e8f0; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #475569; }
.cih-total { text-align: right; } .cih-qty { text-align: center; }
@media (max-width: 768px) { .cart-items-head { display: none; } }

.cart-row { display: grid; grid-template-columns: 1fr 110px 140px 130px; gap: 1rem; padding: 1.25rem 1.5rem; border-bottom: 1px solid #f1f5f9; align-items: center; transition: background 0.15s; }
.cart-row:hover { background: #fafbff; }
.cart-row:last-child { border-bottom: none; }
@media (max-width: 768px) { .cart-row { grid-template-columns: 1fr; gap: 0.875rem; padding: 1.25rem; } }

.cr-product { display: flex; gap: 1rem; align-items: center; min-width: 0; }
.cr-thumb { width: 84px; height: 84px; border-radius: 12px; overflow: hidden; background: #f1f5f9; flex-shrink: 0; border: 1px solid #e2e8f0; }
.cr-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.cr-product:hover .cr-thumb img { transform: scale(1.06); }
.cr-info { min-width: 0; }
.cr-name { font-size: 0.9375rem; font-weight: 600; color: #0f172a; margin: 0; line-height: 1.3; }
.cr-name a { color: inherit; text-decoration: none; } .cr-name a:hover { color: #2563eb; }
.cr-info .variation, .cr-info dl { font-size: 0.75rem; color: #64748b; margin: 0.25rem 0 0; }
.cr-remove-link { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.5rem; font-size: 0.6875rem; font-weight: 600; color: #94a3b8; text-decoration: none; transition: color 0.15s; }
.cr-remove-link:hover { color: #dc2626; }

.cr-price { font-size: 0.875rem; color: #475569; font-weight: 500; }
.cr-qty { display: flex; justify-content: center; }
.cr-qty .quantity, .cr-qty .netyex-qty-wrap { display: inline-flex; align-items: center; border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; background: #fff; }
.cr-qty .qty { width: 46px; height: 40px; text-align: center; border: none; border-left: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; font-size: 0.875rem; font-weight: 600; color: #0f172a; background: transparent; -moz-appearance: textfield; padding: 0; }
.cr-qty .qty::-webkit-outer-spin-button, .cr-qty .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cr-total { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; }
.cr-total-val { font-size: 0.9375rem; font-weight: 700; color: #2563eb; }
@media (max-width: 768px) {
  .cr-price::before { content: attr(data-title) ": "; font-weight: 600; color: #94a3b8; }
  .cr-qty::before { content: attr(data-title) ": "; font-weight: 600; color: #94a3b8; display: block; margin-bottom: 0.25rem; }
  .cr-qty { justify-content: flex-start; }
  .cr-total::before { content: attr(data-title) ": "; font-weight: 600; color: #94a3b8; }
  .cr-total { justify-content: flex-start; }
}

/* ---- Bottom actions ---- */
.cart-bottom-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cart-continue-shop { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 12px; background: #fff; border: 1px solid #e2e8f0; color: #475569; font-size: 0.8125rem; font-weight: 600; text-decoration: none; transition: all 0.15s; }
.cart-continue-shop:hover { background: #f1f5f9; border-color: #cbd5e1; color: #0f172a; transform: translateX(-2px); }
.cart-update-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 12px; border: 1px solid #e2e8f0; background: #fff; color: #475569; font-size: 0.8125rem; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.cart-update-btn:hover { border-color: #2563eb; color: #2563eb; background: #eff4ff; }

/* ---- Order summary card ---- */
.cart-summary-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 0; box-shadow: 0 4px 16px rgba(15,23,42,0.06); overflow: hidden; }
@media (min-width: 1024px) { .cart-summary-card { position: sticky; top: 90px; } }
.cart-summary-header { padding: 1.25rem 1.5rem; background: linear-gradient(135deg, #1e3a8a, #4f46e5); color: #fff; }
.cart-summary-heading { display: flex; align-items: center; gap: 0.5rem; font-size: 1.125rem; font-weight: 700; margin: 0; }
.cart-summary-heading svg { color: #fff; }
.cs-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 1.5rem; font-size: 0.875rem; }
.cs-row:first-of-type { padding-top: 1rem; }
.cs-label { color: #64748b; } .cs-value { font-weight: 600; color: #0f172a; }
.cs-discount .cs-value, .cs-discount-val { color: #10b981; }
.cs-shipping-note { font-size: 0.75rem; color: #94a3b8; font-style: italic; }
.cs-divider { height: 1px; background: #f1f5f9; margin: 0.5rem 1.5rem; }
.cs-total-row { padding: 1rem 1.5rem 1.25rem; }
.cs-total-label { font-size: 1rem; font-weight: 700; color: #0f172a; }
.cs-total-value { font-size: 1.5rem; font-weight: 800; color: #2563eb; }

/* ---- Coupon box ---- */
.cs-coupon-box { margin: 0 1.5rem; padding: 1.25rem; background: linear-gradient(135deg, #fef3c7, #fde68a); border-radius: 12px; border: 1px dashed #f59e0b; }
.cs-coupon-head { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.75rem; }
.cs-coupon-head svg { color: #d97706; flex-shrink: 0; }
.cs-coupon-head strong { display: block; font-size: 0.8125rem; font-weight: 700; color: #78350f; }
.cs-coupon-head span { display: block; font-size: 0.6875rem; color: #92400e; margin-top: 0.125rem; }
.cs-coupon-input-row { display: flex; gap: 0.5rem; }
.cs-coupon-input { flex: 1; padding: 0.625rem 0.875rem; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 0.8125rem; color: #0f172a; outline: none; transition: border-color 0.15s; background: #fff; }
.cs-coupon-input:focus { border-color: #d97706; box-shadow: 0 0 0 3px rgba(217,119,6,0.1); }
.cs-coupon-btn { padding: 0.625rem 1.25rem; border-radius: 10px; border: none; background: #d97706; color: #fff; font-size: 0.8125rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.15s; }
.cs-coupon-btn:hover { background: #b45309; }

/* ---- Checkout button ---- */
.cs-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: calc(100% - 3rem); margin: 1.25rem 1.5rem; padding: 1rem 1.5rem; border-radius: 12px; border: none; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 0.9375rem; font-weight: 700; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 14px rgba(37,99,235,0.3); text-decoration: none; }
.cs-checkout-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); color: #fff; }
.cs-checkout-btn:active { transform: translateY(0); }

/* ---- Payments + trust ---- */
.cs-payments { padding: 0 1.5rem 1rem; }
.cs-payments-label { display: block; font-size: 0.6875rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.cs-payments-row { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.cs-payment { padding: 0.3125rem 0.5625rem; border-radius: 6px; background: #f1f5f9; border: 1px solid #e2e8f0; font-size: 0.5625rem; font-weight: 700; color: #64748b; text-transform: uppercase; }
.cs-trust { display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid #f1f5f9; }
.cs-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #64748b; }
.cs-trust-item svg { color: #10b981; flex-shrink: 0; }

/* ---- Cart empty ---- */
.cart-empty { text-align: center; padding: 5rem 1.5rem; max-width: 520px; margin: 0 auto; }
.cart-empty-icon { width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, #eff4ff, #f5f3ff); color: #2563eb; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.cart-empty-title { font-size: 1.75rem; font-weight: 800; color: #0f172a; margin: 0 0 0.75rem; }
.cart-empty-text { font-size: 0.9375rem; color: #64748b; margin: 0 0 2rem; line-height: 1.6; }
.cart-empty-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2.25rem; border-radius: 9999px; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 0.9375rem; font-weight: 600; text-decoration: none; transition: all 0.2s; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.cart-empty-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); color: #fff; }

/* ==========================================================================
   CHECKOUT PAGE — Modern Colorful Professional
   ========================================================================== */
.netyex-checkout-form { padding: 1.5rem 0 4rem; }
.checkout-breadcrumb { margin-bottom: 1.5rem; }
.checkout-page-header { margin-bottom: 2rem; }
.checkout-page-title { font-size: 2rem; font-weight: 700; margin: 0; line-height: 1.2; }
.checkout-page-subtitle { font-size: 0.875rem; color: #64748b; margin: 0.5rem 0 0; }

.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .checkout-layout { grid-template-columns: 1fr 400px; gap: 2rem; align-items: start; } }

.co-section { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 4px rgba(15,23,42,0.04); }
.co-section-head { display: flex; align-items: center; gap: 0.75rem; padding: 1.125rem 1.5rem; background: linear-gradient(135deg, #eff4ff, #f5f3ff); border-bottom: 1px solid #e2e8f0; }
.co-step { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 0.8125rem; font-weight: 700; flex-shrink: 0; }
.co-section-title { font-size: 1rem; font-weight: 700; color: #0f172a; margin: 0; }
.co-section-body { padding: 1.5rem; }
.co-section-body .form-row { margin-bottom: 1rem; }
.co-section-body .form-row:last-child { margin-bottom: 0; }
.co-section-body label { display: block; font-size: 0.8125rem; font-weight: 600; color: #334155; margin-bottom: 0.375rem; }
.co-section-body .required { color: #dc2626; }
.co-section-body input[type="text"], .co-section-body input[type="email"], .co-section-body input[type="tel"], .co-section-body input[type="password"], .co-section-body textarea, .co-section-body select { width: 100%; padding: 0.6875rem 0.875rem; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 0.875rem; color: #0f172a; background: #fff; outline: none; transition: all 0.15s; box-sizing: border-box; }
.co-section-body input:focus, .co-section-body textarea:focus, .co-section-body select:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.co-section-body .form-row-first, .co-section-body .form-row-last { display: inline-block; width: 48%; vertical-align: top; }
.co-section-body .form-row-first { margin-right: 2%; }
@media (max-width: 640px) { .co-section-body .form-row-first, .co-section-body .form-row-last { width: 100%; margin-right: 0; } }
.co-section-body #place_order { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.9375rem 1.5rem; border-radius: 12px; border: none; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 0.9375rem; font-weight: 600; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 14px rgba(37,99,235,0.25); margin-top: 0.5rem; }
.co-section-body #place_order:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.35); }

/* Checkout summary */
.co-summary-card { background: linear-gradient(135deg, #ffffff, #f8fafc); border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.75rem; box-shadow: 0 4px 16px rgba(15,23,42,0.06); }
@media (min-width: 1024px) { .co-summary-card { position: sticky; top: 90px; } }
.co-summary-heading { font-size: 1.125rem; font-weight: 700; color: #0f172a; margin: 0 0 1.25rem; padding-bottom: 0.875rem; border-bottom: 2px solid #eff4ff; }
.co-items { display: flex; flex-direction: column; gap: 0.875rem; max-height: 280px; overflow-y: auto; }
.co-item { display: flex; align-items: center; gap: 0.75rem; }
.co-item-thumb { width: 52px; height: 52px; border-radius: 10px; overflow: hidden; background: #f1f5f9; flex-shrink: 0; }
.co-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.co-item-info { flex: 1; min-width: 0; }
.co-item-name { font-size: 0.8125rem; font-weight: 600; color: #0f172a; margin: 0; line-height: 1.3; }
.co-item-qty { font-size: 0.6875rem; color: #94a3b8; }
.co-item-price { font-size: 0.8125rem; font-weight: 700; color: #2563eb; flex-shrink: 0; }
.co-divider { height: 1px; background: #f1f5f9; margin: 1rem 0; }
.co-row { display: flex; justify-content: space-between; align-items: center; padding: 0.375rem 0; font-size: 0.8125rem; }
.co-row-label { color: #64748b; } .co-row-value { font-weight: 600; color: #0f172a; }
.co-total-row { padding: 0.75rem 0 0; }
.co-total-label { font-size: 1rem; font-weight: 700; color: #0f172a; }
.co-total-value { font-size: 1.5rem; font-weight: 700; color: #2563eb; }
.co-secure { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; padding: 0.75rem; background: #ecfdf5; border-radius: 10px; font-size: 0.75rem; font-weight: 600; color: #047857; }
.co-secure svg { color: #10b981; flex-shrink: 0; }
.co-payments { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 1rem; justify-content: center; }
.co-payment { padding: 0.25rem 0.5rem; border-radius: 4px; background: #f1f5f9; font-size: 0.5625rem; font-weight: 700; color: #64748b; text-transform: uppercase; }

/* ==========================================================================
   FAQ PAGE — gradient hero, + icon on LEFT, search, tabs, accordion
   ========================================================================== */
.netyex-faq-page { background: #f8fafc; min-height: 70vh; padding-bottom: 50px; }
.faq-hero { background: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 45%, #db2777 100%); color: #fff; padding: 3rem 0 2.5rem; margin-bottom: 50px; position: relative; overflow: hidden; }
.faq-hero::before { content: ""; position: absolute; top: -40%; right: -8%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.faq-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.faq-breadcrumb { color: rgba(255,255,255,0.8); font-size: 0.8125rem; margin-bottom: 1rem; }
.faq-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.faq-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.7; }
.faq-breadcrumb .current { color: #fff; font-weight: 600; }
.faq-hero-title { font-size: 2.5rem; font-weight: 800; margin: 0 0 0.75rem; color: #ffffff !important; }
.faq-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.85); margin: 0 0 2rem; }
@media (max-width: 768px) { .faq-hero-title { font-size: 1.875rem; } }
.faq-search-wrap { position: relative; max-width: 560px; margin: 0 auto; }
.faq-search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #94a3b8; pointer-events: none; }
.faq-search-input { width: 100%; padding: 1rem 3rem; border: none; border-radius: 9999px; font-size: 0.9375rem; color: #0f172a; background: #fff; box-shadow: 0 8px 24px rgba(15,23,42,0.15); outline: none; box-sizing: border-box; }
.faq-search-input:focus { box-shadow: 0 8px 32px rgba(15,23,42,0.25); }
.faq-search-clear { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border: none; border-radius: 50%; background: #f1f5f9; color: #64748b; cursor: pointer; display: none; align-items: center; justify-content: center; }
.faq-search-input:not(:placeholder-shown) ~ .faq-search-clear { display: flex; }
.faq-tabs { display: flex; flex-wrap: wrap; gap: 0.625rem; justify-content: center; align-items: center; margin-bottom: 2.5rem; width: 100%; }
.faq-tab { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5625rem 1.0625rem; border-radius: 9999px; border: 1px solid #e2e8f0; background: #fff; color: #475569; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.15s; white-space: nowrap; flex-shrink: 0; }
.faq-tab:hover { border-color: #93c5fd; color: #2563eb; }
.faq-tab.active { border-color: transparent; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.faq-tab.active:hover { color: #fff; }
.faq-category { margin-bottom: 2.5rem; }
.faq-cat-title { display: flex; align-items: center; gap: 0.625rem; font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 1.25rem; }
.faq-cat-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #eff4ff, #f5f3ff); color: #2563eb; flex-shrink: 0; }
.faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; transition: border-color 0.15s, box-shadow 0.15s; }
.faq-item[open] { border-color: #bfdbfe; box-shadow: 0 4px 16px rgba(37,99,235,0.08); }
.faq-item > summary { list-style: none; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { display: none; content: ""; }
.faq-item-q { display: flex; align-items: center; gap: 0.875rem; padding: 1.125rem 1.25rem; cursor: pointer; font-size: 0.9375rem; font-weight: 600; color: #0f172a; }
.faq-item-q:hover { color: #2563eb; }
.faq-q-icon { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #f1f5f9; color: #475569; flex-shrink: 0; transition: all 0.2s; }
.faq-item[open] .faq-q-icon { background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; }
.faq-item[open] .faq-q-icon-v { display: none; }
.faq-q-text { flex: 1; }
.faq-item-a { padding: 0 1.25rem 1.25rem 3.625rem; font-size: 0.875rem; color: #64748b; line-height: 1.7; }
.faq-no-results { text-align: center; padding: 3rem 1.5rem; }
.faq-no-results h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 0.5rem; }
.faq-body { width: 100%; margin: 0 auto 4rem; }
.faq-cta-card { background: linear-gradient(135deg, #1e3a8a, #4f46e5); border-radius: 20px; padding: 2.5rem; text-align: center; color: #fff; margin-bottom: 50px; }
.faq-cta-title { font-size: 1.75rem; font-weight: 800; margin: 0 0 0.75rem; color: #fff; }
.faq-cta-text { font-size: 0.9375rem; color: rgba(255,255,255,0.85); margin: 0 0 1.75rem; }
.faq-cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.faq-cta-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; border-radius: 9999px; background: #fff; color: #2563eb; font-size: 0.9375rem; font-weight: 700; text-decoration: none; transition: all 0.15s; }
.faq-cta-btn:hover { transform: translateY(-2px); color: #1d4ed8; }
.faq-cta-btn-wa { background: #25d366; color: #fff; }
.faq-cta-btn-wa:hover { background: #1ebe5a; color: #fff; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.netyex-contact-page { background: #f8fafc; min-height: 70vh; padding-bottom: 50px; }
.contact-hero { background: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 45%, #db2777 100%); color: #fff; padding: 3rem 0 2.5rem; margin-bottom: 50px; position: relative; overflow: hidden; }
.contact-hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.contact-breadcrumb { color: rgba(255,255,255,0.8); font-size: 0.8125rem; margin-bottom: 1rem; }
.contact-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.contact-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.7; }
.contact-breadcrumb .current { color: #fff; font-weight: 600; }
.contact-hero-title { font-size: 2.5rem; font-weight: 800; margin: 0 0 0.75rem; color: #ffffff !important; }
.contact-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.85); margin: 0; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
@media (max-width: 768px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-info-card { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; text-decoration: none; transition: all 0.2s; }
.contact-info-card:hover { transform: translateY(-3px); border-color: #bfdbfe; box-shadow: 0 12px 28px rgba(15,23,42,0.1); }
.contact-info-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #eff4ff, #f5f3ff); color: #2563eb; flex-shrink: 0; }
.contact-info-card:hover .contact-info-icon { background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; }
.contact-info-text strong { display: block; font-size: 0.9375rem; font-weight: 700; color: #0f172a; margin-bottom: 0.25rem; }
.contact-info-text span { display: block; font-size: 0.8125rem; color: #64748b; word-break: break-word; }
.contact-info-card-wa .contact-info-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }
.contact-info-card-wa:hover .contact-info-icon { background: #25d366; color: #fff; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 380px; align-items: start; } }
.contact-form-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 2rem; box-shadow: 0 2px 12px rgba(15,23,42,0.05); }
.contact-form-title { font-size: 1.5rem; font-weight: 800; color: #0f172a; margin: 0 0 0.5rem; }
.contact-form-subtitle { font-size: 0.875rem; color: #64748b; margin: 0 0 1.75rem; }
.contact-alert { display: flex; align-items: center; gap: 0.625rem; padding: 1rem 1.25rem; border-radius: 12px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; }
.contact-alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.contact-alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .contact-form-row { grid-template-columns: 1fr; } }
.contact-form-group { margin-bottom: 1rem; }
.contact-form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: #334155; margin-bottom: 0.375rem; }
.contact-form-group .required { color: #dc2626; }
.contact-form-group input, .contact-form-group textarea { width: 100%; padding: 0.75rem 0.875rem; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 0.875rem; color: #0f172a; background: #fff; outline: none; box-sizing: border-box; font-family: inherit; }
.contact-form-group input:focus, .contact-form-group textarea:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.contact-form-group textarea { resize: vertical; min-height: 120px; }
.contact-submit-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; border-radius: 12px; border: none; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 0.9375rem; font-weight: 700; cursor: pointer; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.contact-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
.contact-sidebar-col { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 1024px) { .contact-sidebar-col { position: sticky; top: 90px; } }
.contact-sidebar-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.5rem; }
.contact-sidebar-title { font-size: 1.0625rem; font-weight: 700; color: #0f172a; margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid #eff4ff; }
.contact-detail-row { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1rem; }
.contact-detail-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #eff4ff, #f5f3ff); color: #2563eb; flex-shrink: 0; }
.contact-detail-row strong { display: block; font-size: 0.8125rem; font-weight: 700; color: #0f172a; margin-bottom: 0.25rem; }
.contact-detail-row span { display: block; font-size: 0.8125rem; color: #64748b; }
.contact-socials { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.contact-social { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 0.875rem; border-radius: 10px; background: #f1f5f9; color: #475569; font-size: 0.75rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.contact-social:hover { background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; transform: translateY(-2px); }
.contact-map-card { padding: 0; overflow: hidden; }
.contact-map-iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ==========================================================================
   CART PAGE TEMPLATE (.cct- prefix)
   ========================================================================== */
.cct-page { background: #f8fafc; min-height: 70vh; padding-bottom: 50px; }
.cct-hero { background: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 45%, #db2777 100%); color: #fff; padding: 2.5rem 0 2rem; margin-bottom: 50px; position: relative; overflow: hidden; }
.cct-hero::before { content: ""; position: absolute; top: -40%; right: -8%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.cct-hero-inner { position: relative; z-index: 1; }
.cct-breadcrumb { color: rgba(255,255,255,0.8); font-size: 0.8125rem; margin-bottom: 0.5rem; }
.cct-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.cct-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.7; }
.cct-breadcrumb .current { color: #fff; font-weight: 600; }
.cct-hero-title { font-size: 2.5rem; font-weight: 800; margin: 0; color: #ffffff !important; }
.cct-body { padding-top: 2rem; margin-bottom: 3rem; }
.cct-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .cct-layout { grid-template-columns: 1fr 400px; gap: 2rem; align-items: start; } }
.cct-items-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(15,23,42,0.05); }
.cct-items-head { display: grid; grid-template-columns: 1fr 120px 150px 120px; gap: 1rem; padding: 1rem 1.5rem; background: linear-gradient(135deg, #eff4ff, #f5f3ff); border-bottom: 1px solid #e2e8f0; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #475569; }
.cct-h-total { text-align: right; } .cct-h-qty { text-align: center; } .cct-h-price { text-align: center; }
@media (max-width: 768px) { .cct-items-head { display: none; } }
.cct-row { display: grid; grid-template-columns: 1fr 120px 150px 120px; gap: 1rem; padding: 1.25rem 1.5rem; border-bottom: 1px solid #f1f5f9; align-items: center; }
.cct-row:hover { background: #fafbff; } .cct-row:last-child { border-bottom: none; }
@media (max-width: 768px) { .cct-row { grid-template-columns: 1fr; gap: 0.75rem; } }
.cct-cell-product { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.cct-thumb { width: 80px; height: 80px; border-radius: 12px; overflow: hidden; background: #f1f5f9; flex-shrink: 0; border: 1px solid #e2e8f0; }
.cct-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cct-product-info { min-width: 0; }
.cct-product-name { font-size: 0.9375rem; font-weight: 600; color: #0f172a; margin: 0 0 0.25rem; }
.cct-product-name a { color: inherit; text-decoration: none; }
.cct-product-actions { display: flex; gap: 0.5rem; font-size: 0.75rem; }
.cct-edit-link { color: #2563eb; text-decoration: none; font-weight: 600; }
.cct-remove-link { color: #ef4444; text-decoration: none; font-weight: 600; }
.cct-cell-price { font-size: 0.875rem; color: #475569; text-align: center; }
.cct-cell-qty { display: flex; justify-content: center; }
.cct-qty-wrap { display: inline-flex; align-items: center; border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; background: #fff; }
.cct-qty-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 40px; background: #f8fafc; border: none; color: #475569; font-size: 1.125rem; font-weight: 600; cursor: pointer; }
.cct-qty-btn:hover { background: #eff4ff; color: #2563eb; }
.cct-qty-input { width: 48px; height: 40px; text-align: center; border: none; border-left: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; font-size: 0.875rem; font-weight: 600; color: #0f172a; background: #fff; -moz-appearance: textfield; }
.cct-cell-total { font-size: 0.9375rem; font-weight: 700; color: #2563eb; text-align: right; }
.cct-bottom-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cct-continue-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 12px; background: #fff; border: 1px solid #bfdbfe; color: #2563eb; font-size: 0.875rem; font-weight: 600; text-decoration: none; }
.cct-update-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 12px; border: 1px solid #e2e8f0; background: #fff; color: #475569; font-size: 0.875rem; font-weight: 600; cursor: pointer; }
.cct-summary-col { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .cct-summary-col { position: sticky; top: 90px; } }
.cct-summary-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.75rem; box-shadow: 0 4px 16px rgba(15,23,42,0.06); }
.cct-summary-title { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 1.25rem; padding-bottom: 0.875rem; border-bottom: 2px solid #eff4ff; }
.cct-sum-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.875rem; }
.cct-sum-label { color: #64748b; } .cct-sum-value { font-weight: 600; color: #0f172a; }
.cct-free-val { color: #16a34a; font-weight: 700; }
.cct-sum-divider { height: 1px; background: #f1f5f9; margin: 0.75rem 0; }
.cct-sum-total-row { padding: 1rem 0 1.25rem; }
.cct-sum-total-label { font-size: 1rem; font-weight: 700; color: #0f172a; }
.cct-sum-total-value { font-size: 1.75rem; font-weight: 800; color: #2563eb; }
.cct-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; margin-top: 0.5rem; padding: 0.9375rem 1.5rem; border-radius: 12px; border: none; background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; font-size: 0.9375rem; font-weight: 700; cursor: pointer; text-decoration: none; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.cct-checkout-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); color: #fff; }
.cct-mini-trust { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid #f1f5f9; }
.cct-mt-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #64748b; }
.cct-mt-item svg { color: #10b981; }
/* Mini trust badges in the summary card */
.cct-mini-badges {
        list-style: none;
        margin: 1.25rem 0 0;
        padding: 1rem 1.125rem;
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
        border: 1px solid #d1fae5;
        border-radius: 12px;
}
.cct-mini-badges li {
        display: flex;
        align-items: center;
        gap: 0.625rem;
        font-size: 0.8125rem;
        font-weight: 600;
        color: #0f172a;
        line-height: 1.3;
}
.cct-mb-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #ffffff;
        color: #16a34a;
        flex-shrink: 0;
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.cct-mb-text { color: #0f172a; }
/* Cart action buttons: Continue Shopping + Update Cart */
.cct-actions-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 1.25rem 1.5rem;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}
.cct-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.8125rem 1.5rem;
        border-radius: 12px;
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.15s;
        border: 1px solid transparent;
}
.cct-btn svg { flex-shrink: 0; }
.cct-btn-continue {
        background: #ffffff;
        border-color: #bfdbfe;
        color: #2563eb;
}
.cct-btn-continue:hover {
        background: #eff4ff;
        border-color: #93c5fd;
        transform: translateY(-1px);
}
.cct-btn-update {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        border-color: #1d4ed8;
        color: #ffffff;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.cct-btn-update:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}
/* Coupon card */
.cct-coupon-card {
        background: linear-gradient(135deg, #fff1f2, #ffe4e6);
        border: 1px solid #fecdd3;
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 50px;
}
.cct-coupon-head { margin-bottom: 1rem; }
.cct-coupon-title {
        font-size: 1rem;
        font-weight: 700;
        color: #7f1d1d;
        margin: 0 0 0.25rem;
}
.cct-coupon-sub {
        font-size: 0.8125rem;
        color: #b91c1c;
        margin: 0;
}
.cct-coupon-row { display: flex; gap: 0.5rem; }
.cct-coupon-input {
        flex: 1;
        min-width: 0;
        padding: 0.75rem 0.875rem;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        font-size: 0.875rem;
        color: #0f172a;
        background: #fff;
        transition: border-color 0.15s, box-shadow 0.15s;
}
.cct-coupon-input:focus {
        border-color: #dc2626;
        outline: none;
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}
.cct-coupon-btn {
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        border: none;
        background: #dc2626;
        color: #fff;
        font-size: 0.875rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.15s;
        white-space: nowrap;
}
.cct-coupon-btn:hover {
        background: #b91c1c;
        transform: translateY(-1px);
}
.cct-bottom-trust { background: #fff; border-top: 1px solid #e2e8f0; margin-top: 3rem; padding: 2.5rem 0; }
.cct-bt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .cct-bt-grid { grid-template-columns: repeat(2, 1fr); } }
.cct-bt-item { display: flex; align-items: center; gap: 0.875rem; }
.cct-bt-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #eff4ff, #f5f3ff); color: #2563eb; flex-shrink: 0; }
.cct-bt-item strong { display: block; font-size: 0.9375rem; font-weight: 700; color: #0f172a; }
.cct-bt-item span { display: block; font-size: 0.75rem; color: #64748b; }
.cct-empty-wrap { padding: 4rem 1.5rem; }
.cct-empty { text-align: center; max-width: 520px; margin: 0 auto; }
.cct-empty-icon { width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, #eff4ff, #f5f3ff); color: #2563eb; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.cct-empty-title { font-size: 1.75rem; font-weight: 800; color: #0f172a; margin: 0 0 0.75rem; }
.cct-empty-text { font-size: 0.9375rem; color: #64748b; margin: 0 0 2rem; }
.cct-empty-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2.25rem; border-radius: 9999px; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 0.9375rem; font-weight: 600; text-decoration: none; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.cct-empty-btn:hover { transform: translateY(-2px); color: #fff; }

/* ==========================================================================
   CHECKOUT PAGE TEMPLATE (.cck- prefix)
   ========================================================================== */
.cck-page { background: #f8fafc; min-height: 70vh; padding-bottom: 50px; }
.cck-hero { background: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 45%, #db2777 100%); color: #fff; padding: 2.5rem 0 2rem; margin-bottom: 50px; position: relative; overflow: hidden; }
.cck-hero-inner { position: relative; z-index: 1; }
.cck-breadcrumb { color: rgba(255,255,255,0.8); font-size: 0.8125rem; margin-bottom: 0.5rem; }
.cck-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.cck-hero-title { font-size: 2.5rem; font-weight: 800; margin: 0; color: #ffffff !important; }
.cck-body { padding-top: 2rem; padding-bottom: 3rem; }
.cck-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .cck-layout { grid-template-columns: 1fr 400px; gap: 2rem; align-items: start; } }
.cck-hidden-review { display: none !important; }
.cck-section { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(15,23,42,0.05); margin-bottom: 1.5rem; }
.cck-section-head { display: flex; align-items: center; gap: 0.75rem; padding: 1.125rem 1.5rem; background: linear-gradient(135deg, #eff4ff, #f5f3ff); border-bottom: 1px solid #e2e8f0; }
.cck-step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 0.875rem; font-weight: 700; flex-shrink: 0; }
.cck-section-title { font-size: 1.0625rem; font-weight: 700; color: #0f172a; margin: 0; }
.cck-section-body { padding: 1.5rem; }
.cck-section-body .form-row { margin-bottom: 1rem; }
.cck-section-body label { display: block; font-size: 0.8125rem; font-weight: 600; color: #334155; margin-bottom: 0.375rem; }
.cck-section-body input[type="text"], .cck-section-body input[type="email"], .cck-section-body input[type="tel"], .cck-section-body input[type="password"], .cck-section-body textarea, .cck-section-body select { width: 100%; padding: 0.6875rem 0.875rem; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 0.875rem; color: #0f172a; background: #fff; outline: none; box-sizing: border-box; }
.cck-section-body input:focus, .cck-section-body textarea:focus, .cck-section-body select:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.cck-summary-col { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .cck-summary-col { position: sticky; top: 90px; } }
.cck-summary-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.75rem; box-shadow: 0 4px 16px rgba(15,23,42,0.06); }
.cck-summary-title { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 1.25rem; padding-bottom: 0.875rem; border-bottom: 2px solid #eff4ff; }
.cck-items { display: flex; flex-direction: column; gap: 0.875rem; height: 280px; min-height: 0; overflow-y: scroll; overflow-x: hidden; padding: 0.75rem 0.5rem 0 0; scrollbar-width: thin; scrollbar-color: #2563eb #e2e8f0; overscroll-behavior: contain; }
.cck-items::-webkit-scrollbar { width: 8px; }
.cck-items::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 999px; }
.cck-items::-webkit-scrollbar-thumb { background: #c7d2fe; border-radius: 999px; }
.cck-items::-webkit-scrollbar-thumb:hover { background: #2563eb; }
.cck-item { display: flex; align-items: center; gap: 0.75rem; }
.cck-item-thumb { width: 56px; height: 56px; border-radius: 10px; background: #f1f5f9; flex-shrink: 0; position: relative; z-index: 0; }
.cck-item-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.cck-item-qty-badge { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: #2563eb; color: #fff; font-size: 0.6875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4); z-index: 10; line-height: 1; }
.cck-item-info { flex: 1; min-width: 0; }
.cck-item-name { font-size: 0.8125rem; font-weight: 600; color: #0f172a; margin: 0; }
.cck-item-price { font-size: 0.8125rem; font-weight: 700; color: #2563eb; }
.cck-divider { height: 1px; background: #f1f5f9; margin: 1rem 0; }
.cck-sum-row { display: flex; justify-content: space-between; padding: 0.375rem 0; font-size: 0.875rem; }
.cck-sum-total-row { padding: 0.75rem 0 0; }
.cck-sum-total-value { font-size: 1.5rem; font-weight: 800; color: #2563eb; }
.cck-secure { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; padding: 0.75rem 1rem; background: #ecfdf5; border-radius: 10px; font-size: 0.75rem; font-weight: 600; color: #047857; }
.cck-login-notice { background: #eff4ff; border: 1px solid #bfdbfe; border-radius: 12px; padding: 1rem 1.25rem; font-size: 0.8125rem; color: #1e40af; margin-bottom: 1.5rem; }
.cck-login-notice a { color: #2563eb; font-weight: 700; }

/* ==========================================================================
   THANK YOU PAGE (.ty- prefix)
   ========================================================================== */
.netyex-ty-page { background: #f8fafc; min-height: 70vh; padding-bottom: 50px; }
.ty-hero { background: linear-gradient(135deg, #059669 0%, #10b981 50%, #14b8a6 100%); color: #fff; padding: 3rem 0 2.5rem; margin-bottom: 50px; position: relative; overflow: hidden; }
.ty-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.ty-breadcrumb { color: rgba(255,255,255,0.8); font-size: 0.8125rem; margin-bottom: 1.5rem; }
.ty-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.ty-check-wrap { margin-bottom: 1.25rem; }
.ty-check-circle { display: inline-flex; align-items: center; justify-content: center; width: 88px; height: 88px; border-radius: 50%; background: rgba(255,255,255,0.2); color: #fff; animation: ty-check-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes ty-check-pop { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.ty-hero-title { font-size: 2.5rem; font-weight: 800; margin: 0 0 0.75rem; color: #ffffff !important; }
.ty-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.9); margin: 0 0 1rem; }
.ty-order-number { display: inline-block; padding: 0.5rem 1.25rem; border-radius: 9999px; background: rgba(255,255,255,0.2); font-size: 0.875rem; font-weight: 700; color: #fff; }
.ty-body { padding-bottom: 4rem; }
.ty-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .ty-layout { grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; } }
.ty-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(15,23,42,0.04); margin-bottom: 1.5rem; }
.ty-card-head { padding: 1.125rem 1.5rem; background: linear-gradient(135deg, #eff4ff, #f5f3ff); border-bottom: 1px solid #e2e8f0; }
.ty-card-title { font-size: 1.0625rem; font-weight: 700; color: #0f172a; margin: 0; }
.ty-card-body { padding: 1.5rem; }
.ty-summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
@media (max-width: 480px) { .ty-summary-grid { grid-template-columns: 1fr; } }
.ty-summary-item { padding: 0.875rem 1rem; background: #f8fafc; border-radius: 10px; }
.ty-summary-label { display: block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; color: #94a3b8; margin-bottom: 0.375rem; }
.ty-summary-value { display: block; font-size: 0.9375rem; font-weight: 700; color: #0f172a; }
.ty-items { display: flex; flex-direction: column; gap: 0.75rem; }
.ty-item { display: flex; align-items: center; gap: 0.875rem; padding: 0.75rem; background: #f8fafc; border-radius: 12px; }
.ty-item-thumb { position: relative; width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.ty-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ty-item-qty { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: #2563eb; color: #fff; font-size: 0.6875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.ty-item-name { font-size: 0.875rem; font-weight: 600; color: #0f172a; margin: 0; }
.ty-timeline { display: flex; flex-direction: column; position: relative; }
.ty-timeline-step { display: flex; align-items: flex-start; gap: 1rem; padding-bottom: 1.5rem; position: relative; }
.ty-timeline-step:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 48px; bottom: 0; width: 2px; background: #e2e8f0; }
.ty-timeline-step.done:not(:last-child)::before { background: #10b981; }
.ty-timeline-step:last-child { padding-bottom: 0; }
.ty-timeline-marker { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #f1f5f9; color: #94a3b8; flex-shrink: 0; z-index: 1; }
.ty-timeline-step.done .ty-timeline-marker { background: #10b981; color: #fff; }
.ty-timeline-step.current .ty-timeline-marker { background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; animation: ty-pulse 2s ease-in-out infinite; }
@keyframes ty-pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(37,99,235,0.15); } 50% { box-shadow: 0 0 0 8px rgba(37,99,235,0.08); } }
.ty-timeline-label { display: block; font-size: 0.9375rem; font-weight: 700; color: #0f172a; }
.ty-sidebar-col { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 1024px) { .ty-sidebar-col { position: sticky; top: 90px; } }
.ty-next-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.ty-next-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.ty-next-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.ty-next-list strong { display: block; font-size: 0.875rem; font-weight: 700; color: #0f172a; }
.ty-next-list p { font-size: 0.75rem; color: #64748b; margin: 0; }
.ty-cta-actions { display: flex; flex-direction: column; gap: 0.625rem; }
.ty-cta-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.5rem; border-radius: 12px; font-size: 0.9375rem; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.ty-cta-btn-primary { background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.ty-cta-btn-wa { background: #25d366; color: #fff; }
.ty-cta-btn:hover { transform: translateY(-1px); color: #fff; }

/* ==========================================================================
   LOGIN / REGISTER PAGE (.lr- prefix)
   ========================================================================== */
.netyex-lr-page { background: #f8fafc; min-height: 70vh; padding-bottom: 50px; }
.lr-hero { background: linear-gradient(135deg, #1e3a8a 0%, #4f46e5 45%, #db2777 100%); color: #fff; padding: 3rem 0 2.5rem; margin-bottom: 50px; position: relative; overflow: hidden; }
.lr-hero::before { content: ""; position: absolute; top: -40%; right: -8%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.lr-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.lr-breadcrumb { color: rgba(255,255,255,0.8); font-size: 0.8125rem; margin-bottom: 1rem; }
.lr-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.lr-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.7; }
.lr-hero-title { font-size: 2.5rem; font-weight: 800; margin: 0 0 0.75rem; color: #ffffff !important; }
.lr-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.85); margin: 0; }
.lr-body { padding-bottom: 4rem; }
.lr-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .lr-layout { grid-template-columns: 1fr 360px; align-items: start; } }
.lr-form-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(15,23,42,0.06); }
.lr-tabs { display: flex; border-bottom: 1px solid #e2e8f0; }
.lr-tab { display: flex; align-items: center; gap: 0.5rem; flex: 1; justify-content: center; padding: 1.125rem 1rem; border: none; background: transparent; color: #64748b; font-size: 0.9375rem; font-weight: 600; cursor: pointer; transition: all 0.15s; border-bottom: 3px solid transparent; }
.lr-tab svg { color: #94a3b8; transition: color 0.15s; }
.lr-tab:hover { color: #2563eb; } .lr-tab:hover svg { color: #2563eb; }
.lr-tab.active { color: #2563eb; border-bottom-color: #2563eb; } .lr-tab.active svg { color: #2563eb; }
.lr-panel { display: none; padding: 2rem; }
.lr-panel.active { display: block; }
.lr-form-group { margin-bottom: 1.25rem; }
.lr-form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: #334155; margin-bottom: 0.375rem; }
.lr-form-group .required { color: #dc2626; }
.lr-form-group input { width: 100%; padding: 0.75rem 0.875rem; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 0.875rem; color: #0f172a; background: #fff; outline: none; box-sizing: border-box; transition: all 0.15s; }
.lr-form-group input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.lr-form-row-checkbox { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
.lr-form-row-checkbox label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: #64748b; cursor: pointer; }
.lr-form-row-checkbox input[type="checkbox"] { width: 16px; height: 16px; accent-color: #2563eb; }
.lr-lost-password { font-size: 0.8125rem; color: #2563eb; text-decoration: none; font-weight: 600; }
.lr-lost-password:hover { text-decoration: underline; }
.lr-submit-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.875rem 1.5rem; border-radius: 12px; border: none; background: linear-gradient(135deg, #2563eb, #7c3aed); color: #fff; font-size: 0.9375rem; font-weight: 700; cursor: pointer; box-shadow: 0 4px 14px rgba(37,99,235,0.3); transition: all 0.2s; }
.lr-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
.lr-register-cta { text-align: center; padding: 1rem 0; }
.lr-register-cta .lr-trust-icon { margin: 0 auto 1rem; }
.lr-register-cta h3 { font-size: 1.125rem; font-weight: 700; color: #0f172a; margin: 0 0 0.5rem; }
.lr-register-cta p { font-size: 0.875rem; color: #475569; line-height: 1.6; margin: 0 0 1.5rem; }
.lr-register-link { text-decoration: none; }
.lr-sidebar-col { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 1024px) { .lr-sidebar-col { position: sticky; top: 90px; } }
.lr-benefits-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.75rem; }
.lr-benefits-title { font-size: 1.125rem; font-weight: 700; color: #0f172a; margin: 0 0 1.25rem; }
.lr-benefits-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.125rem; }
.lr-benefits-list li { display: flex; align-items: center; gap: 0.75rem; }
.lr-benefit-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; flex-shrink: 0; }
.lr-benefits-list strong { display: block; font-size: 0.875rem; font-weight: 700; color: #0f172a; }
.lr-benefits-list span { display: block; font-size: 0.75rem; color: #64748b; margin-top: 0.125rem; }
.lr-trust-card { background: linear-gradient(135deg, #ecfdf5, #d1fae5); border: 1px solid #a7f3d0; border-radius: 16px; padding: 1.5rem; text-align: center; }
.lr-trust-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; background: rgba(16,185,129,0.15); color: #059669; margin: 0 auto 0.75rem; }
.lr-trust-card strong { display: block; font-size: 0.9375rem; font-weight: 700; color: #065f46; }
.lr-trust-card span { display: block; font-size: 0.75rem; color: #047857; margin-top: 0.25rem; }

/* ==========================================================================
   DISABLED VARIATION BUTTONS
   ========================================================================== */
.size-btn.disabled, .color-swatch.disabled {
        opacity: 0.35;
        cursor: not-allowed;
        pointer-events: none;
        position: relative;
}
.size-btn.disabled::after {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(255,255,255,0.6) 3px, rgba(255,255,255,0.6) 4px);
        border-radius: inherit;
}
.color-swatch.disabled::after {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(220,38,38,0.55) 3px, rgba(220,38,38,0.55) 5px);
        border-radius: inherit;
}
.color-swatch { position: relative; overflow: hidden; }

/* ==========================================================================
   VARIATION NOT AVAILABLE MESSAGE
   ========================================================================== */
.netyex-variation-unavailable {
        display: none;
        align-items: center;
        gap: 0.625rem;
        padding: 0.875rem 1rem;
        margin-top: 0.75rem;
        background: #fef2f2;
        border: 1px solid #fecaca;
        border-radius: 0.625rem;
        color: #991b1b;
        font-size: 0.8125rem;
        line-height: 1.5;
}
.netyex-variation-unavailable svg { flex-shrink: 0; color: #dc2626; }
.netyex-variation-unavailable strong { font-weight: 700; }

/* ==========================================================================
   SHOP PAGE — Product Card Color Swatches
   ========================================================================== */
.product-card-colors {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
}
.product-card-swatch {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 1.5px solid #e2e8f0;
        display: inline-block;
        transition: transform 0.15s;
}
.product-card-swatch:hover { transform: scale(1.3); }
.product-card-color-more {
        font-size: 0.6875rem;
        font-weight: 600;
        color: #64748b;
        margin-left: 0.125rem;
}

/* ==========================================================================
   COLOR SWATCH TOOLTIP (Variable Products)
   ========================================================================== */
.color-swatch .swatch-tooltip {
        display: none;
        position: absolute;
        bottom: calc(100% + 6px);
        left: 50%;
        transform: translateX(-50%);
        background: #0f172a;
        color: #ffffff;
        font-size: 0.6875rem;
        font-weight: 500;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        white-space: nowrap;
        pointer-events: none;
        z-index: 10;
}
.color-swatch .swatch-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 4px solid transparent;
        border-top-color: #0f172a;
}
.color-swatch:hover .swatch-tooltip { display: block; }
/* ==========================================================================
   SIZE-FIRST LOCKED STATE (Variable Products � material/color locked until
   a size is selected). Visible but not selectable; click shows a tooltip.
   ========================================================================== */
.size-btn.locked, .color-swatch.locked {
        opacity: 0.45;
        filter: grayscale(0.6);
        cursor: pointer;
        position: relative;
}
.size-btn.locked::after {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(255,255,255,0.55) 3px, rgba(255,255,255,0.55) 4px);
        border-radius: inherit;
        pointer-events: none;
}
.color-swatch.locked::after {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(220,38,38,0.45) 3px, rgba(220,38,38,0.45) 5px);
        border-radius: inherit;
        pointer-events: none;
}

/* ==========================================================================
   LOCKED-OPTION TOOLTIP ("select the size first")
   ========================================================================== */
.netyex-var-tooltip {
        background: #0f172a;
        color: #ffffff;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        white-space: nowrap;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.28);
        transform: translateX(-50%) translateY(-4px);
        transition: opacity 0.15s ease, transform 0.15s ease;
}
.netyex-var-tooltip::after {
        content: '';
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 10px;
        height: 10px;
        background: #0f172a;
        border-radius: 2px;
}

/* ==========================================================================
   PROFESSIONAL VARIABLE ADD-TO-CART ROW (matches simple-product style)
   ========================================================================== */
.product-summary .variations_button {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.625rem;
        margin: 0;
}
.product-summary .variations_button .quantity {
        display: inline-flex;
}
.product-summary .variations_button .quantity-selector {
        display: inline-flex;
}
.product-summary .variations_button .single_add_to_cart_button {
        flex: 1;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
}
.product-summary .variations_button .single_add_to_cart_button .netyex-atc-icon {
        flex-shrink: 0;
}
