/**
 * WooCommerce Styles - RankExpert Design System
 * Digita Theme Style - Pixel Perfect Clone
 */

/* ========================================
 * DIGITA DESIGN SYSTEM VARIABLES
 * ======================================== */

:root {
    /* Digita Colors */
    --digita-primary: #E07B4C;
    --digita-primary-hover: #C96A3E;
    --digita-background: #FFFFFF;
    --digita-background-alt: #F5F5F5;
    --digita-foreground: #262626;
    --digita-foreground-muted: #808080;
    --digita-card: #FFFFFF;
    --digita-border: #E5E5E5;
    --digita-star: #F59E0B;
    --digita-sale: #EF4444;
    
    /* Legacy colors for compatibility */
    --wc-background: rgb(250 250 250);
    --wc-foreground: rgb(38 38 38);
    --wc-card: rgb(255 255 255);
    --wc-muted: rgb(237 237 237);
    --wc-muted-foreground: rgb(128 128 128);
    --wc-accent: #E07B4C;
    --wc-accent-hover: #C96A3E;
    --wc-border: rgb(224 224 224);
    --wc-error: rgb(239 68 68);
    --wc-success: rgb(72 187 120);
    
    /* Typography */
    --wc-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --wc-font-weight-normal: 400;
    --wc-font-weight-medium: 500;
    --wc-font-weight-semibold: 600;
    --wc-font-weight-bold: 700;
    
    /* Spacing */
    --wc-spacing-xs: 8px;
    --wc-spacing-sm: 16px;
    --wc-spacing-md: 24px;
    --wc-spacing-lg: 48px;
    --wc-spacing-xl: 80px;
    
    /* Container */
    --wc-container-max: 1280px;
    
    /* Border Radius */
    --wc-radius: 8px;
    
    /* Shadows */
    --wc-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --wc-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ========================================
 * GLOBAL CONTAINER
 * ======================================== */

.container {
    width: 100%;
    max-width: var(--wc-container-max, 1280px);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* ========================================
 * DIGITA SHOP PAGE STYLES
 * ======================================== */

.digita-shop-page {
    background: var(--digita-background);
    font-family: var(--wc-font);
}

/* Page Header Banner */
.digita-page-header {
    background: var(--digita-background-alt);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

/* Page Header with Background Image Overlay */
.digita-page-header.has-overlay,
.product-breadcrumb-header.has-overlay {
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.digita-page-header.has-overlay .container,
.product-breadcrumb-header.has-overlay .container {
    position: relative;
    z-index: 2;
}

.digita-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--digita-foreground-muted);
}

.digita-breadcrumb a {
    color: var(--digita-foreground-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.digita-breadcrumb .separator {
    color: var(--digita-foreground-muted);
}

.digita-breadcrumb .current {
    color: var(--digita-foreground);
}

.digita-page-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--digita-foreground);
    margin: 0;
    letter-spacing: -0.02em;
}

/* Shop Content Layout */
.digita-shop-content {
    padding: 40px 0 80px;
}

.digita-shop-layout {
    display: block;
}

/* Sidebar Styles */
.digita-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--digita-border);
}

.sidebar-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--digita-foreground);
    margin: 0;
}

.widget-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--digita-foreground);
    transition: color 0.2s;
}

.widget-toggle:hover {
    color: var(--digita-primary);
}

/* Category List */
.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-item {
    margin-bottom: 12px;
}

.category-item:last-child {
    margin-bottom: 0;
}

.category-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--digita-foreground-muted);
}

.category-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.category-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid var(--digita-border);
    border-radius: 3px;
    background: var(--digita-background);
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.category-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--digita-primary);
    border-color: var(--digita-primary);
}

.category-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.category-checkbox .category-name {
    flex: 1;
    color: var(--digita-foreground-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.category-checkbox:hover .category-name,
.category-checkbox a.category-name:hover {
    color: var(--digita-foreground);
}

.category-checkbox .category-count {
    color: var(--digita-foreground-muted);
    font-size: 13px;
}

/* Highlight List */
.highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.highlight-item {
    margin-bottom: 12px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item a {
    font-size: 14px;
    color: var(--digita-foreground-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.highlight-item a:hover,
.highlight-item.active a {
    color: var(--digita-primary);
}

/* Color Swatches */
.color-swatches {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid var(--digita-border);
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.color-swatch.active {
    border-color: var(--digita-primary);
    box-shadow: 0 0 0 2px var(--digita-primary);
}

/* Toolbar */
.digita-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.toolbar-left .results-count {
    font-size: 14px;
    color: var(--digita-foreground-muted);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sorting-wrapper .woocommerce-ordering {
    margin: 0;
}

.sorting-wrapper select,
.digita-shop-page .woocommerce-ordering select {
    padding: 10px 40px 10px 16px;
    border: 1px solid var(--digita-border);
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--wc-font);
    color: var(--digita-foreground);
    background: var(--digita-background) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23808080' d='M6 8L2 4h8z'/%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none;
    cursor: pointer;
    min-width: 180px;
}

.sorting-wrapper select:focus,
.digita-shop-page .woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--digita-primary);
}

.view-toggle {
    display: flex;
    gap: 4px;
    background: var(--digita-background-alt);
    padding: 4px;
    border-radius: 4px;
}

.view-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--digita-foreground-muted);
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    color: var(--digita-foreground);
}

.view-btn.active {
    background: var(--digita-primary);
    color: white;
}

/* Products Grid - Digita Style */
.digita-products-grid ul.products,
.digita-shop-page ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Product Card - Digita Style */
.digita-shop-page li.product,
.digita-shop-page li.product-card-modern {
    background: var(--digita-card);
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.digita-shop-page li.product:hover,
.digita-shop-page li.product-card-modern:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.digita-shop-page .product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.digita-shop-page .product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--digita-background-alt);
    border-radius: 0;
    margin-bottom: 16px;
}

.digita-shop-page .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.digita-shop-page li.product:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Sale Badge - Digita Style */
.digita-shop-page .sale-badge,
.digita-shop-page .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    background: var(--digita-sale);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: none;
    letter-spacing: 0;
    z-index: 10;
}

/* Product Info - Digita Style */
.digita-shop-page .product-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.digita-shop-page .product-category {
    display: none;
}

.digita-shop-page .product-title,
.digita-shop-page .woocommerce-loop-product__title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 4px 0;
    color: var(--digita-foreground);
}

.digita-shop-page .product-title a,
.digita-shop-page .woocommerce-loop-product__title a {
    color: var(--digita-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.digita-shop-page .product-title a:hover {
    color: var(--digita-primary);
}

/* Star Rating - Digita Style */
.digita-shop-page .product-rating,
.digita-shop-page .star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 4px;
}

.digita-shop-page .star-rating .star,
.digita-shop-page .star-rating .stars span {
    color: var(--digita-star);
    font-size: 14px;
}

.digita-shop-page .star-rating .star:not(.filled) {
    color: #D1D5DB;
}

.digita-shop-page .rating-count {
    display: none;
}

/* Price - Digita Style */
.digita-shop-page .product-price-wrapper .price,
.digita-shop-page li.product .price {
    font-size: 15px;
    font-weight: 600;
    color: var(--digita-primary);
    line-height: 1;
}

.digita-shop-page .product-price-wrapper .price del,
.digita-shop-page li.product .price del {
    font-size: 14px;
    font-weight: 400;
    color: var(--digita-foreground-muted);
    margin-right: 8px;
    opacity: 0.7;
}

/* Hide Add to Cart button on grid */
.digita-shop-page .product-action,
.digita-shop-page .product-quick-actions {
    display: none;
}

/* No Products */
.digita-no-products {
    text-align: center;
    padding: 80px 20px;
    color: var(--digita-foreground-muted);
}

.digita-no-products .no-products-icon {
    margin-bottom: 24px;
    color: var(--digita-border);
}

.digita-no-products .no-products-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--digita-foreground);
    margin: 0 0 12px 0;
}

.digita-no-products .no-products-text {
    font-size: 16px;
    color: var(--digita-foreground-muted);
    margin: 0 0 24px 0;
}

.digita-no-products .btn-browse-all {
    display: inline-block;
    padding: 12px 24px;
    background: var(--digita-primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}

.digita-no-products .btn-browse-all:hover {
    background: var(--digita-primary-hover);
    color: white;
}

/* Pagination - Digita Style */
.digita-pagination {
    margin-top: 48px;
}

.digita-pagination .woocommerce-pagination {
    margin: 0;
    text-align: left;
}

.digita-pagination .woocommerce-pagination ul {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    overflow: visible;
    background: none;
}

.digita-pagination .woocommerce-pagination ul li {
    margin: 0;
}

.digita-pagination .woocommerce-pagination ul li a,
.digita-pagination .woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-weight: 500;
    color: var(--digita-foreground);
    text-decoration: none;
    border: 1px solid var(--digita-border);
    border-radius: 4px;
    background: var(--digita-background);
    transition: all 0.2s;
}

