/* ====================================
   ULTIMATE SHOP PAGE FIX - 4 COLUMNS
==================================== */
.woocommerce ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -15px 30px !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce ul.products li.product {
    width: calc(25% - 30px) !important;
    margin: 0 15px 30px !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .woocommerce ul.products li.product {
        width: calc(33.333% - 30px) !important;
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products li.product {
        width: calc(50% - 30px) !important;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products li.product {
        width: calc(100% - 30px) !important;
    }
}

/* Force remove any interfering styles */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce ul.products li.product::before,
.woocommerce ul.products li.product::after {
    display: none !important;
    content: none !important;
}

/* Reset column classes */
.woocommerce ul.products.columns-1 li.product,
.woocommerce ul.products.columns-2 li.product,
.woocommerce ul.products.columns-3 li.product,
.woocommerce ul.products.columns-4 li.product,
.woocommerce ul.products.columns-5 li.product,
.woocommerce ul.products.columns-6 li.product {
    width: calc(25% - 30px) !important;
}

/* Product styling */
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    margin: 0 0 1rem 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    color: #111827 !important;
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product .price {
    color: #111827 !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    margin-bottom: 1rem !important;
}

.woocommerce ul.products li.product .button {
    background: transparent !important;
    color: #b70000 !important;
    padding: 0.5rem 1rem !important;
    border: 2px solid #b70000 !important;
    border-radius: 0 !important;
    font-weight: 500 !important;
}

.woocommerce ul.products li.product .button:hover {
    background: #b70000 !important;
    color: #fff !important;
}


/* ====================================
   PRODUCT DETAILS PAGE - OVERRIDE WOOCOMMERCE DEFAULT
==================================== */

/* Force override all WooCommerce default styles */
body.single-product,
body.single-product .woocommerce,
body.single-product .woocommerce-page {
    all: initial;
}

body.single-product {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: block;
    background: #fff;
}

body.single-product .woocommerce {
    display: block !important;
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
    background: #fff !important;
}

/* Clear floats - Override WooCommerce */
body.single-product .woocommerce div.product::after,
body.single-product .woocommerce-page div.product::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

/* ====================================
   LEFT COLUMN - PRODUCT IMAGE
   Override WooCommerce defaults
==================================== */
body.single-product .woocommerce div.product div.images,
body.single-product .woocommerce-page div.product div.images {
    width: 48% !important;
    float: left !important;
    margin: 0 4% 0 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Product image - Override WooCommerce */
body.single-product .woocommerce div.product div.images img {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* ====================================
   RIGHT COLUMN - PRODUCT DETAILS
   Override WooCommerce defaults
==================================== */
body.single-product .woocommerce div.product div.summary,
body.single-product .woocommerce-page div.product div.summary {
    width: 48% !important;
    float: right !important;
    margin: 0 !important;
    padding: 20px 0 0 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Product title - Override WooCommerce */
body.single-product .woocommerce div.product .product_title,
body.single-product .woocommerce-page div.product .product_title {
    font-family: 'Playfair Display', serif !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    line-height: 1.1 !important;
    border: none !important;
    background: transparent !important;
    text-shadow: none !important;
}

/* Price - Override WooCommerce */
body.single-product .woocommerce div.product .price,
body.single-product .woocommerce-page div.product .price {
    color: #b70000 !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

body.single-product .woocommerce div.product .price del,
body.single-product .woocommerce-page div.product .price del {
    color: #9ca3af !important;
    font-size: 24px !important;
    margin-right: 10px !important;
}

body.single-product .woocommerce div.product .price ins,
body.single-product .woocommerce-page div.product .price ins {
    text-decoration: none !important;
}

/* ====================================
   ADD TO CART SECTION - STUNNING
   Override WooCommerce defaults including the specific button class
==================================== */
body.single-product .woocommerce div.product form.cart,
body.single-product .woocommerce-page div.product form.cart {
    margin: 30px 0 !important;
    padding: 20px !important;
    background: #f9fafb !important;
    border-radius: 60px !important;
    box-shadow: 0 10px 30px -10px rgba(183, 0, 0, 0.1) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

/* Quantity selector - Override WooCommerce */
body.single-product .woocommerce div.product form.cart .quantity,
body.single-product .woocommerce-page div.product form.cart .quantity {
    display: inline-flex !important;
    align-items: center !important;
    background: white !important;
    border-radius: 40px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    border: none !important;
    margin: 0 !important;
}

body.single-product .woocommerce div.product form.cart .quantity input,
body.single-product .woocommerce-page div.product form.cart .quantity input {
    width: 80px !important;
    padding: 14px 5px !important;
    border: none !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    background: white !important;
    margin: 0 !important;
}

body.single-product .woocommerce div.product form.cart .quantity input:focus {
    outline: none !important;
}

/* Hide spinners */
body.single-product .woocommerce div.product form.cart .quantity input::-webkit-inner-spin-button,
body.single-product .woocommerce div.product form.cart .quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

body.single-product .woocommerce div.product form.cart .quantity input {
    -moz-appearance: textfield !important;
}

/* OVERRIDE THE SPECIFIC WOOCOMMERCE BUTTON CLASS */
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
    background: linear-gradient(135deg, #b70000 0%, #d00000 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 40px !important;
    padding: 16px 40px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px -8px rgba(183, 0, 0, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
    text-decoration: none !important;
    line-height: normal !important;
    -webkit-font-smoothing: antialiased !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt::before, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt::before, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt::before, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt::before, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt::before, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt::before, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt::before, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
    background: linear-gradient(135deg, #900000 0%, #b70000 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px -8px rgba(183, 0, 0, 0.5) !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover::before, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover::before, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover::before, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover::before, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover::before, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover::before, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover::before, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover::before {
    left: 100%;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:active, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:active, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:active, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:active, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:active, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:active, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:active, 
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:active {
    transform: translateY(0) !important;
}

/* ====================================
   PRODUCT META (CATEGORIES)
   Override WooCommerce defaults
==================================== */
body.single-product .woocommerce div.product .product_meta,
body.single-product .woocommerce-page div.product .product_meta {
    margin: 30px 0 !important;
    padding: 20px 0 !important;
    border-top: 2px solid #f3f4f6 !important;
    border-bottom: 2px solid #f3f4f6 !important;
    border-left: none !important;
    border-right: none !important;
    background: transparent !important;
}

body.single-product .woocommerce div.product .product_meta .posted_in,
body.single-product .woocommerce-page div.product .product_meta .posted_in {
    font-size: 16px !important;
    color: #4b5563 !important;
    font-weight: 500 !important;
}

body.single-product .woocommerce div.product .product_meta .posted_in a,
body.single-product .woocommerce-page div.product .product_meta .posted_in a {
    color: #b70000 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    margin: 0 5px !important;
    padding: 5px 12px !important;
    background: #fee2e2 !important;
    border-radius: 30px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

body.single-product .woocommerce div.product .product_meta .posted_in a:hover {
    background: #b70000 !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* ====================================
   TABS SECTION
   Override WooCommerce defaults
==================================== */
body.single-product .woocommerce div.product .woocommerce-tabs,
body.single-product .woocommerce-page div.product .woocommerce-tabs {
    clear: both !important;
    margin-top: 60px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs,
body.single-product .woocommerce-page div.product .woocommerce-tabs ul.tabs {
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    gap: 40px !important;
    border-bottom: 2px solid #f0f0f0 !important;
    background: transparent !important;
    overflow: visible !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li,
body.single-product .woocommerce-page div.product .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li a,
body.single-product .woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
    color: #6b7280 !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 15px 0 !important;
    display: block !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
body.single-product .woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a {
    color: #b70000 !important;
}

body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li.active a::after,
body.single-product .woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #b70000;
}

body.single-product .woocommerce div.product .woocommerce-tabs .panel,
body.single-product .woocommerce-page div.product .woocommerce-tabs .panel {
    background: #f9fafb !important;
    padding: 40px !important;
    border-radius: 20px !important;
    border: 1px solid #f0f0f0 !important;
    margin: 0 !important;
}

/* ====================================
   RESPONSIVE
==================================== */
@media (max-width: 768px) {
    body.single-product .woocommerce div.product div.images,
    body.single-product .woocommerce-page div.product div.images,
    body.single-product .woocommerce div.product div.summary,
    body.single-product .woocommerce-page div.product div.summary {
        width: 100% !important;
        float: none !important;
        margin: 0 0 30px 0 !important;
    }
    
    body.single-product .woocommerce div.product .product_title {
        font-size: 32px !important;
    }
    
    body.single-product .woocommerce div.product form.cart {
        flex-direction: column !important;
        border-radius: 30px !important;
    }
    
    body.single-product .woocommerce div.product form.cart .quantity input {
        width: 100% !important;
    }
    
    body.single-product .woocommerce div.product form.cart .button {
        width: 100% !important;
    }
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
    background-color: #b70000 ;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

.woocommerce .quantity .qty {
    width: 80px !important;
    text-align: center;
    border: 2px solid #d1d5db !important;
    border-radius: 40px !important;
    padding: 12px 5px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.woocommerce .quantity .qty:focus {
    border-color: #b70000 !important;
    box-shadow: 0 0 0 3px rgba(183, 0, 0, 0.1) !important;
}

/* ====================================
   CART PAGE - BEAUTIFUL DESIGN
==================================== */

/* Main cart container */
body.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Cart table container */
body.woocommerce-cart .woocommerce-cart-form {
    margin-bottom: 40px;
    overflow-x: auto;
}

/* Cart table */
body.woocommerce-cart table.cart {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

/* Table header */
body.woocommerce-cart table.cart thead {
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
}

body.woocommerce-cart table.cart thead th {
    padding: 18px 15px;
    font-weight: 600;
    color: #111827;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e5e7eb;
    text-align: left;
}

/* Table rows */
body.woocommerce-cart table.cart tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

body.woocommerce-cart table.cart tbody tr:hover {
    background: #fafafa;
}

body.woocommerce-cart table.cart tbody tr:last-child {
    border-bottom: none;
}

/* Table cells */
body.woocommerce-cart table.cart td {
    padding: 20px 15px;
    vertical-align: middle;
}

/* Product name */
body.woocommerce-cart table.cart td.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

body.woocommerce-cart table.cart td.product-name a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.woocommerce-cart table.cart td.product-name a:hover {
    color: #b70000;
}

/* Product price */
body.woocommerce-cart table.cart td.product-price {
    font-weight: 500;
    color: #4b5563;
    font-size: 16px;
}

/* Product subtotal */
body.woocommerce-cart table.cart td.product-subtotal {
    font-weight: 700;
    color: #b70000;
    font-size: 18px;
}

/* Quantity selector */
body.woocommerce-cart table.cart td.product-quantity .quantity {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 40px;
    overflow: hidden;
    background: white;
}

body.woocommerce-cart table.cart td.product-quantity .quantity input.qty {
    width: 70px;
    padding: 10px 5px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    background: transparent;
}

body.woocommerce-cart table.cart td.product-quantity .quantity input.qty:focus {
    outline: none;
}

/* Hide spinners */
body.woocommerce-cart table.cart td.product-quantity .quantity input.qty::-webkit-inner-spin-button,
body.woocommerce-cart table.cart td.product-quantity .quantity input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body.woocommerce-cart table.cart td.product-quantity .quantity input.qty {
    -moz-appearance: textfield;
}

/* Remove button */
body.woocommerce-cart table.cart td.product-remove {
    width: 40px;
    text-align: center;
}

body.woocommerce-cart table.cart td.product-remove a.remove {
    color: #9ca3af;
    font-size: 22px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
}

body.woocommerce-cart table.cart td.product-remove a.remove:hover {
    color: #b70000;
    background: #fee2e2;
    transform: rotate(90deg);
}

/* ====================================
   COUPON SECTION
==================================== */
body.woocommerce-cart .coupon {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #f9fafb;
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
    flex-wrap: wrap;
}

body.woocommerce-cart .coupon label {
    display: none;
}

body.woocommerce-cart .coupon input[type="text"] {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

body.woocommerce-cart .coupon input[type="text"]:focus {
    outline: none;
    border-color: #b70000;
    box-shadow: 0 0 0 3px rgba(183, 0, 0, 0.1);
}

/* Apply coupon button */
body.woocommerce-cart .coupon .button {
    background: transparent;
    color: #b70000;
    font-weight: 600;
    padding: 14px 35px;
    border: 2px solid #b70000;
    border-radius: 50px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

body.woocommerce-cart .coupon .button:hover {
    background: #b70000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(183, 0, 0, 0.4);
}

/* Update cart button */
body.woocommerce-cart .actions .button {
    background: transparent;
    color: #4b5563;
    font-weight: 600;
    padding: 14px 35px;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

body.woocommerce-cart .actions .button:hover {
    background: #4b5563;
    color: white;
    border-color: #4b5563;
    transform: translateY(-2px);
}

/* ====================================
   CART TOTALS SECTION
==================================== */
body.woocommerce-cart .cart-collaterals {
    margin-top: 40px;
}

body.woocommerce-cart .cart_totals {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin-left: auto;
}

body.woocommerce-cart .cart_totals h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 25px 0;
    position: relative;
    display: inline-block;
}

body.woocommerce-cart .cart_totals h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b70000, #ff8800);
    border-radius: 3px;
}

/* Totals table */
body.woocommerce-cart .cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

body.woocommerce-cart .cart_totals table tr {
    border-bottom: 1px solid #e5e7eb;
}

body.woocommerce-cart .cart_totals table tr:last-child {
    border-bottom: none;
}

body.woocommerce-cart .cart_totals table th {
    padding: 15px 0;
    text-align: left;
    font-weight: 500;
    color: #4b5563;
    font-size: 16px;
}

body.woocommerce-cart .cart_totals table td {
    padding: 15px 0;
    text-align: right;
    font-weight: 600;
    color: #111827;
    font-size: 16px;
}

/* Order total row */
body.woocommerce-cart .cart_totals table tr.order-total th,
body.woocommerce-cart .cart_totals table tr.order-total td {
    font-size: 20px;
    font-weight: 700;
    padding: 20px 0;
}

body.woocommerce-cart .cart_totals table tr.order-total td {
    color: #b70000;
}

/* ====================================
   PROCEED TO CHECKOUT BUTTON
==================================== */
body.woocommerce-cart .wc-proceed-to-checkout {
    margin-top: 25px;
}

body.woocommerce-cart .wc-proceed-to-checkout .button {
    background: linear-gradient(135deg, #b70000 0%, #d00000 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 20px -8px rgba(183, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

body.woocommerce-cart .wc-proceed-to-checkout .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

body.woocommerce-cart .wc-proceed-to-checkout .button:hover {
    background: linear-gradient(135deg, #900000 0%, #b70000 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -8px rgba(183, 0, 0, 0.5);
}

body.woocommerce-cart .wc-proceed-to-checkout .button:hover::before {
    left: 100%;
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 768px) {
    body.woocommerce-cart .coupon {
        flex-direction: column;
        align-items: stretch;
    }
    
    body.woocommerce-cart .coupon input[type="text"] {
        width: 100%;
    }
    
    body.woocommerce-cart .coupon .button {
        width: 100%;
    }
    
    body.woocommerce-cart .actions .button {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
    
    body.woocommerce-cart .cart_totals {
        max-width: 100%;
        margin-left: 0;
        padding: 25px;
    }
    
    body.woocommerce-cart table.cart td {
        padding: 15px 10px;
    }
    
    body.woocommerce-cart table.cart td.product-quantity .quantity input.qty {
        width: 50px;
    }
}

@media (max-width: 480px) {
    body.woocommerce-cart table.cart {
        font-size: 14px;
    }
    
    body.woocommerce-cart table.cart td.product-name {
        font-size: 16px;
    }
    
    body.woocommerce-cart .cart_totals h2 {
        font-size: 24px;
    }
}

.woocommerce-cart .cart-collaterals .cart_totals table, .woocommerce-checkout .cart-collaterals .cart_totals table {
 
    padding: 10px;
}