/* ============================================================
   EtaTech Global Styles
   Site-wide color consistency, buttons, WhatsApp, Coupon
   All colors driven by CSS variables from WP Dashboard
   ============================================================ */

/* ===== COUPON / ANNOUNCEMENT BAR ===== */
.eta-coupon-bar {
    position: relative;
    z-index: 10001;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.eta-coupon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.eta-coupon-text {
    color: #ffffff;
    text-decoration: none;
}

.eta-coupon-text a,
a.eta-coupon-text {
    color: #ffffff;
    text-decoration: underline;
}

.eta-coupon-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

.eta-coupon-close:hover {
    color: #ffffff;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.eta-wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
}

.eta-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: eta-wa-pulse 2s infinite;
}

.eta-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.3);
    color: #ffffff;
}

.eta-wa-icon {
    width: 30px;
    height: 30px;
}

.eta-wa-tooltip {
    background: #ffffff;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.eta-wa-float:hover .eta-wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes eta-wa-pulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== SITE-WIDE COLOR OVERRIDES ===== */

/* Body & Background */
body,
body.dark,
.page-wrapper,
.template-content,
.template-container {
    background-color: var(--eta-bg-dark, #0a0a0a) !important;
    color: var(--eta-text, #ffffff);
}

/* ===== LINKS ===== */
a {
    color: var(--eta-primary, #ff6b6b);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--eta-primary-hover, #e85555);
}

/* ===== MY ACCOUNT PAGE ===== */
.woocommerce-account .woocommerce,
.woocommerce-account .content-page {
    background: transparent !important;
    color: var(--eta-text, #ffffff) !important;
}

/* Login / Register form */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register,
.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register,
.woocommerce form.woocommerce-form-login,
.woocommerce form.woocommerce-form-register {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px !important;
    padding: 36px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

.woocommerce-account h2,
.woocommerce-account h3,
.woocommerce-form-login h2,
.woocommerce-form-register h2 {
    color: var(--eta-text, #ffffff) !important;
}

.woocommerce-account label,
.woocommerce form label {
    color: var(--eta-text-muted, #a0a0a0) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
}

.woocommerce-account .woocommerce-form__label-for-checkbox span,
.woocommerce-account .lost_password a {
    color: var(--eta-text-muted, #a0a0a0) !important;
}

.woocommerce-account .lost_password a:hover {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* Account navigation sidebar */
.woocommerce-MyAccount-navigation {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px !important;
    overflow: hidden;
}

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

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    margin: 0 !important;
}

.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none !important;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 20px !important;
    color: var(--eta-text-muted, #a0a0a0) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--eta-primary, #ff6b6b) !important;
    background: rgba(255,107,107,0.05) !important;
    padding-left: 24px !important;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
    color: var(--eta-primary, #ff6b6b) !important;
    background: rgba(255,107,107,0.08) !important;
    border-left: 3px solid var(--eta-primary, #ff6b6b) !important;
}

/* Account content area */
.woocommerce-MyAccount-content {
    color: var(--eta-text, #ffffff) !important;
}

.woocommerce-MyAccount-content p,
.woocommerce-MyAccount-content td,
.woocommerce-MyAccount-content th {
    color: var(--eta-text-muted, #a0a0a0) !important;
}

.woocommerce-MyAccount-content a {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* Account tables (orders, downloads) */
.woocommerce-MyAccount-content table,
.woocommerce table.shop_table,
.woocommerce-orders-table {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    overflow: hidden;
    border-collapse: separate !important;
}

.woocommerce table.shop_table th {
    background: rgba(255,255,255,0.03) !important;
    color: var(--eta-text, #ffffff) !important;
    font-weight: 700 !important;
    border-color: rgba(255,255,255,0.06) !important;
    padding: 14px 16px !important;
}

.woocommerce table.shop_table td {
    color: var(--eta-text-muted, #a0a0a0) !important;
    border-color: rgba(255,255,255,0.06) !important;
    padding: 14px 16px !important;
}

.woocommerce table.shop_table tbody tr:hover td {
    background: rgba(255,255,255,0.02) !important;
}

/* Account addresses */
.woocommerce-Addresses .woocommerce-Address,
.u-columns .woocommerce-Address {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    padding: 24px !important;
}

.woocommerce-Addresses .woocommerce-Address h3,
.woocommerce-Addresses header h3 {
    color: var(--eta-text, #ffffff) !important;
}

.woocommerce-Addresses address {
    color: var(--eta-text-muted, #a0a0a0) !important;
}

/* ===== CART PAGE - PREMIUM PROFESSIONAL DESIGN ===== */
.woocommerce-cart .page-wrapper {
    background: radial-gradient(ellipse at 20% 20%, rgba(255,107,107,0.04) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(155,89,182,0.03) 0%, transparent 50%), linear-gradient(180deg, #0c0c14 0%, #0f0f1a 30%, #0a0a12 70%, #0e0e18 100%) !important;
    min-height: 100vh !important;
}

.woocommerce-cart .content-page,
.woocommerce-cart .woocommerce {
    color: #ffffff !important;
}

/* Page title styling */
.woocommerce-cart h1.page-title,
.woocommerce-cart .cart-title,
.woocommerce-cart .entry-title {
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 40px !important;
    position: relative !important;
    padding-bottom: 16px !important;
}

.woocommerce-cart h1.page-title:after,
.woocommerce-cart .cart-title:after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f) !important;
    border-radius: 3px !important;
}

/* Main cart container */
.woocommerce-cart .woocommerce-cart-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%) !important;
    backdrop-filter: blur(40px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 28px !important;
    padding: 40px !important;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 107, 107, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

.woocommerce-cart table.shop_table {
    background: transparent !important;
    border: none !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
}

/* Table header - Minimal professional */
.woocommerce-cart table.shop_table thead th {
    color: rgba(255, 255, 255, 0.35) !important;
    font-weight: 600 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    padding: 12px 24px !important;
    border: none !important;
}

/* Cart item rows - Premium floating cards */
.woocommerce-cart table.shop_table tbody tr {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    position: relative !important;
    overflow: hidden !important;
}

.woocommerce-cart table.shop_table tbody tr:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%) !important;
    border-color: rgba(255, 107, 107, 0.2) !important;
    transform: translateY(-4px) scale(1.01) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 107, 107, 0.08), 0 0 0 1px rgba(255, 107, 107, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    z-index: 2 !important;
}

.woocommerce-cart table.shop_table tbody tr::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 10% !important;
    right: 10% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent) !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
}

.woocommerce-cart table.shop_table tbody tr:hover::after {
    opacity: 1 !important;
}

.woocommerce-cart table.shop_table tbody td {
    padding: 28px 24px !important;
    border: none !important;
    vertical-align: middle !important;
}

.woocommerce-cart table.shop_table tbody td:first-child {
    border-radius: 20px 0 0 20px !important;
}

.woocommerce-cart table.shop_table tbody td:last-child {
    border-radius: 0 20px 20px 0 !important;
}

/* Product thumbnail */
.woocommerce-cart .product-thumbnail img {
    border-radius: 14px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.woocommerce-cart table.shop_table tbody tr:hover .product-thumbnail img {
    transform: scale(1.08) translateY(-2px) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

/* Product name */
.woocommerce-cart .product-name a {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    letter-spacing: -0.2px !important;
}

.woocommerce-cart .product-name a:hover {
    color: #ff6b6b !important;
}

/* Product variation text */
.woocommerce-cart .product-name .variation {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px !important;
    margin-top: 6px !important;
    font-weight: 500 !important;
}

/* Remove button - Premium */
.woocommerce-cart .product-remove a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 71, 87, 0.08) !important;
    border: 1px solid rgba(255, 71, 87, 0.15) !important;
    border-radius: 12px !important;
    color: #ff6b6b !important;
    font-size: 18px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.woocommerce-cart .product-remove a:hover {
    background: #ff4757 !important;
    color: #ffffff !important;
    transform: rotate(90deg) scale(1.1) !important;
    border-color: #ff4757 !important;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3) !important;
}

/* Price styling - Premium */
.woocommerce-cart .product-price {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    font-size: 15px !important;
}

.woocommerce-cart .product-subtotal {
    color: #ff6b6b !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* Quantity - Clean white */
.woocommerce-cart .quantity input {
    background: #ffffff !important;
    color: #333333 !important;
    border: 2px solid rgba(0,0,0,0.08) !important;
    border-radius: 12px !important;
    height: 48px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    text-align: center !important;
}

/* Cart totals - Premium glass card */
.cart_totals,
.cart-collaterals .cart_totals {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%) !important;
    backdrop-filter: blur(40px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 28px !important;
    padding: 36px !important;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 107, 107, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: sticky !important;
    top: 30px !important;
}

.cart_totals:hover {
    border-color: rgba(255, 107, 107, 0.15) !important;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 107, 107, 0.06), 0 0 0 1px rgba(255, 107, 107, 0.15) !important;
    transform: translateY(-2px) !important;
}

.cart_totals h2 {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    position: relative !important;
    padding-bottom: 16px !important;
}

.cart_totals h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f) !important;
    border-radius: 2px !important;
}

.cart_totals table {
    background: transparent !important;
}

.cart_totals table th {
    color: rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
    padding: 16px 0 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.cart_totals table td {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
    padding: 16px 0 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-align: right !important;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    color: #ff6b6b !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    border-top: 2px solid rgba(255, 107, 107, 0.15) !important;
    padding-top: 20px !important;
    margin-top: 10px !important;
}

/* Checkout button - Premium glow */
.cart_totals .checkout-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 18px 32px !important;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.35) !important;
    margin-top: 24px !important;
    position: relative !important;
    overflow: hidden !important;
}

.cart_totals .checkout-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
    transition: left 0.6s ease !important;
}

.cart_totals .checkout-button:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.45) !important;
    background: linear-gradient(135deg, #ff5252 0%, #e0485e 100%) !important;
}

.cart_totals .checkout-button:hover::before {
    left: 100% !important;
}

/* Cart actions */
.woocommerce-cart .actions {
    background: transparent !important;
    padding: 20px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
    margin-top: 20px !important;
}

.woocommerce-cart .actions .button {
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    font-size: 14px !important;
    cursor: pointer !important;
}

.woocommerce-cart .actions .button:hover {
    background: rgba(255, 107, 107, 0.1) !important;
    border-color: rgba(255, 107, 107, 0.25) !important;
    color: #ff6b6b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.15) !important;
}

.woocommerce-cart .actions .button[name="update_cart"] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3) !important;
}

.woocommerce-cart .actions .button[name="update_cart"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4) !important;
    background: linear-gradient(135deg, #ff5252 0%, #e0485e 100%) !important;
}

/* Coupon section - Premium */
.woocommerce-cart .coupon {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    display: flex !important;
    gap: 14px !important;
    align-items: center !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.woocommerce-cart .coupon input[type="text"] {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    flex: 1 !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .coupon input[type="text"]:focus {
    border-color: rgba(255, 107, 107, 0.3) !important;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.1) !important;
    outline: none !important;
}

.woocommerce-cart .coupon input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.woocommerce-cart .coupon button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3) !important;
    white-space: nowrap !important;
}

.woocommerce-cart .coupon button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4) !important;
    background: linear-gradient(135deg, #ff5252 0%, #e0485e 100%) !important;
}

/* Continue shopping link - Premium */
.woocommerce-cart .return-to-shop a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.woocommerce-cart .return-to-shop a:hover {
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(255,107,107,0.05) 100%) !important;
    border-color: rgba(255, 107, 107, 0.25) !important;
    color: #ff6b6b !important;
    transform: translateX(-6px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.15) !important;
}

/* Empty cart - Premium */
.woocommerce-cart .cart-empty {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%) !important;
    backdrop-filter: blur(40px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 28px !important;
    padding: 80px 40px !important;
    text-align: center !important;
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.04) !important;
    line-height: 1.6 !important;
}

.woocommerce-cart .cart-empty:before {
    content: '🛒' !important;
    display: block !important;
    font-size: 56px !important;
    margin-bottom: 24px !important;
    filter: drop-shadow(0 8px 20px rgba(255, 107, 107, 0.2)) !important;
    animation: cartBounce 2s ease-in-out infinite !important;
}

@keyframes cartBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.woocommerce-cart .return-to-shop {
    text-align: center !important;
    margin-top: 30px !important;
}

/* Messages - Premium glass */
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%) !important;
    backdrop-filter: blur(20px) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 18px 24px !important;
    margin-bottom: 24px !important;
    border-left: 3px solid #ff6b6b !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.04) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
    color: #ff6b6b !important;
}

/* Cart page responsive - Premium */
@media (max-width: 768px) {
    .woocommerce-cart .woocommerce-cart-form {
        padding: 24px 16px !important;
        border-radius: 20px !important;
    }
    
    .woocommerce-cart table.shop_table tbody td {
        padding: 20px 16px !important;
    }
    
    .woocommerce-cart .coupon {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 20px !important;
        gap: 12px !important;
    }
    
    .woocommerce-cart .coupon button {
        width: 100% !important;
    }
    
    .cart_totals,
    .cart-collaterals .cart_totals {
        padding: 24px !important;
        border-radius: 20px !important;
        margin-top: 24px !important;
    }
    
    .woocommerce-cart h1.page-title,
    .woocommerce-cart .cart-title {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    
    .woocommerce-cart .product-thumbnail img {
        max-width: 80px !important;
    }
}

.return-to-shop a,
.woocommerce .return-to-shop a {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.return-to-shop a:hover,
.woocommerce .return-to-shop a:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4) !important;
    background: linear-gradient(135deg, #ff5252 0%, #e0485e 100%) !important;
}

/* ===== CART PAGE AMBIENT GLOW EFFECTS ===== */
.woocommerce-cart .woocommerce-cart-form::after {
    content: '' !important;
    position: absolute !important;
    top: -100px !important;
    right: -100px !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(255,107,107,0.03) 0%, transparent 70%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Subtle noise texture overlay for premium feel */
.woocommerce-cart .page-wrapper::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E") !important;
    pointer-events: none !important;
    z-index: 1 !important;
    opacity: 0.4 !important;
}

/* Cart breadcrumb/step indicator styling */
.woocommerce-cart .cart-checkout-nav,
.woocommerce-cart .et-cart-checkout-nav {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    padding: 16px 24px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.woocommerce-cart .cart-checkout-nav a,
.woocommerce-cart .et-cart-checkout-nav a {
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: color 0.3s ease !important;
}

.woocommerce-cart .cart-checkout-nav a.active,
.woocommerce-cart .et-cart-checkout-nav a.active,
.woocommerce-cart .cart-checkout-nav .current,
.woocommerce-cart .et-cart-checkout-nav .current {
    color: #ff6b6b !important;
}

/* Smooth scrollbar for cart page */
.woocommerce-cart ::-webkit-scrollbar {
    width: 6px !important;
}

.woocommerce-cart ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 3px !important;
}

.woocommerce-cart ::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 107, 0.3) !important;
    border-radius: 3px !important;
}