.digita-pagination .woocommerce-pagination ul li a:hover,
.digita-pagination .woocommerce-pagination ul li span.current {
    background: var(--digita-primary);
    border-color: var(--digita-primary);
    color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .digita-products-grid ul.products,
    .digita-shop-page ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .digita-shop-layout {
        grid-template-columns: 240px 1fr;
        gap: 30px;
    }
    
    .digita-products-grid ul.products,
    .digita-shop-page ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .digita-shop-layout {
        grid-template-columns: 1fr;
    }
    
    .digita-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--digita-border);
        margin-bottom: 32px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .digita-page-title {
        font-size: 32px;
    }
    
    .digita-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .digita-sidebar {
        grid-template-columns: 1fr;
    }
    
    .digita-products-grid ul.products,
    .digita-shop-page ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .color-swatches {
        grid-template-columns: repeat(7, 1fr);
    }
}

/* ========================================
 * GLOBAL RESETS - SCOPED TO WOOCOMMERCE
 * ======================================== */

.woocommerce,
.woocommerce-page,
.woocommerce-main,
.site-main.woocommerce-main {
    font-family: var(--wc-font);
    color: var(--wc-foreground);
    background: var(--wc-background);
}

.woocommerce *,
.woocommerce-page *,
.woocommerce-main * {
    box-sizing: border-box;
}

/* ========================================
 * BUTTONS - SCOPED TO WOOCOMMERCE ONLY
 * ======================================== */

.woocommerce .products .button,
.woocommerce .product .button,
.woocommerce .cart .button,
.woocommerce .checkout .button,
.woocommerce .myaccount .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce-main .button,
.woocommerce-main button.button,
.woocommerce-main a.button,
.woocommerce-main input.button,
.site-main.woocommerce-main .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--wc-font);
    font-size: 16px;
    font-weight: var(--wc-font-weight-semibold);
    line-height: 1.5;
    color: var(--wc-card);
    background: var(--wc-accent);
    border: none;
    border-radius: var(--wc-radius);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.woocommerce .products .button:hover,
.woocommerce .product .button:hover,
.woocommerce .cart .button:hover,
.woocommerce .checkout .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce-main .button:hover {
    background: var(--wc-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--wc-shadow);
    color: var(--wc-card);
}

.woocommerce .button.alt,
.woocommerce .button.single_add_to_cart_button,
.woocommerce .checkout-button,
.woocommerce #place_order {
    background: var(--wc-accent);
    padding: 16px 32px;
    font-size: 18px;
    font-weight: var(--wc-font-weight-bold);
}

/* ========================================
 * SHOP ARCHIVE PAGE
 * ======================================== */

.shop-page-modern {
    padding: var(--wc-spacing-xl) 0;
    background: var(--wc-background);
}

.shop-hero-modern {
    background: var(--wc-card);
    padding: var(--wc-spacing-xl) 0;
    border-bottom: 1px solid var(--wc-border);
    margin-bottom: var(--wc-spacing-lg);
}

.shop-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.shop-hero-title {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: var(--wc-font-weight-bold);
    line-height: 1.2;
    color: var(--wc-foreground);
    margin: 0 0 var(--wc-spacing-sm) 0;
    letter-spacing: -0.02em;
}

.shop-hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--wc-muted-foreground);
    margin: 0;
    font-weight: var(--wc-font-weight-normal);
}

.shop-content-section {
    padding: var(--wc-spacing-lg) 0;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--wc-spacing-md);
    background: var(--wc-card);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    margin-bottom: var(--wc-spacing-lg);
    flex-wrap: wrap;
    gap: var(--wc-spacing-md);
}

.toolbar-left .result-count {
    font-size: 14px;
    color: var(--wc-muted-foreground);
    font-weight: var(--wc-font-weight-medium);
}

.toolbar-left .result-count strong {
    color: var(--wc-foreground);
    font-weight: var(--wc-font-weight-semibold);
}

.woocommerce-ordering select {
    padding: 10px 16px;
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    font-size: 14px;
    font-weight: var(--wc-font-weight-medium);
    font-family: var(--wc-font);
    color: var(--wc-foreground);
    background: var(--wc-card);
    cursor: pointer;
    min-width: 200px;
    transition: all 0.2s;
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--wc-accent);
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

/* Products Grid */
.woocommerce ul.products,
.woocommerce-main ul.products {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--wc-spacing-lg);
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .woocommerce ul.products,
    .woocommerce-main ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .woocommerce ul.products,
    .woocommerce-main ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .woocommerce ul.products,
    .woocommerce-main ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.woocommerce li.product,
li.product-card-modern {
    background: var(--wc-card);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.woocommerce li.product:hover,
li.product-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--wc-shadow-lg);
    border-color: var(--wc-accent);
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--wc-muted);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.woocommerce li.product:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: var(--wc-spacing-sm);
    right: var(--wc-spacing-sm);
    background: var(--wc-error);
    color: var(--wc-card);
    font-size: 11px;
    font-weight: var(--wc-font-weight-bold);
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-info {
    padding: var(--wc-spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--wc-spacing-sm);
    flex: 1;
}

.product-category {
    font-size: 11px;
    font-weight: var(--wc-font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wc-accent);
    margin-bottom: 4px;
}

.product-title {
    font-size: 18px;
    font-weight: var(--wc-font-weight-semibold);
    line-height: 1.4;
    margin: 0;
}

.product-title a {
    color: var(--wc-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.product-title a:hover {
    color: var(--wc-accent);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.star-rating {
    display: inline-flex;
    gap: 2px;
}

.star-rating .star {
    color: #FCD34D;
    font-size: 14px;
}

.rating-count {
    color: var(--wc-muted-foreground);
    font-size: 13px;
}

.product-price-wrapper .price,
.woocommerce li.product .price {
    font-size: 20px;
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-accent);
    line-height: 1;
}

.product-price-wrapper .price del,
.woocommerce li.product .price del {
    font-size: 16px;
    font-weight: var(--wc-font-weight-normal);
    color: var(--wc-muted-foreground);
    margin-right: var(--wc-spacing-xs);
    opacity: 0.6;
}

.product-action {
    margin-top: var(--wc-spacing-sm);
}

.add-to-cart-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
}

/* No Products */
.no-products-found {
    text-align: center;
    padding: var(--wc-spacing-xl) 0;
}

.no-products-title {
    font-size: 28px;
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-foreground);
    margin: 0 0 var(--wc-spacing-sm) 0;
}

.no-products-text {
    font-size: 16px;
    color: var(--wc-muted-foreground);
    margin: 0 0 var(--wc-spacing-lg) 0;
}

/* Pagination */
.woocommerce-pagination {
    margin-top: var(--wc-spacing-xl);
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
    gap: var(--wc-spacing-xs);
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    overflow: hidden;
    background: var(--wc-card);
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: block;
    padding: 10px 16px;
    font-weight: var(--wc-font-weight-semibold);
    color: var(--wc-foreground);
    text-decoration: none;
    border-right: 1px solid var(--wc-border);
    transition: all 0.2s;
}

.woocommerce-pagination ul li:last-child a,
.woocommerce-pagination ul li:last-child span {
    border-right: none;
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    background: var(--wc-accent);
    color: var(--wc-card);
}

/* ========================================
 * SINGLE PRODUCT PAGE
 * ======================================== */

.single-product-modern {
    background: var(--wc-background);
}

.product-hero-section {
    padding: var(--wc-spacing-xl) 0;
    background: var(--wc-card);
    border-bottom: 1px solid var(--wc-border);
}

.product-hero-grid {
    display: grid;
    gap: var(--wc-spacing-lg);
    align-items: start;
}

@media (min-width: 1024px) {
    .product-hero-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Product Images */
.product-images-column {
    position: sticky;
    top: 100px;
}

.product-images-column .woocommerce-product-gallery {
    background: var(--wc-muted);
    border-radius: var(--wc-radius);
    overflow: hidden;
}

.product-images-column img {
    width: 100%;
    height: auto;
    display: block;
}

.sale-badge-large {
    position: absolute;
    top: var(--wc-spacing-md);
    right: var(--wc-spacing-md);
    background: var(--wc-error);
    color: var(--wc-card);
    font-size: 14px;
    font-weight: var(--wc-font-weight-bold);
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Product Info */
.product-info-column {
    display: flex;
    flex-direction: column;
    gap: var(--wc-spacing-md);
}

.product-info-column .woocommerce-breadcrumb {
    font-size: 14px;
    color: var(--wc-muted-foreground);
    margin-bottom: var(--wc-spacing-sm);
}

.product-info-column .woocommerce-breadcrumb a {
    color: var(--wc-muted-foreground);
    text-decoration: none;
}

.product-info-column .woocommerce-breadcrumb a:hover {
    color: var(--wc-accent);
}

.product-info-column .product_title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: var(--wc-font-weight-bold);
    line-height: 1.2;
    color: var(--wc-foreground);
    margin: 0;
    letter-spacing: -0.02em;
}

.product-info-column .woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: var(--wc-spacing-sm);
    font-size: 16px;
}

