/* ============================================================
   Abaya Klosette — Cart & Checkout Custom Styles
   File: ak-cart-checkout.css
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   0. GLOBAL: Force light text on dark backgrounds everywhere
   ──────────────────────────────────────────────────────────── */

body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-cart .site-content,
body.woocommerce-checkout .site-content,
body.woocommerce-cart #primary,
body.woocommerce-checkout #primary,
body.woocommerce-cart .content-area,
body.woocommerce-checkout .content-area,
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content {
    background: #0a0a0a !important;
    color: #e8e4df !important;
}

body.woocommerce-cart *,
body.woocommerce-checkout * {
    color: #e8e4df;
}

body.woocommerce-cart a,
body.woocommerce-checkout a {
    color: #d4af37;
}

body.woocommerce-cart a:hover,
body.woocommerce-checkout a:hover {
    color: #f0d878;
}

/* Hide any sidebar on cart/checkout pages */
body.woocommerce-cart .sidebar,
body.woocommerce-checkout .sidebar,
body.woocommerce-cart aside,
body.woocommerce-checkout aside,
body.woocommerce-cart .widget-area,
body.woocommerce-checkout .widget-area,
body.woocommerce-cart #secondary,
body.woocommerce-checkout #secondary,
body.woocommerce-cart .site-sidebar,
body.woocommerce-checkout .site-sidebar {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    position: absolute !important;
    z-index: -9999 !important;
}

/* Force full-width layout (no sidebar gap) */
body.woocommerce-cart .site-content,
body.woocommerce-checkout .site-content,
body.woocommerce-cart .content-area,
body.woocommerce-checkout .content-area,
body.woocommerce-cart .main-content,
body.woocommerce-checkout .main-content,
body.woocommerce-cart #primary,
body.woocommerce-checkout #primary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide theme gift card/banner bars on cart/checkout */
body.woocommerce-cart .gift-card-banner,
body.woocommerce-checkout .gift-card-banner,
body.woocommerce-cart .promo-banner,
body.woocommerce-checkout .promo-banner,
body.woocommerce-cart .top-banner,
body.woocommerce-checkout .top-banner,
body.woocommerce-cart .announcement-bar,
body.woocommerce-checkout .announcement-bar {
    display: none !important;
}

/* Hide default WooCommerce notices (we style our own) */
body.woocommerce-cart .woocommerce-message,
body.woocommerce-checkout .woocommerce-message {
    background: #1a1a1a !important;
    border: 1px solid #d4af37 !important;
    color: #d4af37 !important;
    border-radius: 4px !important;
    padding: 16px 24px !important;
    margin-bottom: 24px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
}

body.woocommerce-cart .woocommerce-message a,
body.woocommerce-checkout .woocommerce-message a {
    color: #d4af37 !important;
    text-decoration: underline !important;
    font-weight: 500 !important;
}

/* ────────────────────────────────────────────────────────────
   1. CART & CHECKOUT SHARED HERO
   ──────────────────────────────────────────────────────────── */

.ak-cart-wrapper,
.ak-checkout-wrapper {
    background: #0a0a0a;
    min-height: 100vh;
    color: #e8e4df;
    font-family: 'Montserrat', sans-serif;
}

.ak-cart-hero,
.ak-checkout-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
    overflow: hidden;
}

.ak-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
}

.ak-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 60px 20px;
}

.ak-hero-bracket {
    position: absolute;
    color: #d4af37;
    font-size: 18px;
    opacity: 0.4;
}

.ak-hero-bracket.top-left { top: 30px; left: 30px; }
.ak-hero-bracket.top-right { top: 30px; right: 30px; }
.ak-hero-bracket.bottom-left { bottom: 30px; left: 30px; }
.ak-hero-bracket.bottom-right { bottom: 30px; right: 30px; }

.ak-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 16px;
}

.ak-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.ak-hero-rule {
    width: 60px;
    height: 1px;
    background: #d4af37;
    margin: 0 auto;
    position: relative;
}

.ak-hero-rule::after {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #d4af37;
    font-size: 10px;
    background: #0a0a0a;
    padding: 0 10px;
}

/* ────────────────────────────────────────────────────────────
   2. CART CONTENT
   ──────────────────────────────────────────────────────────── */

.ak-cart-content {
    padding: 60px 0 80px;
}