.woocommerce-cart ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 107, 0.5) !important;
}

/* ===== COMPARE & WISHLIST PAGES (XStore) ===== */
/* XStore uses .et-compare-page and .et-wishlist-page wrappers */
.et-compare-page,
.et-wishlist-page,
.et-compare-page-content,
.et-wishlist-page-content,
[class*="compare-page"],
[class*="wishlist-page"],
body .content-page .et-compare-page,
body .content-page .et-wishlist-page {
    background: var(--eta-bg-dark, #0a0a0a) !important;
    color: var(--eta-text, #ffffff) !important;
}

/* XStore compare/wishlist main content area */
.et-compare-page *,
.et-wishlist-page * {
    color: var(--eta-text, #ffffff);
}

.et-compare-page p,
.et-wishlist-page p,
.et-compare-page span,
.et-wishlist-page span {
    color: var(--eta-text-muted, #a0a0a0) !important;
}

.et-compare-page h1,
.et-compare-page h2,
.et-compare-page h3,
.et-wishlist-page h1,
.et-wishlist-page h2,
.et-wishlist-page h3 {
    color: var(--eta-text, #ffffff) !important;
}

.et-compare-page a,
.et-wishlist-page a {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* Tables */
.et-compare-page table,
.et-wishlist-page table,
.et-compare-page-content table,
.et-wishlist-page-content table,
.compare-table,
.wishlist-table {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.et-compare-page th,
.et-wishlist-page th,
.et-compare-page-content th,
.et-wishlist-page-content th {
    background: rgba(255,255,255,0.03) !important;
    color: var(--eta-text, #ffffff) !important;
    border-color: rgba(255,255,255,0.06) !important;
}

.et-compare-page td,
.et-wishlist-page td,
.et-compare-page-content td,
.et-wishlist-page-content td {
    color: var(--eta-text-muted, #a0a0a0) !important;
    border-color: rgba(255,255,255,0.06) !important;
    background: transparent !important;
}

/* Product titles in compare/wishlist */
.et-compare-page .product-title,
.et-wishlist-page .product-title,
.et-compare-product-title,
.et-wishlist-product-title {
    color: var(--eta-text, #ffffff) !important;
}

/* Prices */
.et-compare-page .amount,
.et-wishlist-page .amount,
.et-compare-product-price .amount,
.et-wishlist-product-price .amount {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* Remove buttons */
.et-compare-page .remove,
.et-wishlist-page .remove,
.et-remove-compare,
.et-remove-wishlist {
    color: rgba(255,255,255,0.4) !important;
    transition: color 0.3s !important;
}

.et-compare-page .remove:hover,
.et-wishlist-page .remove:hover,
.et-remove-compare:hover,
.et-remove-wishlist:hover {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* Empty compare/wishlist messages */
.et-compare-page .empty-compare,
.et-compare-page .woocommerce-info,
.et-wishlist-page .empty-wishlist,
.et-wishlist-page .woocommerce-info,
.et-compare-page-content .empty-compare,
.et-wishlist-page-content .empty-wishlist,
.woocommerce-wishlist .wishlist-empty,
.empty-compare-wishlist {
    background: var(--eta-bg-card, #111111) !important;
    color: var(--eta-text-muted, #a0a0a0) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    padding: 48px 24px !important;
    text-align: center;
}

/* XStore "Return to shop" style buttons on empty pages */
.et-compare-page .button,
.et-wishlist-page .button {
    background: var(--eta-primary, #ff6b6b) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
}

/* ===== CHECKOUT PAGE ===== */
.woocommerce-checkout .content-page {
    color: var(--eta-text, #ffffff) !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
    color: var(--eta-text, #ffffff) !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
}

.woocommerce-checkout #payment {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
}

.woocommerce-checkout #payment .payment_methods {
    border-color: rgba(255,255,255,0.06) !important;
}

.woocommerce-checkout #payment .payment_methods li {
    border-color: rgba(255,255,255,0.06) !important;
    color: var(--eta-text, #ffffff) !important;
}

.woocommerce-checkout #payment .payment_methods li label {
    color: var(--eta-text, #ffffff) !important;
}

/* ===== SINGLE PRODUCT PAGE ===== */
.single-product .summary .product_title {
    color: var(--eta-text, #ffffff) !important;
}

.single-product .summary .price .amount {
    color: var(--eta-primary, #ff6b6b) !important;
    font-size: 28px !important;
}

.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-product-details__short-description p {
    color: var(--eta-text-muted, #a0a0a0) !important;
}

.single-product .woocommerce-tabs .tabs li a {
    color: var(--eta-text-muted, #a0a0a0) !important;
}

.single-product .woocommerce-tabs .tabs li.active a {
    color: var(--eta-primary, #ff6b6b) !important;
}

.single-product .woocommerce-Tabs-panel {
    color: var(--eta-text-muted, #a0a0a0) !important;
}

/* ===== SHOP / ARCHIVE PRODUCT PAGES ===== */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--eta-text, #ffffff) !important;
}

.woocommerce ul.products li.product .price {
    color: var(--eta-text, #ffffff) !important;
}

/* ===== COUPON FIELD IN CART/CHECKOUT ===== */
.woocommerce .coupon input[type="text"] {
    background: var(--eta-bg-dark, #0a0a0a) !important;
    color: var(--eta-text, #ffffff) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
}

/* ===== NOTICES ===== */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
    background: var(--eta-bg-card, #111111) !important;
    color: var(--eta-text, #ffffff) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
}

/* ===== PREVENT OVERRIDE - HIGH SPECIFICITY ===== */

/* All content pages - dark bg */
.content-page,
.page-wrapper .content-page,
.template-content .content-page,
body .page-wrapper .content-page,
body .content-page {
    background: var(--eta-bg-dark, #0a0a0a) !important;
    color: var(--eta-text, #ffffff) !important;
}

/* WooCommerce specific pages */
body.woocommerce-account .page-wrapper .content-page,
body.woocommerce-cart .page-wrapper .content-page,
body.woocommerce-checkout .page-wrapper .content-page,
body .page-wrapper .et-compare-page-content,
body .page-wrapper .et-wishlist-page-content {
    background: var(--eta-bg-dark, #0a0a0a) !important;
    color: var(--eta-text, #ffffff) !important;
}

body.woocommerce-account .page-wrapper,
body.woocommerce-cart .page-wrapper,
body.woocommerce-checkout .page-wrapper {
    background: var(--eta-bg-dark, #0a0a0a) !important;
}

body.woocommerce-account .content-page > *,
body.woocommerce-cart .content-page > * {
    color: var(--eta-text, #ffffff);
}

/* ALL text elements - ensure visibility */
.content-page p,
.content-page span,
.content-page li,
.content-page td,
.content-page th,
.content-page label,
.content-page div {
    color: inherit;
}

.content-page h1,
.content-page h2,
.content-page h3,
.content-page h4,
.content-page h5,
.content-page h6 {
    color: var(--eta-text, #ffffff) !important;
}

/* Sidebar widgets */
.sidebar,
.widget-area,
.widget,
aside {
    background: transparent !important;
    color: var(--eta-text, #ffffff) !important;
}

.widget h2,
.widget h3,
.widget-title {
    color: var(--eta-text, #ffffff) !important;
}

.widget a {
    color: var(--eta-text-muted, #a0a0a0) !important;
}

.widget a:hover {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* Cart quantity buttons - WHITE BACKGROUND */
.woocommerce .quantity .minus,
.woocommerce .quantity .plus,
.woocommerce .quantity button {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #dddddd !important;
}

.woocommerce .quantity .minus:hover,
.woocommerce .quantity .plus:hover,
.woocommerce .quantity button:hover {
    background: #f5f5f5 !important;
    color: #ff6b6b !important;
}

/* Cart item price WHITE color */
.cart-item-details .woocommerce-Price-amount,
.cart-item-details .woocommerce-Price-currencySymbol,
.cart-order-details .woocommerce-Price-amount,
.cart-order-details .woocommerce-Price-currencySymbol,
table.cart .product-subtotal .woocommerce-Price-amount,
table.cart .product-subtotal .woocommerce-Price-currencySymbol,
.cart_totals .woocommerce-Price-amount,
.cart_totals .woocommerce-Price-currencySymbol,
.product-name-info .woocommerce-Price-amount,
.product-name-info .woocommerce-Price-currencySymbol {
    color: #ffffff !important;
}

/* Cart quantity wrapper white background */
.woocommerce-cart .quantity input,
.woocommerce-cart .quantity .quantity-wrapper,
.woocommerce-cart .quantity input[type="number"] {
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #dddddd !important;
}

/* Mini cart quantity */
.mini-cart-content .quantity input,
.mini-cart-content .quantity .quantity-wrapper {
    background: #ffffff !important;
    color: #333333 !important;
}

/* Ensure all amounts/prices visible */
.woocommerce .amount,
.woocommerce .price,
.woocommerce del .amount {
    color: var(--eta-text, #ffffff) !important;
}

.woocommerce ins .amount {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* ============================================
   QUANTITY WRAPPER - WHITE STYLING
   ============================================ */
.quantity .quantity-wrapper input.input-text {
    background-color: #ffffff !important;
    color: #333333 !important;
    font-weight: 600 !important;
}

.quantity-wrapper {
    background: #ffffff !important;
    border-radius: 8px !important;
    border: 1px solid #dddddd !important;
}

.quantity-wrapper span,
.quantity-wrapper .button,
.quantity-wrapper .qty_button,
.quantity-wrapper .minus,
.quantity-wrapper .plus,
.quantity-wrapper [class*="minus"],
.quantity-wrapper [class*="plus"] {
    color: #333333 !important;
    background: #ffffff !important;
}

.quantity-wrapper span:hover,
.quantity-wrapper .button:hover,
.quantity-wrapper .qty_button:hover,
.quantity-wrapper .minus:hover,
.quantity-wrapper .plus:hover {
    color: #ff6b6b !important;
    background: #f5f5f5 !important;
}

/* ============================================
   CART ITEM PRICE - WHITE
   ============================================ */
.cart-item-details > div > span,
.cart-order-details .product-name-info > div > span,
.cart-item-details .product-price,
.cart-item-details .woocommerce-Price-amount,
.cart-item-details .woocommerce-Price-currencySymbol,
.cart-order-details .woocommerce-Price-amount,
.cart-order-details .woocommerce-Price-currencySymbol {
    color: #e9e9e9 !important;
}

.cart_totals .woocommerce-Price-amount,
.cart_totals .woocommerce-Price-currencySymbol,
.cart_totals .product-quantity {
    color: #ffffff !important;
}

/* Cart item thumbnails background */
.woocommerce-cart .product-thumbnail {
    background: transparent !important;
}

/* Coupon form in cart */
.woocommerce-cart .coupon {
    background: transparent !important;
}

/* Plus and Minus signs color */
.quantity-wrapper .et-icon,
.quantity-wrapper span:before,
.quantity-wrapper span:after,
.quantity-wrapper .plus:before,
.quantity-wrapper .minus:before,
.quantity-wrapper .qty_button:before {
    color: #333333 !important;
}

.quantity-wrapper:hover .et-icon,
.quantity-wrapper:hover span:before,
.quantity-wrapper:hover span:after,
.quantity-wrapper .plus:hover:before,
.quantity-wrapper .minus:hover:before {
    color: #ff6b6b !important;
}

.woocommerce-cart .coupon label {
    color: var(--eta-text, #ffffff) !important;
}

/* Cart actions row */
.woocommerce-cart .actions {
    background: transparent !important;
}

.woocommerce-cart .actions .button {
    background: var(--eta-primary, #ff6b6b) !important;
    color: #ffffff !important;
}

/* ===== CUSTOM FOOTER STYLES ===== */
.eta-footer {
    position: relative;
    background: #060610 !important;
    overflow: hidden;
}

.eta-footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255,107,107,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.eta-footer-main {
    position: relative;
    padding: 70px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.eta-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.eta-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Brand column */
.eta-footer-logo {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.eta-footer-logo span {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eta-footer-tagline {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Social links */
.eta-footer-social {
    display: flex;
    gap: 10px;
}

.eta-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: rgba(255,255,255,0.5) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.eta-social-link:hover {
    background: rgba(255,107,107,0.15) !important;
    border-color: rgba(255,107,107,0.3);
    color: #ff6b6b !important;
    transform: translateY(-3px);
}

.eta-social-link svg {
    fill: currentColor !important;
    stroke: currentColor !important;
}

/* Column headings */
.eta-footer-heading {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 24px;
    padding-bottom: 12px;
    position: relative;
}

.eta-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, transparent);
    border-radius: 2px;
}

/* Footer links */
.eta-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.eta-footer-links li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.eta-footer-links li a {
    display: inline-block;
    color: rgba(255,255,255,0.45) !important;
    font-size: 14px;
    line-height: 1;
    padding: 7px 0;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    position: relative;
}

.eta-footer-links li a:hover {
    color: #ffffff !important;
    padding-left: 8px;
}

.eta-footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #ff6b6b;
    transition: width 0.25s ease;
}

.eta-footer-links li a:hover::before {
    width: 4px;
}

/* Security badge */
.eta-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 16px;
    background: rgba(255,107,107,0.08);
    border: 1px solid rgba(255,107,107,0.15);
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
}

.eta-footer-badge svg {
    color: #ff6b6b;
    stroke: #ff6b6b !important;
    fill: none !important;
    flex-shrink: 0;
}

/* Bottom bar */
.eta-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    background: rgba(0,0,0,0.3);
}

.eta-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.eta-footer-copyright {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    margin: 0;
}

.eta-footer-bottom-links {
    display: flex;
    gap: 24px;
}

.eta-footer-bottom-links a {
    color: rgba(255,255,255,0.3) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

.eta-footer-bottom-links a:hover {
    color: rgba(255,255,255,0.6) !important;
}

/* Hide old theme footer elements */
.et-footers-wrapper > .footer,
.et-footers-wrapper > .footer-bottom {
    display: none !important;
}

/* Footer responsive */
@media (max-width: 992px) {
    .eta-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 576px) {
    .eta-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .eta-footer-social {
        justify-content: center;
    }
    .eta-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .eta-footer-links li a {
        padding-left: 0;
    }
    .eta-footer-links li a:hover {
        padding-left: 0;
    }
    .eta-footer-links li a::before {
        display: none;
    }
    .eta-footer-badge {
        justify-content: center;
    }
    .eta-footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }
}

/* ===== BEAUTIFICATION: PAGE TITLE BAR ===== */
.page-heading,
.page-heading-default,
.title-section,
.page-title-section {
    background: linear-gradient(135deg, #0f0f1a 0%, #141428 50%, #0a1628 100%) !important;
    padding: 45px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    position: relative;
    overflow: hidden;
}

.page-heading::before,
.page-heading-default::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,107,107,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(83,82,237,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-heading h1,
.page-heading .title,
.page-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.85) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ===== BEAUTIFICATION: BREADCRUMBS ===== */
.breadcrumbs,
.woocommerce-breadcrumb,
.page-heading .breadcrumbs,
.breadcrumb {
    color: rgba(255,255,255,0.4) !important;
    font-size: 13px !important;
}

.breadcrumbs a,
.woocommerce-breadcrumb a,
.breadcrumb a {
    color: rgba(255,255,255,0.55) !important;
    transition: color 0.2s !important;
}

.breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover,
.breadcrumb a:hover {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* ===== BEAUTIFICATION: SINGLE PRODUCT PAGE ===== */
.single-product .summary .product_title {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
}

.single-product .summary .price {
    margin-bottom: 20px !important;
}

.single-product .summary .price del .amount {
    color: rgba(255,255,255,0.4) !important;
    font-size: 18px !important;
}

.single-product .summary .price ins .amount {
    color: var(--eta-primary, #ff6b6b) !important;
    font-size: 30px !important;
    font-weight: 800 !important;
}

/* Product gallery */
.single-product .woocommerce-product-gallery {
    background: var(--eta-bg-card, #111111) !important;
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06) !important;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
    border-radius: 8px !important;
    border: 2px solid transparent !important;
    transition: border-color 0.3s !important;
    opacity: 0.6;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img:hover,
.single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    border-color: var(--eta-primary, #ff6b6b) !important;
    opacity: 1;
}

/* Product meta */
.single-product .product_meta {
    padding-top: 20px !important;
    margin-top: 20px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}

.single-product .product_meta > span {
    display: block !important;
    margin-bottom: 8px !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 13px !important;
}

.single-product .product_meta a {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* Product tabs */
.single-product .woocommerce-tabs {
    margin-top: 40px !important;
}

.single-product .woocommerce-tabs .tabs {
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    margin-bottom: 0 !important;
    background: transparent !important;
}

.single-product .woocommerce-tabs .tabs::before,
.single-product .woocommerce-tabs .tabs::after {
    display: none !important;
}

.single-product .woocommerce-tabs .tabs li {
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single-product .woocommerce-tabs .tabs li a {
    padding: 14px 24px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.3s !important;
}

.single-product .woocommerce-tabs .tabs li.active a {
    border-bottom-color: var(--eta-primary, #ff6b6b) !important;
    color: var(--eta-primary, #ff6b6b) !important;
}

.single-product .woocommerce-Tabs-panel {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-top: none !important;
    border-radius: 0 0 12px 12px !important;
    padding: 30px !important;
}

/* Related products */
.single-product .related.products > h2,
.single-product .upsells > h2 {
    color: var(--eta-text, #ffffff) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
}

/* ===== BEAUTIFICATION: SHOP PAGE PRODUCT CARDS ===== */
.woocommerce ul.products li.product {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product:hover {
    border-color: rgba(255,107,107,0.2) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,107,107,0.1) !important;
}

.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .product-image-wrapper img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.woocommerce ul.products li.product:hover a img,
.woocommerce ul.products li.product:hover .product-image-wrapper img {
    transform: scale(1.05) !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 12px 16px 4px !important;
}

.woocommerce ul.products li.product .price {
    padding: 0 16px 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.woocommerce ul.products li.product .price ins .amount {
    color: var(--eta-primary, #ff6b6b) !important;
}

.woocommerce ul.products li.product .price del {
    opacity: 0.5;
    font-size: 13px !important;
}

/* Sale badge on shop */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
    background: var(--eta-primary, #ff6b6b) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    padding: 4px 10px !important;
}

/* Add to cart button on shop grid */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    background: var(--eta-primary, #ff6b6b) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 10px 20px !important;
    transition: all 0.3s !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
    background: var(--eta-primary-hover, #e85555) !important;
    transform: translateY(-1px) !important;
}

/* ===== BEAUTIFICATION: EMPTY CART ===== */
.woocommerce-cart .cart-empty {
    text-align: center !important;
    padding: 60px 24px !important;
    font-size: 18px !important;
}

.woocommerce-cart .return-to-shop {
    text-align: center !important;
    margin-top: 24px !important;
}

/* Cart step indicators */
.cart-checkout-nav,
.et-cart-checkout-nav,
.checkout-steps {
    background: var(--eta-bg-card, #111111) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    margin-bottom: 30px !important;
}

.cart-checkout-nav a,
.et-cart-checkout-nav a,
.checkout-steps a {
    color: rgba(255,255,255,0.4) !important;
    font-weight: 600 !important;
    transition: color 0.3s !important;
}

.cart-checkout-nav a.active,
.cart-checkout-nav .current,
.et-cart-checkout-nav a.active,
.checkout-steps .active {
    color: var(--eta-primary, #ff6b6b) !important;
}

/* ===== BEAUTIFICATION: SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== BEAUTIFICATION: CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,107,107,0.4);
}

/* ===== BEAUTIFICATION: TEXT SELECTION ===== */
::selection {
    background: rgba(255,107,107,0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255,107,107,0.3);
    color: #ffffff;
}

/* ===== BEAUTIFICATION: IMAGE HOVER EFFECTS ===== */
.woocommerce .product-image-wrapper {
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
}

/* ===== BEAUTIFICATION: LOADING/SKELETON ===== */
.woocommerce .blockUI.blockOverlay {
    background: rgba(10,10,10,0.7) !important;
}

.woocommerce .blockUI.blockOverlay::before {
    border-color: var(--eta-primary, #ff6b6b) transparent transparent !important;
}

/* ===== BEAUTIFICATION: BACK TO TOP ===== */
.back-top,
.et-back-to-top,
#scrollToTop {
    background: var(--eta-primary, #ff6b6b) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3) !important;
}

/* ===== BEAUTIFICATION: 404 PAGE ===== */
.error404 .content-page {
    text-align: center !important;
    padding: 80px 24px !important;
}

.error404 h1 {
    font-size: clamp(4rem, 10vw, 8rem) !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, var(--eta-primary, #ff6b6b), #5352ed) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* ===== BEAUTIFICATION: TRANSITION POLISH ===== */
a, button, input, .button, .btn, .product-card {
    transition: all 0.3s ease !important;
}

/* ===== HERO BUTTONS - STAY IN ROW ON MOBILE ===== */
@media (max-width: 768px) {
    /* Elementor hero section buttons - force row layout */
    .elementor-section-wrap > .elementor-section:first-child .elementor-button-wrapper,
    .elementor-element .elementor-widget-wrap > .elementor-widget-button {
        width: auto !important;
    }

    /* Elementor inner section with buttons - keep them in a row */
    .elementor-section-wrap > .elementor-section:first-child .elementor-row,
    .elementor-section-wrap > .elementor-section:first-child .elementor-container {
        flex-wrap: nowrap !important;
    }

    .elementor-section-wrap > .elementor-section:first-child .elementor-column.elementor-col-50 {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    /* Generic: any Elementor inner section with 2 button widgets side by side */
    .elementor-inner-section .elementor-row .elementor-column .elementor-widget-button .elementor-button {
        white-space: nowrap;
        padding: 12px 20px !important;
        font-size: 13px !important;
    }
}

/* ===== RESPONSIVE WHATSAPP ===== */
@media (max-width: 768px) {
    .eta-wa-float {
        bottom: 16px;
        right: 16px;
    }
    .eta-wa-btn {
        width: 52px;
        height: 52px;
    }
    .eta-wa-icon {
        width: 26px;
        height: 26px;
    }
    .eta-wa-tooltip {
        display: none;
    }
    .eta-coupon-bar {
        font-size: 11px;
        padding: 8px 0;
    }
    .eta-coupon-inner {
        padding: 0 36px 0 12px;
    }
}

@media (max-width: 480px) {
    .eta-wa-btn {
        width: 48px;
        height: 48px;
    }
    .eta-wa-icon {
        width: 24px;
        height: 24px;
    }
    .eta-coupon-bar {
        font-size: 10px;
    }
}