.product-info-column .price {
    font-size: 36px;
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-accent);
    line-height: 1;
}

.product-info-column .price del {
    font-size: 28px;
    font-weight: var(--wc-font-weight-normal);
    color: var(--wc-muted-foreground);
    margin-right: var(--wc-spacing-sm);
    opacity: 0.6;
}

.product-info-column .woocommerce-product-details__short-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--wc-muted-foreground);
    font-weight: var(--wc-font-weight-normal);
}

.product-cart-form {
    padding: var(--wc-spacing-md);
    background: var(--wc-muted);
    border-radius: var(--wc-radius);
    border: 1px solid var(--wc-border);
}

.product-cart-form .quantity {
    margin-bottom: var(--wc-spacing-md);
}

.product-cart-form .quantity input.qty {
    width: 100px;
    padding: 12px;
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    font-size: 16px;
    font-weight: var(--wc-font-weight-semibold);
    text-align: center;
    font-family: var(--wc-font);
}

.product-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--wc-spacing-md);
    padding-top: var(--wc-spacing-md);
    border-top: 1px solid var(--wc-border);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--wc-muted-foreground);
    font-weight: var(--wc-font-weight-medium);
}

.trust-badge-item svg {
    color: var(--wc-accent);
    flex-shrink: 0;
}

.product-info-column .product_meta {
    padding-top: var(--wc-spacing-md);
    border-top: 1px solid var(--wc-border);
    font-size: 14px;
    color: var(--wc-muted-foreground);
}

.product-info-column .product_meta a {
    color: var(--wc-accent);
    text-decoration: none;
    font-weight: var(--wc-font-weight-medium);
}

.product-info-column .product_meta a:hover {
    text-decoration: underline;
}

/* Product Details Tabs */
.product-details-section {
    padding: var(--wc-spacing-xl) 0;
    background: var(--wc-background);
}

.woocommerce-tabs {
    background: var(--wc-card);
    border-radius: var(--wc-radius);
    border: 1px solid var(--wc-border);
    overflow: hidden;
    box-shadow: var(--wc-shadow);
}

.woocommerce-tabs ul.tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid var(--wc-border);
    background: var(--wc-muted);
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: var(--wc-spacing-md) var(--wc-spacing-lg);
    font-size: 16px;
    font-weight: var(--wc-font-weight-semibold);
    color: var(--wc-muted-foreground);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: var(--wc-accent);
    border-bottom-color: var(--wc-accent);
}

.woocommerce-tabs .panel {
    padding: var(--wc-spacing-lg);
    font-size: 16px;
    line-height: 1.7;
    color: var(--wc-muted-foreground);
}

.woocommerce-tabs .panel h2 {
    font-size: 24px;
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-foreground);
    margin: 0 0 var(--wc-spacing-md) 0;
}

/* ========================================
 * CART PAGE
 * ======================================== */

.cart-page-modern {
    background: var(--wc-background);
    padding: var(--wc-spacing-xl) 0;
}

.cart-page-header {
    text-align: center;
    margin-bottom: var(--wc-spacing-lg);
    padding-bottom: var(--wc-spacing-md);
    border-bottom: 1px solid var(--wc-border);
}

.cart-page-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-foreground);
    margin: 0;
}

.cart-layout-grid {
    display: grid;
    gap: var(--wc-spacing-lg);
}

@media (min-width: 1024px) {
    .cart-layout-grid {
        grid-template-columns: 1fr 400px;
    }
}

.cart-table-wrapper {
    background: var(--wc-card);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    overflow: hidden;
    margin-bottom: var(--wc-spacing-md);
}

.woocommerce table.cart {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.woocommerce table.cart thead {
    background: var(--wc-muted);
}

.woocommerce table.cart th {
    padding: var(--wc-spacing-md);
    font-size: 12px;
    font-weight: var(--wc-font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wc-muted-foreground);
    text-align: left;
    border-bottom: 1px solid var(--wc-border);
}

.woocommerce table.cart td {
    padding: var(--wc-spacing-md);
    border-bottom: 1px solid var(--wc-border);
    vertical-align: middle;
}

.woocommerce table.cart .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--wc-radius);
}

.woocommerce table.cart .product-name {
    font-weight: var(--wc-font-weight-semibold);
    color: var(--wc-foreground);
}

.woocommerce table.cart .product-name a {
    color: inherit;
    text-decoration: none;
}

.woocommerce table.cart .product-name a:hover {
    color: var(--wc-accent);
}

.woocommerce table.cart .product-price,
.woocommerce table.cart .product-subtotal {
    font-weight: var(--wc-font-weight-semibold);
    color: var(--wc-foreground);
}

.woocommerce table.cart .product-subtotal {
    font-size: 18px;
    color: var(--wc-accent);
}

.cart-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--wc-spacing-md);
    background: var(--wc-muted);
    border-radius: var(--wc-radius);
    gap: var(--wc-spacing-md);
    flex-wrap: wrap;
}

.coupon-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    font-size: 14px;
    font-family: var(--wc-font);
    min-width: 200px;
}

.cart-totals-card {
    background: var(--wc-card);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    padding: var(--wc-spacing-lg);
    position: sticky;
    top: 100px;
    box-shadow: var(--wc-shadow);
}

.totals-card-title {
    font-size: 20px;
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-foreground);
    margin: 0 0 var(--wc-spacing-md) 0;
    padding-bottom: var(--wc-spacing-md);
    border-bottom: 1px solid var(--wc-border);
}

.cart_totals table {
    width: 100%;
    border: none;
}

.cart_totals th,
.cart_totals td {
    padding: var(--wc-spacing-sm) 0;
    border: none;
    font-size: 16px;
}

.cart_totals th {
    text-align: left;
    font-weight: var(--wc-font-weight-semibold);
    color: var(--wc-foreground);
}

.cart_totals td {
    text-align: right;
    font-weight: var(--wc-font-weight-semibold);
    color: var(--wc-muted-foreground);
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 24px;
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-accent);
    padding-top: var(--wc-spacing-md);
    border-top: 2px solid var(--wc-border);
}

.wc-proceed-to-checkout .checkout-button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: var(--wc-font-weight-bold);
    margin-top: var(--wc-spacing-md);
}

/* ========================================
 * CHECKOUT PAGE
 * ======================================== */

.woocommerce-checkout {
    background: var(--wc-background);
    padding: var(--wc-spacing-xl) 0;
}

.checkout-header-modern {
    text-align: center;
    margin-bottom: var(--wc-spacing-lg);
    padding-bottom: var(--wc-spacing-md);
    border-bottom: 1px solid var(--wc-border);
}

.checkout-layout-modern {
    display: grid;
    gap: var(--wc-spacing-lg);
}

@media (min-width: 1024px) {
    .checkout-layout-modern {
        grid-template-columns: 1fr 400px;
    }
}

.checkout-section-modern {
    background: var(--wc-card);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    padding: var(--wc-spacing-lg);
    box-shadow: var(--wc-shadow);
}

.section-title-modern {
    font-size: 20px;
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-foreground);
    margin: 0 0 var(--wc-spacing-md) 0;
    padding-bottom: var(--wc-spacing-md);
    border-bottom: 1px solid var(--wc-border);
}

.checkout-section-modern .form-row {
    margin-bottom: var(--wc-spacing-md);
}

.checkout-section-modern label {
    display: block;
    font-size: 14px;
    font-weight: var(--wc-font-weight-semibold);
    color: var(--wc-foreground);
    margin-bottom: 6px;
}

.checkout-section-modern input[type="text"],
.checkout-section-modern input[type="email"],
.checkout-section-modern input[type="tel"],
.checkout-section-modern select,
.checkout-section-modern textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    font-size: 16px;
    font-family: var(--wc-font);
    color: var(--wc-foreground);
    background: var(--wc-card);
    transition: all 0.2s;
}

.checkout-section-modern input:focus,
.checkout-section-modern select:focus,
.checkout-section-modern textarea:focus {
    outline: none;
    border-color: var(--wc-accent);
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.order-review-card-modern {
    background: var(--wc-card);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    padding: var(--wc-spacing-lg);
    position: sticky;
    top: 100px;
    box-shadow: var(--wc-shadow);
}

#order_review table {
    width: 100%;
    border: none;
}

#order_review th,
#order_review td {
    padding: var(--wc-spacing-sm) 0;
    border: none;
    font-size: 14px;
}

#order_review th {
    text-align: left;
    font-weight: var(--wc-font-weight-semibold);
    color: var(--wc-foreground);
}