.ak-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cart Table Wrapper */
.ak-cart-table-wrapper {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

/* Cart Table — FORCE ALL TEXT LIGHT */
.ak-cart-table-wrapper .shop_table.cart,
.ak-cart-table-wrapper .shop_table.cart * {
    color: #e8e4df;
}

.ak-cart-table-wrapper .shop_table.cart {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #141414;
}

/* Table Header — FORCE GOLD ON DARK */
.ak-cart-table-wrapper .shop_table.cart thead {
    background: #1a1a1a !important;
}

.ak-cart-table-wrapper .shop_table.cart thead th {
    padding: 18px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37 !important;
    background: #1a1a1a !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
}

/* Table Body Cells */
.ak-cart-table-wrapper .shop_table.cart tbody td {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    color: #e8e4df !important;
    background: #141414 !important;
}

.ak-cart-table-wrapper .shop_table.cart tbody tr:last-child td {
    border-bottom: none;
}

/* Product Thumbnail */
.ak-cart-table-wrapper .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Product Name — FORCE WHITE */
.ak-cart-table-wrapper .product-name a,
.ak-cart-table-wrapper .product-name {
    color: #ffffff !important;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.ak-cart-table-wrapper .product-name a:hover {
    color: #d4af37 !important;
}

.ak-cart-table-wrapper .product-name .variation {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #999 !important;
    font-family: 'Montserrat', sans-serif;
}

.ak-cart-table-wrapper .product-name .variation dt,
.ak-cart-table-wrapper .product-name .variation dd {
    display: inline;
    margin: 0;
}

.ak-cart-table-wrapper .product-name .variation dt {
    color: #d4af37 !important;
    font-weight: 500;
}

.ak-cart-table-wrapper .product-name .variation dd {
    color: #ccc !important;
}

/* Price & Subtotal — FORCE GOLD */
.ak-cart-table-wrapper .product-price,
.ak-cart-table-wrapper .product-subtotal,
.ak-cart-table-wrapper .product-price .woocommerce-Price-amount,
.ak-cart-table-wrapper .product-subtotal .woocommerce-Price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #d4af37 !important;
    font-weight: 600;
}

/* Quantity Input — FORCE VISIBLE */
.ak-cart-table-wrapper .product-quantity .qty {
    background: #0a0a0a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
    padding: 10px 14px;
    width: 70px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    -moz-appearance: textfield;
}

.ak-cart-table-wrapper .product-quantity .qty::-webkit-outer-spin-button,
.ak-cart-table-wrapper .product-quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ak-cart-table-wrapper .product-quantity .qty:focus {
    outline: none;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* Remove Button */
.ak-cart-table-wrapper .product-remove .remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37 !important;
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
    background: transparent;
}

.ak-cart-table-wrapper .product-remove .remove:hover {
    background: #d4af37;
    color: #0a0a0a !important;
    border-color: #d4af37;
}

/* Cart Actions Row */
.ak-cart-table-wrapper .actions {
    padding: 24px !important;
    background: #1a1a1a !important;
}