#order_review td {
    text-align: right;
    font-weight: var(--wc-font-weight-semibold);
    color: var(--wc-muted-foreground);
}

#order_review .order-total th,
#order_review .order-total td {
    font-size: 20px;
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-accent);
    padding-top: var(--wc-spacing-md);
    border-top: 1px solid var(--wc-border);
}

#payment #place_order {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: var(--wc-font-weight-bold);
    margin-top: var(--wc-spacing-md);
}

/* ========================================
 * MY ACCOUNT PAGE
 * ======================================== */

.woocommerce-account {
    background: var(--wc-background);
    padding: var(--wc-spacing-xl) 0;
}

.account-header-modern {
    text-align: center;
    margin-bottom: var(--wc-spacing-lg);
    padding-bottom: var(--wc-spacing-md);
    border-bottom: 1px solid var(--wc-border);
}

.account-title-modern {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-foreground);
    margin: 0;
}

.account-content-modern {
    display: grid;
    gap: var(--wc-spacing-lg);
}

@media (min-width: 1024px) {
    .account-content-modern {
        grid-template-columns: 250px 1fr;
    }
}

.account-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--wc-spacing-md);
    margin-bottom: var(--wc-spacing-lg);
}

.stat-card-modern {
    background: var(--wc-card);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    padding: var(--wc-spacing-lg);
    text-align: center;
    box-shadow: var(--wc-shadow);
}

.stat-value-modern {
    font-size: 32px;
    font-weight: var(--wc-font-weight-bold);
    color: var(--wc-accent);
    margin-bottom: var(--wc-spacing-xs);
}

.stat-label-modern {
    font-size: 14px;
    color: var(--wc-muted-foreground);
    font-weight: var(--wc-font-weight-medium);
}

.account-nav-modern {
    background: var(--wc-card);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    padding: var(--wc-spacing-md);
    box-shadow: var(--wc-shadow);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: var(--wc-spacing-xs);
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 16px;
    color: var(--wc-foreground);
    text-decoration: none;
    font-weight: var(--wc-font-weight-medium);
    border-radius: var(--wc-radius);
    transition: all 0.2s;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation li.is-active a {
    background: var(--wc-accent);
    color: var(--wc-card);
}

.account-main-modern {
    background: var(--wc-card);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius);
    padding: var(--wc-spacing-lg);
    box-shadow: var(--wc-shadow);
}

/* ========================================
 * NOTICES
 * ======================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: var(--wc-spacing-md);
    border-radius: var(--wc-radius);
    margin-bottom: var(--wc-spacing-md);
    font-weight: var(--wc-font-weight-medium);
    border-left: 4px solid;
}

.woocommerce-message {
    background: rgba(72, 187, 120, 0.1);
    color: var(--wc-accent);
    border-left-color: var(--wc-accent);
}

.woocommerce-info {
    background: rgba(72, 187, 120, 0.1);
    color: var(--wc-accent);
    border-left-color: var(--wc-accent);
}

.woocommerce-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--wc-error);
    border-left-color: var(--wc-error);
}

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

@media (max-width: 767px) {
    .product-hero-grid,
    .cart-layout-grid,
    .checkout-layout-modern,
    .account-content-modern {
        grid-template-columns: 1fr;
    }
    
    .cart-totals-card,
    .order-review-card-modern {
        position: static;
    }
}

/* ========================================
 * SLIDE OUT CART - DIGITA STYLE
 * ======================================== */

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.cart-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Slide Out Cart Panel */
.slide-out-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--digita-background, #ffffff);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slide-out-cart.is-open {
    transform: translateX(0);
}

body.cart-drawer-open {
    overflow: hidden;
}

/* Cart Header */
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
    flex-shrink: 0;
}

.cart-drawer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0;
}