.ak-cart-table-wrapper .actions .coupon {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* Coupon Input — FORCE VISIBLE */
.ak-cart-table-wrapper .actions .coupon .input-text {
    background: #0a0a0a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
}

.ak-cart-table-wrapper .actions .coupon .input-text::placeholder {
    color: #666 !important;
}

.ak-cart-table-wrapper .actions .coupon .input-text:focus {
    outline: none;
    border-color: #d4af37 !important;
}

/* Buttons — FORCE GOLD VISIBLE */
.ak-cart-table-wrapper .actions .coupon .button,
.ak-cart-table-wrapper .actions .button,
.ak-cart-table-wrapper .button {
    background: transparent !important;
    border: 1px solid #d4af37 !important;
    color: #d4af37 !important;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ak-cart-table-wrapper .actions .coupon .button:hover,
.ak-cart-table-wrapper .actions .button:hover,
.ak-cart-table-wrapper .button:hover {
    background: #d4af37 !important;
    color: #0a0a0a !important;
}

/* ────────────────────────────────────────────────────────────
   3. CART COLLATERALS / ORDER SUMMARY
   ──────────────────────────────────────────────────────────── */

.ak-cart-collaterals {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.ak-cart-summary {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 32px;
    position: sticky;
    top: 100px;
}

.ak-cart-summary * {
    color: #e8e4df;
}

.ak-summary-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: #ffffff !important;
    margin: 0 0 12px 0;
}

.ak-summary-line {
    width: 40px;
    height: 1px;
    background: #d4af37;
    margin-bottom: 24px;
}

/* WooCommerce Cart Totals Override */
.ak-cart-summary .cart_totals {
    width: 100% !important;
    float: none !important;
}

.ak-cart-summary .cart_totals h2 {
    display: none;
}

.ak-cart-summary .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.ak-cart-summary .shop_table th,
.ak-cart-summary .shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.ak-cart-summary .shop_table th {
    text-align: left;
    color: #999 !important;
    font-weight: 400;
}

.ak-cart-summary .shop_table td {
    text-align: right;
    color: #ffffff !important;
}

.ak-cart-summary .shop_table .order-total th,
.ak-cart-summary .shop_table .order-total td {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37 !important;
    border-bottom: none;
    padding-top: 16px;
}

.ak-cart-summary .shop_table .order-total .woocommerce-Price-amount {
    color: #d4af37 !important;
    font-weight: 700;
}

/* Shipping Calculator */
.ak-cart-summary .shipping-calculator-button {
    color: #d4af37 !important;
    font-size: 12px;
    text-decoration: underline;
    font-family: 'Montserrat', sans-serif;
}

.ak-cart-summary .shipping-calculator-form {
    margin-top: 16px;
    padding: 16px;
    background: #1a1a1a;
    border-radius: 4px;
}

.ak-cart-summary .shipping-calculator-form input,
.ak-cart-summary .shipping-calculator-form select {
    background: #0a0a0a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
    padding: 10px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 10px;
}

.ak-cart-summary .shipping-calculator-form input:focus,
.ak-cart-summary .shipping-calculator-form select:focus {
    outline: none;
    border-color: #d4af37 !important;
}

.ak-cart-summary .shipping-calculator-form button {
    background: #d4af37 !important;
    border: none;
    color: #0a0a0a !important;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}

/* Proceed to Checkout Button */
.ak-cart-summary .wc-proceed-to-checkout {
    margin-top: 24px;
}

.ak-cart-summary .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    background: #d4af37 !important;
    border: 1px solid #d4af37 !important;
    color: #0a0a0a !important;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ak-cart-summary .wc-proceed-to-checkout a.checkout-button:hover {
    background: transparent !important;
    color: #d4af37 !important;
}

/* ────────────────────────────────────────────────────────────
   4. CHECKOUT CONTENT
   ──────────────────────────────────────────────────────────── */

.ak-checkout-content {
    padding: 60px 0 80px;
}

.ak-checkout-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.ak-checkout-col {
    background: #141414;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 32px;
}

.ak-checkout-col * {
    color: #e8e4df;
}

.ak-checkout-section {
    margin-bottom: 32px;
}

.ak-checkout-section:last-child {
    margin-bottom: 0;
}

.ak-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: #ffffff !important;
    margin: 0 0 12px 0;
}

.ak-section-line {
    width: 40px;
    height: 1px;
    background: #d4af37;
    margin-bottom: 24px;
}

/* Checkout Form Fields */
.ak-checkout-col .woocommerce-billing-fields__field-wrapper,
.ak-checkout-col .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    gap: 16px;
}

.ak-checkout-col .form-row {
    margin: 0;
    padding: 0;
}

.ak-checkout-col label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d4af37 !important;
    margin-bottom: 8px;
}

.ak-checkout-col label .required {
    color: #d4af37 !important;
}

.ak-checkout-col input[type="text"],
.ak-checkout-col input[type="email"],
.ak-checkout-col input[type="tel"],
.ak-checkout-col input[type="password"],
.ak-checkout-col select,
.ak-checkout-col textarea {
    width: 100%;
    background: #0a0a0a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ak-checkout-col input:focus,
.ak-checkout-col select:focus,
.ak-checkout-col textarea:focus {
    outline: none;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.ak-checkout-col input::placeholder,
.ak-checkout-col select::placeholder,
.ak-checkout-col textarea::placeholder {
    color: #555 !important;
}

.ak-checkout-col .select2-container--default .select2-selection--single {
    background: #0a0a0a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
    height: 44px;
    border-radius: 4px;
}

.ak-checkout-col .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
    line-height: 44px;
    padding-left: 16px;
}

.ak-checkout-col .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
}

/* Order Review Table */
#order_review .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

#order_review .shop_table th,
#order_review .shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

#order_review .shop_table th {
    text-align: left;
    color: #999 !important;
}

#order_review .shop_table td {
    text-align: right;
    color: #ffffff !important;
}