.cart-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--digita-foreground-muted, #808080);
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer-close:hover {
    background: var(--digita-background-alt, #f5f5f5);
    color: var(--digita-foreground, #262626);
}

/* Free Shipping Progress */
.cart-shipping-progress {
    padding: 16px 24px;
    background: var(--digita-background-alt, #f5f5f5);
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
    flex-shrink: 0;
}

.shipping-progress-bar {
    position: relative;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: visible;
    margin-bottom: 12px;
}

.shipping-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.shipping-progress-icon {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: white;
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.shipping-progress-text {
    font-size: 13px;
    color: var(--digita-foreground, #262626);
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.shipping-progress-text strong {
    color: var(--digita-foreground, #262626);
}

/* Cart Items Container */
.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

/* Individual Cart Item */
.cart-drawer-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
    position: relative;
}

.cart-drawer-item:last-child {
    border-bottom: none;
}

.cart-item-thumbnail {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--digita-background-alt, #f5f5f5);
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-name:hover {
    color: var(--digita-primary, #E07B4C);
}

.cart-item-variation {
    font-size: 12px;
    color: var(--digita-foreground-muted, #808080);
}

.cart-item-price-qty {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.cart-item-qty {
    font-size: 13px;
    color: var(--digita-foreground-muted, #808080);
}

.cart-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--digita-primary, #E07B4C);
}

.cart-item-remove {
    position: absolute;
    top: 16px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--digita-foreground-muted, #808080);
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: var(--digita-sale, #EF4444);
}

/* Empty Cart State */
.cart-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}

.empty-cart-icon {
    color: var(--digita-border, #e5e5e5);
    margin-bottom: 24px;
}

.empty-cart-text {
    font-size: 16px;
    color: var(--digita-foreground-muted, #808080);
    margin: 0 0 24px 0;
}

.btn-continue-shopping {
    display: inline-block;
    padding: 12px 24px;
    background: var(--digita-primary, #E07B4C);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-continue-shopping:hover {
    background: var(--digita-primary-hover, #C96A3E);
    color: white;
}

/* Cart Footer */
.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--digita-border, #e5e5e5);
    background: var(--digita-background, #ffffff);
    flex-shrink: 0;
}

.cart-drawer-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.subtotal-label {
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: var(--digita-foreground, #262626);
}

.subtotal-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary, var(--digita-primary, #E07B4C));
}

.cart-drawer-buttons {
    display: flex;
    gap: 12px;
}

.btn-view-cart,
.btn-checkout {
    flex: 1;
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-view-cart,
.slide-out-cart .btn-view-cart,
.slide-out-cart a.btn-view-cart,
a.btn-view-cart {
    background: var(--digita-foreground, #262626);
    color: #ffffff !important;
}

.btn-view-cart:hover,
.slide-out-cart .btn-view-cart:hover,
.slide-out-cart a.btn-view-cart:hover,
a.btn-view-cart:hover {
    background: #1a1a1a;
    color: #ffffff !important;
}

.btn-checkout,
.slide-out-cart .btn-checkout,
.slide-out-cart a.btn-checkout,
a.btn-checkout {
    background: var(--color-primary, var(--digita-primary, #E07B4C));
    color: #ffffff !important;
}

.btn-checkout:hover,
.slide-out-cart .btn-checkout:hover,
.slide-out-cart a.btn-checkout:hover,
a.btn-checkout:hover {
    background: var(--color-primary-hover, var(--digita-primary-hover, #C96A3E));
    color: #ffffff !important;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .slide-out-cart {
        max-width: 100%;
    }
    
    .cart-drawer-header,
    .cart-shipping-progress,
    .cart-drawer-items,
    .cart-drawer-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .cart-drawer-buttons {
        flex-direction: column;
    }
}

/* ========================================
 * SINGLE PRODUCT PAGE - DIGITA STYLE
 * ======================================== */

.single-product-digita {
    background: var(--digita-background, #ffffff);
    font-family: var(--wc-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Breadcrumb Header */
.single-product-digita .product-breadcrumb-header {
    background: var(--digita-background-alt, #f5f5f5);
    padding: 16px 0;
    position: relative;
}

.single-product-digita .product-breadcrumb-header .digita-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--digita-foreground-muted, #808080);
}

.single-product-digita .product-breadcrumb-header .digita-breadcrumb a {
    color: var(--digita-foreground-muted, #808080);
    text-decoration: none;
}

.single-product-digita .product-breadcrumb-header .digita-breadcrumb a:hover {
    color: var(--digita-primary, #E07B4C);
}

.single-product-digita .product-breadcrumb-header .breadcrumb-sep {
    color: var(--digita-foreground-muted, #808080);
}

/* Product Main Section */
.single-product-digita .product-main-section {
    padding: 40px 0;
}

.single-product-digita .product-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery Column - Single image, no thumbnails */
.single-product-digita .product-gallery-column {
    position: sticky;
    top: 100px;
}

/* Hide Thumbnails */
.single-product-digita .gallery-thumbnails {
    display: none;
}

.single-product-digita .thumb-nav {
    display: none;
}

.single-product-digita .thumbnails-list {
    display: none;
}

.single-product-digita .thumbnail-item {
    display: none;
}

/* Main Image */
.single-product-digita .gallery-main-image {
    position: relative;
    background: var(--digita-background-alt, #f5f5f5);
    border-radius: 8px;
    overflow: hidden;
}

.single-product-digita .main-image-wrapper {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product-digita .main-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.single-product-digita .sale-badge-main {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--digita-sale, #EF4444);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 10;
}

.single-product-digita .image-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.single-product-digita .image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.single-product-digita .image-dot.active,
.single-product-digita .image-dot:hover {
    background: var(--digita-primary, #E07B4C);
}

/* Trust Bar */
.single-product-digita .product-trust-bar {
    display: flex;
    margin-top: 20px;
    background: var(--digita-background-alt, #f5f5f5);
    border-radius: 8px;
    overflow: hidden;
}

.single-product-digita .trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    border-right: 1px solid var(--digita-border, #e5e5e5);
}

.single-product-digita .trust-item:last-child {
    border-right: none;
}

.single-product-digita .trust-item svg {
    color: var(--digita-primary, #E07B4C);
    flex-shrink: 0;
}

/* Product Info Column - Digita Style */
.single-product-digita .product-info-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-product-digita .product-brand {
    font-size: 14px;
    color: var(--digita-foreground-muted, #808080);
}

.single-product-digita .product-brand a {
    color: var(--digita-primary, #E07B4C);
    text-decoration: none;
}

.single-product-digita .product-brand a:hover {
    text-decoration: underline;
}

.single-product-digita .product-title-main {
    font-size: 28px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0;
    line-height: 1.3;
}

/* Price & Rating */
.single-product-digita .product-price-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.single-product-digita .product-price-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--digita-primary, #E07B4C);
}

.single-product-digita .product-price-main del {
    font-size: 18px;
    font-weight: 400;
    color: var(--digita-foreground-muted, #808080);
    margin-right: 8px;
}

.single-product-digita .product-rating-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-product-digita .product-rating-main .stars {
    display: flex;
    gap: 2px;
}

.single-product-digita .product-rating-main .star {
    color: #d1d5db;
    font-size: 16px;
}

.single-product-digita .product-rating-main .star.filled {
    color: var(--digita-star, #F59E0B);
}

.single-product-digita .product-rating-main .review-count {
    font-size: 14px;
    color: var(--digita-primary, #E07B4C);
    text-decoration: none;
}

.single-product-digita .product-rating-main .review-count:hover {
    text-decoration: underline;
}

/* Social Proof */
.single-product-digita .product-social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--digita-primary, #E07B4C);
    font-size: 14px;
}

.single-product-digita .product-social-proof svg {
    flex-shrink: 0;
}

/* Features List */
.single-product-digita .product-features-list {
    font-size: 14px;
    color: var(--digita-foreground-muted, #808080);
    line-height: 1.6;
}

.single-product-digita .product-features-list ul {
    margin: 0;
    padding-left: 20px;
}

.single-product-digita .product-features-list li {
    margin-bottom: 4px;
}

/* Variations Section */
.single-product-digita .product-variations-section {
    margin-bottom: 16px;
}

.single-product-digita .variations {
    width: 100%;
    border-collapse: collapse;
}

.single-product-digita .variations tr {
    margin-bottom: 12px;
}

.single-product-digita .variations td {
    padding: 0 0 12px 0;
}

.single-product-digita .variations td.label {
    padding-right: 16px;
    vertical-align: middle;
}

.single-product-digita .variations td.label label {
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
}

.single-product-digita .variations select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 4px;
    font-size: 14px;
    color: var(--digita-foreground, #262626);
    background: white;
    cursor: pointer;
}

.single-product-digita .variations select:focus {
    outline: none;
    border-color: var(--digita-primary, #E07B4C);
}

.single-product-digita .reset_variations {
    font-size: 13px;
    color: var(--digita-primary, #E07B4C);
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}

.single-product-digita .reset_variations:hover {
    text-decoration: underline;
}

.single-product-digita .single_variation_wrap {
    margin-top: 16px;
}

.single-product-digita .woocommerce-variation-price {
    margin-bottom: 12px;
}

/* Add to Cart Section */
.single-product-digita .product-add-to-cart-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.single-product-digita .product-add-to-cart-section .cart {
    display: flex;
    gap: 12px;
    align-items: center;
}

.single-product-digita .quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 4px;
    overflow: hidden;
}

.single-product-digita .qty-btn {
    width: 40px;
    height: 48px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--digita-foreground, #262626);
    transition: background 0.2s;
}

.single-product-digita .qty-btn:hover {
    background: var(--digita-background-alt, #f5f5f5);
}

.single-product-digita .quantity-wrapper .quantity {
    margin: 0;
}

.single-product-digita .quantity-wrapper .quantity input[type="number"],
.single-product-digita .quantity-wrapper input[type="number"] {
    width: 50px;
    height: 48px;
    border: none;
    border-left: 1px solid var(--digita-border, #e5e5e5);
    border-right: 1px solid var(--digita-border, #e5e5e5);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    -moz-appearance: textfield;
    background: transparent;
}

.single-product-digita .quantity-wrapper .quantity input[type="number"]::-webkit-outer-spin-button,
.single-product-digita .quantity-wrapper .quantity input[type="number"]::-webkit-inner-spin-button,
.single-product-digita .quantity-wrapper input[type="number"]::-webkit-outer-spin-button,
.single-product-digita .quantity-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product-digita .quantity-wrapper .quantity input[type="number"]:focus,
.single-product-digita .quantity-wrapper input[type="number"]:focus {
    outline: none;
}

.single-product-digita .btn-add-to-cart {
    flex: 1;
    height: 48px;
    background: var(--digita-primary, #E07B4C);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s;
}

.single-product-digita .btn-add-to-cart:hover {
    background: var(--digita-primary-hover, #C96A3E);
}

.single-product-digita .btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: var(--digita-primary, #E07B4C);
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.2s;
}

.single-product-digita .btn-buy-now:hover {
    background: var(--digita-primary-hover, #C96A3E);
    color: white;
}

/* Action Buttons */
.single-product-digita .product-action-buttons {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--digita-border, #e5e5e5);
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
    flex-wrap: wrap;
}

.single-product-digita .action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    padding: 0;
    transition: color 0.2s;
}

.single-product-digita .action-btn:hover {
    color: var(--digita-primary, #E07B4C);
}

.single-product-digita .action-btn svg {
    flex-shrink: 0;
}

/* Live Viewers */
.single-product-digita .product-live-viewers {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--digita-foreground-muted, #808080);
}

.single-product-digita .product-live-viewers svg {
    flex-shrink: 0;
}

/* Delivery Info */
.single-product-digita .product-delivery-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.single-product-digita .delivery-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--digita-foreground-muted, #808080);
}

.single-product-digita .delivery-item svg {
    flex-shrink: 0;
}

/* Secure Checkout */
.single-product-digita .product-secure-checkout {
    background: var(--digita-background-alt, #f5f5f5);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.single-product-digita .secure-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0 0 12px 0;
}

.single-product-digita .payment-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.single-product-digita .payment-icons img {
    height: 24px;
    width: auto;
}

/* Product Tabs Section */
.single-product-digita .product-tabs-section {
    padding: 60px 0;
    border-top: 1px solid var(--digita-border, #e5e5e5);
}

.single-product-digita .product-tabs-wrapper {
    max-width: 100%;
}

.single-product-digita .tabs-navigation {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
    flex-wrap: wrap;
}

.single-product-digita .tab-btn {
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--digita-foreground-muted, #808080);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.single-product-digita .tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.2s;
}

.single-product-digita .tab-btn:hover {
    color: var(--digita-foreground, #262626);
}

.single-product-digita .tab-btn.active {
    color: var(--digita-foreground, #262626);
}

.single-product-digita .tab-btn.active::after {
    background: var(--digita-primary, #E07B4C);
}

.single-product-digita .tabs-content {
    padding-top: 32px;
}

.single-product-digita .tab-panel {
    display: none;
}

.single-product-digita .tab-panel.active {
    display: block;
}

.single-product-digita .tab-panel p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--digita-foreground-muted, #808080);
    margin-bottom: 16px;
}

.single-product-digita .tab-panel h2,
.single-product-digita .tab-panel h3,
.single-product-digita .tab-panel h4 {
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 24px 0 12px 0;
}

.single-product-digita .tab-panel ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.single-product-digita .tab-panel li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--digita-foreground-muted, #808080);
    margin-bottom: 8px;
}

.single-product-digita .description-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--digita-foreground-muted, #808080);
}

.single-product-digita .shipping-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--digita-foreground-muted, #808080);
}

/* Product Specifications Table */
.single-product-digita .product-specifications {
    margin-top: 32px;
}

.single-product-digita .specs-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--digita-primary, #E07B4C);
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.single-product-digita .specs-table {
    width: 100%;
    border-collapse: collapse;
}

.single-product-digita .specs-table tr {
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
}

.single-product-digita .specs-table th,
.single-product-digita .specs-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
}

.single-product-digita .specs-table th {
    width: 200px;
    font-weight: 500;
    color: var(--digita-foreground-muted, #808080);
    background: var(--digita-background-alt, #f5f5f5);
}

.single-product-digita .specs-table td {
    color: var(--digita-foreground, #262626);
}

/* Key Features List Enhanced */
.single-product-digita .product-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-product-digita .product-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--digita-foreground, #262626);
}

.single-product-digita .product-features-list .feature-check {
    flex-shrink: 0;
}

/* ========================================
 * ACF SECTIONS - DIGITA STYLE
 * ======================================== */

/* Section Headers */
.single-product-digita .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.single-product-digita .section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0 0 12px 0;
}

.single-product-digita .section-subtitle {
    font-size: 16px;
    color: var(--digita-foreground-muted, #808080);
    margin: 0;
}

/* Product Features Grid Section */
.single-product-digita .product-features-section {
    padding: 80px 0;
    background: var(--digita-background, #ffffff);
    border-top: 1px solid var(--digita-border, #e5e5e5);
}

.single-product-digita .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.single-product-digita .feature-card {
    background: var(--digita-background-alt, #f5f5f5);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.single-product-digita .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.single-product-digita .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--digita-primary, #E07B4C);
    color: white;
    border-radius: 50%;
}

.single-product-digita .feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0 0 12px 0;
}

.single-product-digita .feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--digita-foreground-muted, #808080);
    margin: 0;
}

/* Process Steps Section */
.single-product-digita .process-steps-section {
    padding: 80px 0;
    background: var(--digita-background-alt, #f5f5f5);
}

.single-product-digita .process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.single-product-digita .process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--digita-background, #ffffff);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.single-product-digita .step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--digita-primary, #E07B4C);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.single-product-digita .step-content {
    flex: 1;
}

.single-product-digita .step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0 0 4px 0;
}

.single-product-digita .step-duration {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--digita-primary, #E07B4C);
    background: rgba(224, 123, 76, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.single-product-digita .step-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--digita-foreground-muted, #808080);
    margin: 0;
}

/* Deliverables Section */
.single-product-digita .deliverables-section {
    padding: 80px 0;
    background: var(--digita-background, #ffffff);
    border-top: 1px solid var(--digita-border, #e5e5e5);
}

.single-product-digita .deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.single-product-digita .deliverable-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--digita-background-alt, #f5f5f5);
    border-radius: 8px;
    font-size: 15px;
    color: var(--digita-foreground, #262626);
}

.single-product-digita .deliverable-item svg {
    flex-shrink: 0;
}

/* FAQs Section */
.single-product-digita .faqs-section {
    padding: 80px 0;
    background: var(--digita-background-alt, #f5f5f5);
}

.single-product-digita .faqs-list {
    max-width: 800px;
    margin: 0 auto;
}

.single-product-digita .faq-item {
    background: var(--digita-background, #ffffff);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.single-product-digita .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    transition: background 0.2s;
}

.single-product-digita .faq-question:hover {
    background: var(--digita-background-alt, #f5f5f5);
}

.single-product-digita .faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.single-product-digita .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.single-product-digita .faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--digita-foreground-muted, #808080);
}

.single-product-digita .faq-item.active .faq-answer {
    display: block;
}

/* Related Products */
.single-product-digita .related-products-section {
    padding: 60px 0;
    background: var(--digita-background-alt, #f5f5f5);
}

/* Responsive - Digita Product Page */
@media (max-width: 1024px) {
    .single-product-digita .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .single-product-digita .product-gallery-column {
        position: static;
        grid-template-columns: 80px 1fr;
    }
}

@media (max-width: 768px) {
    .single-product-digita .product-gallery-column {
        grid-template-columns: 1fr;
    }
    
    .single-product-digita .gallery-thumbnails {
        flex-direction: row;
        order: 2;
    }
    
    .single-product-digita .thumbnails-list {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
    }
    
    .single-product-digita .thumb-nav {
        width: 32px;
        height: 60px;
    }
    
    .single-product-digita .thumb-nav-up svg,
    .single-product-digita .thumb-nav-down svg {
        transform: rotate(-90deg);
    }
    
    .single-product-digita .product-trust-bar {
        flex-direction: column;
    }
    
    .single-product-digita .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--digita-border, #e5e5e5);
    }
    
    .single-product-digita .trust-item:last-child {
        border-bottom: none;
    }
    
    .single-product-digita .product-action-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .single-product-digita .tabs-navigation {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .single-product-digita .tab-btn {
        white-space: nowrap;
        padding: 12px 16px;
    }
}

/* ========================================
 * CHECKOUT PAGE - DIGITA STYLE
 * ======================================== */

.checkout-digita {
    background: var(--digita-background, #ffffff);
}

/* Checkout Header */
.checkout-header-digita {
    background: var(--digita-background-alt, #f5f5f5);
    padding: 32px 0;
    text-align: center;
}

.checkout-header-digita .digita-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--digita-foreground-muted, #808080);
    margin-bottom: 8px;
}

.checkout-header-digita .digita-breadcrumb a {
    color: var(--digita-foreground-muted, #808080);
    text-decoration: none;
}

.checkout-header-digita .digita-breadcrumb a:hover {
    color: var(--digita-primary, #E07B4C);
}

.checkout-title-digita {
    font-size: 32px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0;
}

/* Content Section */
.checkout-content-section {
    padding: 40px 0 80px;
}

/* Login Notice */
.checkout-login-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--digita-background-alt, #f5f5f5);
    margin-bottom: 32px;
}

.checkout-login-notice .notice-bar {
    width: 4px;
    height: 24px;
    background: var(--digita-primary, #E07B4C);
    flex-shrink: 0;
}

.checkout-login-notice p {
    margin: 0;
    font-size: 14px;
    color: var(--digita-foreground-muted, #808080);
}

.checkout-login-notice .show-login {
    color: var(--digita-primary, #E07B4C);
    text-decoration: none;
}

.checkout-login-notice .show-login:hover {
    text-decoration: underline;
}

/* Checkout Layout */
.checkout-layout-digita {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* Forms Column */
.checkout-forms-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-section-digita {
    background: var(--digita-background, #ffffff);
}

.section-title-digita {
    font-size: 20px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0 0 24px 0;
}

/* Billing Fields */
.billing-fields-digita .form-row {
    margin-bottom: 16px;
}

.billing-fields-digita label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    margin-bottom: 8px;
}

.billing-fields-digita label .required {
    color: var(--digita-sale, #EF4444);
}

.billing-fields-digita input[type="text"],
.billing-fields-digita input[type="email"],
.billing-fields-digita input[type="tel"],
.billing-fields-digita select,
.billing-fields-digita .select2-container .select2-selection {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 4px;
    font-size: 15px;
    color: var(--digita-foreground, #262626);
    background: var(--digita-background, #ffffff);
    transition: border-color 0.2s;
}

.billing-fields-digita input:focus,
.billing-fields-digita select:focus {
    outline: none;
    border-color: var(--digita-primary, #E07B4C);
}

.billing-fields-digita .form-row-first,
.billing-fields-digita .form-row-last {
    width: calc(50% - 8px);
    display: inline-block;
}

.billing-fields-digita .form-row-first {
    margin-right: 16px;
}

/* Checkboxes */
.checkbox-digita {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--digita-foreground, #262626);
}

.checkbox-digita input[type="checkbox"] {
    display: none;
}

.checkmark-digita {
    width: 20px;
    height: 20px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.checkbox-digita input[type="checkbox"]:checked + .checkmark-digita {
    background: var(--digita-primary, #E07B4C);
    border-color: var(--digita-primary, #E07B4C);
}

.checkbox-digita input[type="checkbox"]:checked + .checkmark-digita::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Order Notes */
.order-notes-section {
    margin-top: 8px;
}

.field-label-digita {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    margin-bottom: 8px;
}

.textarea-digita {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 4px;
    font-size: 15px;
    color: var(--digita-foreground, #262626);
    resize: vertical;
    font-family: inherit;
}

.textarea-digita:focus {
    outline: none;
    border-color: var(--digita-primary, #E07B4C);
}

/* Summary Column */
.checkout-summary-column {
    position: sticky;
    top: 100px;
}

/* Shipping Progress Card */
.shipping-progress-card {
    background: var(--digita-background, #ffffff);
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

/* Order Summary Card */
.order-summary-card-digita {
    background: var(--digita-background, #ffffff);
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 8px;
    padding: 24px;
}

.summary-title-digita {
    font-size: 18px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0 0 20px 0;
}

/* Order Items */
.order-items-digita {
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.items-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin-bottom: 16px;
}

.order-item-digita {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.order-item-digita .item-image {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--digita-background-alt, #f5f5f5);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-digita .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.order-item-digita .item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--digita-foreground, #262626);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-item-digita .item-details {
    flex: 1;
    min-width: 0;
}

.order-item-digita .item-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    margin-bottom: 4px;
}

.order-item-digita .item-variation {
    display: block;
    font-size: 12px;
    color: var(--digita-foreground-muted, #808080);
}

.order-item-digita .item-subtotal-small {
    display: block;
    font-size: 13px;
    color: var(--digita-primary, #E07B4C);
    margin-top: 4px;
}

.order-item-digita .item-total {
    font-size: 14px;
    font-weight: 600;
    color: var(--digita-primary, #E07B4C);
    flex-shrink: 0;
}

/* Shipping Options */
.shipping-options-digita {
    padding: 16px 0;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
}

.shipping-options-digita .shipping-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0 0 12px 0;
}

.shipping-options-digita ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shipping-options-digita li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.shipping-options-digita input[type="radio"] {
    accent-color: var(--digita-primary, #E07B4C);
}

.shipping-options-digita label {
    flex: 1;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--digita-foreground, #262626);
}

.shipping-options-digita .amount {
    font-weight: 600;
    color: var(--digita-primary, #E07B4C);
}

/* Order Total */
.order-total-digita {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
}

.order-total-digita .total-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
}

.order-total-digita .total-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--digita-primary, #E07B4C);
}

/* Coupon Section */
.coupon-section-digita {
    padding: 16px;
    background: var(--digita-background-alt, #f5f5f5);
    border-radius: 4px;
    margin: 16px 0;
}

.coupon-text {
    margin: 0;
    font-size: 14px;
    color: var(--digita-foreground-muted, #808080);
}

.coupon-text .toggle-coupon {
    color: var(--digita-primary, #E07B4C);
    text-decoration: none;
}

.coupon-text .toggle-coupon:hover {
    text-decoration: underline;
}

.coupon-form-digita {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.coupon-form-digita input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 4px;
    font-size: 14px;
}

.coupon-form-digita input:focus {
    outline: none;
    border-color: var(--digita-primary, #E07B4C);
}

.apply-coupon-btn {
    padding: 10px 20px;
    background: var(--digita-foreground, #262626);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.apply-coupon-btn:hover {
    background: #1a1a1a;
}

/* Payment Methods */
.payment-methods-digita {
    margin-top: 16px;
}

.payment-methods-digita .wc_payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
}

.payment-methods-digita .wc_payment_method {
    padding: 12px 0;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
}

.payment-methods-digita .wc_payment_method:last-child {
    border-bottom: none;
}

.payment-methods-digita .wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    cursor: pointer;
}

.payment-methods-digita input[type="radio"] {
    accent-color: var(--digita-primary, #E07B4C);
}

.payment-methods-digita .payment_box {
    padding: 12px;
    background: var(--digita-background-alt, #f5f5f5);
    border-radius: 4px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--digita-foreground-muted, #808080);
    line-height: 1.5;
}

/* Place Order Button */
.place-order-digita {
    margin-top: 20px;
}

.btn-place-order {
    width: 100%;
    padding: 16px 24px;
    background: var(--digita-primary, #E07B4C);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-place-order:hover {
    background: var(--digita-primary-hover, #C96A3E);
}

/* Responsive */
@media (max-width: 1024px) {
    .checkout-layout-digita {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-header-digita {
        padding: 24px 0;
    }
    
    .checkout-title-digita {
        font-size: 28px;
    }
    
    .billing-fields-digita .form-row-first,
    .billing-fields-digita .form-row-last {
        width: 100%;
        display: block;
        margin-right: 0;
    }
}

/* ========================================
 * WOOCOMMERCE BLOCK CHECKOUT - DIGITA STYLE
 * Styles for WooCommerce Checkout Blocks
 * ======================================== */

/* Main Checkout Container */
.woocommerce-checkout .wp-block-woocommerce-checkout {
    font-family: var(--wc-font);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Page Title */
.woocommerce-checkout .page-title,
.woocommerce-checkout h1.wp-block-post-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin-bottom: 32px;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
}

/* Checkout Layout - Main Grid Container */
.wp-block-woocommerce-checkout,
.wc-block-checkout,
.wc-block-checkout.wc-block-checkout {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 48px !important;
    align-items: flex-start !important;
}

/* Left Column - Forms */
.wc-block-checkout__main,
.wp-block-woocommerce-checkout .wc-block-checkout__main {
    flex: 1 1 600px !important;
    min-width: 0 !important;
    max-width: none !important;
    order: 1 !important;
}

/* Right Column - Order Summary */
.wc-block-checkout__sidebar,
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
    flex: 0 0 360px !important;
    width: 360px !important;
    position: sticky !important;
    top: 120px !important;
    order: 2 !important;
}

/* Form Fields Full Width on Mobile */
.wc-block-checkout__main .wc-block-components-text-input,
.wc-block-checkout__main .wc-block-components-country-input,
.wc-block-checkout__main .wc-block-components-state-input {
    max-width: 100% !important;
    width: 100% !important;
}

/* WooCommerce Block Checkout - Address Form Grid Layout */
.wc-block-components-address-form {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
}

/* Full width fields */
.wc-block-components-address-form > .wc-block-components-country-input,
.wc-block-components-address-form > .wc-block-components-text-input:first-of-type,
.wc-block-components-address-form__address_1,
.wc-block-components-address-form__address_2 {
    grid-column: 1 / -1 !important;
}

/* Half width fields - First/Last name */
.wc-block-components-address-form__first_name,
.wc-block-components-address-form__last_name {
    grid-column: span 1 !important;
}

/* Half width fields - City/State */
.wc-block-components-address-form__city,
.wc-block-components-address-form__state {
    grid-column: span 1 !important;
}

/* Half width fields - Zip/Phone */
.wc-block-components-address-form__postcode,
.wc-block-components-address-form__phone {
    grid-column: span 1 !important;
}

/* Section Headings */
.wc-block-components-checkout-step__heading,
.wc-block-checkout__sidebar .wc-block-components-order-summary h2,
.wc-block-components-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0 0 16px 0;
    text-transform: none;
    letter-spacing: 0;
}

/* Checkout Steps Container */
.wc-block-components-checkout-step {
    padding: 0;
    margin-bottom: 32px;
    border: none;
}

.wc-block-components-checkout-step::before {
    display: none;
}

.wc-block-components-checkout-step__container {
    margin-left: 0;
    padding-left: 0;
    border: none;
}

/* Form Fields */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-checkout .wc-block-components-text-input input[type="text"],
.wc-block-checkout .wc-block-components-text-input input[type="email"],
.wc-block-checkout .wc-block-components-text-input input[type="tel"],
.wc-block-checkout .wc-block-components-textarea textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--wc-font);
    color: var(--digita-foreground, #262626);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input:focus {
    outline: none;
    border-color: var(--digita-primary, #E07B4C);
    box-shadow: 0 0 0 3px rgba(224, 123, 76, 0.1);
}

/* Labels */
.wc-block-components-text-input label,
.wc-block-components-combobox label {
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    margin-bottom: 6px;
    display: block;
}

/* Floating Labels */
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input:focus-within label {
    color: var(--digita-primary, #E07B4C);
    font-size: 12px;
}

/* Country/State Selects */
.wc-block-components-country-input select,
.wc-block-components-state-input select,
.wc-block-checkout select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--wc-font);
    color: var(--digita-foreground, #262626);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23262626' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
}

.wc-block-components-country-input select:focus,
.wc-block-components-state-input select:focus,
.wc-block-checkout select:focus {
    outline: none;
    border-color: var(--digita-primary, #E07B4C);
    box-shadow: 0 0 0 3px rgba(224, 123, 76, 0.1);
}

/* Combobox/Dropdown styling */
.wc-block-components-combobox .wc-block-components-combobox-control {
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 6px;
    background: #fff;
}

.wc-block-components-combobox .wc-block-components-combobox-control:focus-within {
    border-color: var(--digita-primary, #E07B4C);
    box-shadow: 0 0 0 3px rgba(224, 123, 76, 0.1);
}

/* Guest checkout text */
.wc-block-checkout__contact-fields-step .wc-block-components-checkout-step__description {
    font-size: 14px;
    color: var(--digita-foreground-muted, #808080);
    margin-bottom: 16px;
}

/* Form Row Layout */
.wc-block-components-address-form__address_1,
.wc-block-components-address-form .wc-block-components-text-input {
    margin-bottom: 16px;
}

/* Two Column Fields */
.wc-block-components-address-form__first_name,
.wc-block-components-address-form__last_name {
    display: inline-block;
    width: calc(50% - 8px);
}

.wc-block-components-address-form__first_name {
    margin-right: 16px;
}

.wc-block-components-address-form__city,
.wc-block-components-address-form__state {
    display: inline-block;
    width: calc(50% - 8px);
}

.wc-block-components-address-form__city {
    margin-right: 16px;
}

.wc-block-components-address-form__postcode,
.wc-block-components-address-form__phone {
    display: inline-block;
    width: calc(50% - 8px);
}

.wc-block-components-address-form__postcode {
    margin-right: 16px;
}

/* Add apartment link */
.wc-block-components-address-form__address_2-toggle {
    color: var(--digita-foreground-muted, #808080);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.wc-block-components-address-form__address_2-toggle:hover {
    color: var(--digita-primary, #E07B4C);
}

/* Order Summary Sidebar */
.wc-block-checkout__sidebar .wc-block-components-sidebar,
.wc-block-components-order-summary {
    background: #fff;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 0;
}

.wc-block-components-order-summary__button {
    display: none;
}

/* Sidebar Heading */
.wc-block-checkout__sidebar .wc-block-components-panel__button,
.wc-block-checkout__sidebar h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    margin: 0 0 20px 0;
    padding: 0;
    background: none;
    border: none;
}

/* Order Summary Content */
.wc-block-checkout__sidebar .wc-block-components-order-summary__content {
    padding: 0;
}

/* Order Summary Title */
.wc-block-components-order-summary .wc-block-components-panel__button {
    font-size: 18px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    padding: 0;
    margin-bottom: 20px;
}

/* Product Items in Summary */
.wc-block-components-order-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
}

.wc-block-components-order-summary-item:last-child {
    border-bottom: none;
}

.wc-block-components-order-summary-item__image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.wc-block-components-order-summary-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quantity badge on image */
.wc-block-components-order-summary-item__quantity {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--digita-foreground, #262626);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-block-components-order-summary-item__description {
    flex: 1;
}

.wc-block-components-order-summary-item__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
    margin-bottom: 4px;
    display: block;
}

.wc-block-components-order-summary-item__individual-price {
    font-size: 13px;
    color: var(--digita-foreground-muted, #808080);
}

.wc-block-components-order-summary-item__total-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--digita-foreground, #262626);
    white-space: nowrap;
}

/* Coupon Section */
.wc-block-components-totals-coupon {
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.wc-block-components-totals-coupon__button {
    font-size: 14px;
    color: var(--digita-foreground, #262626);
    font-weight: 500;
}

.wc-block-components-totals-coupon__button svg {
    color: var(--digita-foreground-muted, #808080);
}

.wc-block-components-totals-coupon__form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.wc-block-components-totals-coupon__form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 6px;
    font-size: 14px;
}

.wc-block-components-totals-coupon__form button {
    padding: 12px 20px;
    background: var(--digita-foreground, #262626);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.wc-block-components-totals-coupon__form button:hover {
    background: var(--digita-foreground, #1a1a1a);
}

/* Totals Table */
.wc-block-components-totals-wrapper {
    background: #fff;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
}

.wc-block-components-totals-item:last-child {
    border-bottom: none;
}

.wc-block-components-totals-item__label {
    font-size: 14px;
    color: var(--digita-foreground, #262626);
}

.wc-block-components-totals-item__value {
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
}

/* Order Total */
.wc-block-components-totals-footer-item {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--digita-foreground, #262626);
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 16px;
    font-weight: 600;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 20px;
    font-weight: 700;
    color: var(--digita-primary, #E07B4C);
}

/* Payment Methods Section */
.wc-block-checkout__payment-method {
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.wc-block-components-radio-control-accordion-option {
    padding: 16px 20px;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
}

.wc-block-components-radio-control-accordion-option:last-child {
    border-bottom: none;
}

.wc-block-components-radio-control__option-layout {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wc-block-components-radio-control__input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--digita-border, #e5e5e5);
    border-radius: 50%;
    cursor: pointer;
    accent-color: var(--digita-primary, #E07B4C);
}

.wc-block-components-radio-control__input:checked {
    border-color: var(--digita-primary, #E07B4C);
}

.wc-block-components-radio-control__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground, #262626);
}

/* No payment methods notice */
.wc-block-checkout__no-payment-methods {
    background: #FEF3E2;
    border: 1px solid #F59E0B;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.wc-block-checkout__no-payment-methods p {
    margin: 0;
    font-size: 14px;
    color: #92400E;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Privacy Policy */
.wc-block-checkout__terms,
.wc-block-components-checkout-terms {
    font-size: 13px;
    color: var(--digita-foreground-muted, #808080);
    line-height: 1.6;
    margin-bottom: 20px;
}

.wc-block-checkout__terms a,
.wc-block-components-checkout-terms a {
    color: var(--digita-primary, #E07B4C);
    text-decoration: none;
}

.wc-block-checkout__terms a:hover,
.wc-block-components-checkout-terms a:hover {
    text-decoration: underline;
}

/* Place Order Button */
.wc-block-components-checkout-place-order-button,
.wc-block-checkout__actions button[type="submit"],
.wc-block-checkout__actions .wc-block-components-button {
    width: 100%;
    padding: 16px 32px !important;
    background: var(--digita-primary, #E07B4C) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout__actions button[type="submit"]:hover,
.wc-block-checkout__actions .wc-block-components-button:hover {
    background: var(--digita-primary-hover, #C96A3E) !important;
    transform: translateY(-1px);
}

.wc-block-components-checkout-place-order-button:active,
.wc-block-checkout__actions button[type="submit"]:active {
    transform: translateY(0);
}

/* Checkout Actions Container */
.wc-block-checkout__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--digita-border, #e5e5e5);
}

.wc-block-checkout__actions_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
}

/* Return to Cart Link */
.wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button {
    color: var(--digita-foreground-muted, #808080);
    text-decoration: none;
    font-size: 14px;
}

.wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button:hover {
    color: var(--digita-primary, #E07B4C);
}

/* Order Notes */
.wc-block-checkout__add-note {
    margin-top: 24px;
}

.wc-block-checkout__add-note-toggle {
    font-size: 14px;
    color: var(--digita-foreground, #262626);
    font-weight: 500;
    cursor: pointer;
}

.wc-block-checkout__add-note textarea {
    width: 100%;
    min-height: 100px;
    padding: 14px 16px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--wc-font);
    color: var(--digita-foreground, #262626);
    resize: vertical;
    margin-top: 12px;
}

.wc-block-checkout__add-note textarea:focus {
    outline: none;
    border-color: var(--digita-primary, #E07B4C);
    box-shadow: 0 0 0 3px rgba(224, 123, 76, 0.1);
}

/* Checkbox styling */
.wc-block-components-checkbox .wc-block-components-checkbox__input {
    width: 20px;
    height: 20px;
    border: 1px solid var(--digita-border, #e5e5e5);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--digita-primary, #E07B4C);
}

.wc-block-components-checkbox .wc-block-components-checkbox__label {
    font-size: 14px;
    color: var(--digita-foreground, #262626);
}

/* Validation Errors */
.wc-block-components-validation-error,
.wc-block-components-text-input.has-error input {
    border-color: var(--digita-sale, #EF4444);
}

.wc-block-components-validation-error p {
    color: var(--digita-sale, #EF4444);
    font-size: 13px;
    margin-top: 4px;
}

/* Loading/Processing State */
.wc-block-checkout.is-loading,
.wc-block-checkout.is-processing {
    opacity: 0.7;
    pointer-events: none;
}

/* Express Checkout */
.wc-block-components-express-payment {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--digita-border, #e5e5e5);
}

.wc-block-components-express-payment__title {
    font-size: 14px;
    font-weight: 500;
    color: var(--digita-foreground-muted, #808080);
    text-align: center;
    margin-bottom: 16px;
}

.wc-block-components-express-payment-continue-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    color: var(--digita-foreground-muted, #808080);
    font-size: 14px;
}

.wc-block-components-express-payment-continue-rule::before,
.wc-block-components-express-payment-continue-rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--digita-border, #e5e5e5);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .wp-block-woocommerce-checkout .wc-block-checkout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .wc-block-checkout__sidebar {
        order: 1;
        position: static;
    }
    
    .wc-block-checkout__main {
        order: 2;
    }
}

@media (max-width: 768px) {
    .woocommerce-checkout .wp-block-woocommerce-checkout {
        padding: 0 16px;
    }
    
    .woocommerce-checkout .page-title,
    .woocommerce-checkout h1.wp-block-post-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .wc-block-components-address-form__first_name,
    .wc-block-components-address-form__last_name,
    .wc-block-components-address-form__city,
    .wc-block-components-address-form__state,
    .wc-block-components-address-form__postcode,
    .wc-block-components-address-form__phone {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .wc-block-components-order-summary {
        padding: 16px;
    }
    
    .wc-block-components-totals-wrapper {
        padding: 16px;
    }
    
    .wc-block-components-checkout-place-order-button {
        padding: 14px 24px;
        font-size: 15px;
    }
}