#order_review .shop_table .product-name {
    text-align: left;
}

#order_review .shop_table .product-name strong {
    color: #ffffff !important;
    font-weight: 500;
}

#order_review .shop_table .product-name .product-quantity {
    color: #d4af37 !important;
    font-weight: 600;
}

#order_review .shop_table .cart-subtotal td,
#order_review .shop_table .order-total td {
    color: #d4af37 !important;
    font-weight: 600;
}

#order_review .shop_table .order-total th,
#order_review .shop_table .order-total td {
    font-size: 16px;
    border-bottom: none;
    padding-top: 16px;
}

/* Payment Methods */
#payment {
    background: #1a1a1a;
    border-radius: 4px;
    padding: 20px;
    margin-top: 24px;
}

#payment * {
    color: #e8e4df;
}

#payment ul.wc_payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
}

#payment ul.wc_payment_methods li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#payment ul.wc_payment_methods li:last-child {
    border-bottom: none;
}

#payment ul.wc_payment_methods li input[type="radio"] {
    accent-color: #d4af37;
    margin-right: 10px;
}

#payment ul.wc_payment_methods li label {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

#payment .payment_box {
    background: #0a0a0a;
    border-radius: 4px;
    padding: 16px;
    margin-top: 10px;
    font-size: 13px;
    color: #999 !important;
    line-height: 1.6;
}

#payment .payment_box * {
    color: #999 !important;
}

#payment .place-order {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#payment #place_order {
    width: 100%;
    background: #d4af37 !important;
    border: 1px solid #d4af37 !important;
    color: #0a0a0a !important;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#payment #place_order:hover {
    background: transparent !important;
    color: #d4af37 !important;
}

/* Privacy Policy Text */
.woocommerce-privacy-policy-text {
    font-size: 12px;
    color: #666 !important;
    margin-bottom: 16px;
    line-height: 1.6;
}

.woocommerce-privacy-policy-text a {
    color: #d4af37 !important;
    text-decoration: underline;
}

/* ────────────────────────────────────────────────────────────
   5. EMPTY CART
   ──────────────────────────────────────────────────────────── */

.cart-empty {
    text-align: center;
    padding: 80px 20px;
    color: #999 !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.cart-empty::before {
    content: '◆';
    display: block;
    font-size: 48px;
    color: #d4af37;
    opacity: 0.3;
    margin-bottom: 24px;
}

.return-to-shop {
    text-align: center;
    margin-top: 24px;
}

.return-to-shop .button {
    display: inline-block;
    background: transparent !important;
    border: 1px solid #d4af37 !important;
    color: #d4af37 !important;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.return-to-shop .button:hover {
    background: #d4af37 !important;
    color: #0a0a0a !important;
}

/* ────────────────────────────────────────────────────────────
   6. RESPONSIVE
   ──────────────────────────────────────────────────────────── */

@media (max-width: 992px) {
    .ak-cart-collaterals {
        grid-template-columns: 1fr;
    }

    .ak-cart-summary {
        position: static;
    }

    .ak-checkout-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ak-hero-title {
        font-size: 32px;
    }

    .ak-container {
        padding: 0 16px;
    }

    .ak-cart-content,
    .ak-checkout-content {
        padding: 40px 0 60px;
    }

    .ak-cart-table-wrapper .shop_table.cart thead {
        display: none;
    }

    .ak-cart-table-wrapper .shop_table.cart tbody td {
        display: block;
        width: 100%;
        padding: 12px 16px;
        text-align: right;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .ak-cart-table-wrapper .shop_table.cart tbody td::before {
        content: attr(data-title);
        float: left;
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #d4af37 !important;
    }

    .ak-cart-table-wrapper .shop_table.cart tbody tr {
        display: block;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding: 16px 0;
    }

    .ak-cart-table-wrapper .shop_table.cart tbody tr:last-child {
        border-bottom: none;
    }

    .product-thumbnail img {
        width: 60px;
        height: 60px;
    }

    .product-remove .remove {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .coupon {
        flex-direction: column;
    }

    .coupon .input-text {
        width: 100%;
    }

    .ak-cart-summary,
    .ak-checkout-col {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .ak-hero-title {
        font-size: 28px;
    }

    .ak-hero-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .ak-hero-bracket {
        font-size: 14px;
    }

    .ak-cart-summary .wc-proceed-to-checkout a.checkout-button,
    #payment #place_order {
        padding: 14px 20px;
        font-size: 11px;
    }
}