/*
Theme Name: Hair Extensions BD - Professional
Author: Gokul
Description: Premium E-commerce Layout for Hair Extensions with Modern Design
Version: 10.0.0
*/

/* ============================================= */
/* 🔥 রুট ভেরিয়েবল (ব্র্যান্ড কালার) */
/* ============================================= */
:root {
    --primary: #D4A5A5;
    --primary-dark: #B88282;
    --secondary: #2C3E50;
    --secondary-light: #34495E;
    --accent: #E53E3E;
    --accent-hover: #C62828;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #1A202C;
    --text-muted: #718096;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================= */
/* 🔥 বেসিক রিসেট ও টাইপোগ্রাফি */
/* ============================================= */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: 'Hind Siliguri', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    -webkit-tap-highlight-color: transparent; 
}

html, body { 
    height: 100%; 
    scroll-behavior: smooth;
}

body { 
    display: flex; 
    flex-direction: column; 
    background: var(--bg-light); 
    color: var(--text-dark); 
    line-height: 1.6;
}

.main-content-wrapper { 
    flex: 1 0 auto; 
    padding-bottom: 30px; 
}

.container { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px; 
}

/* ============================================= */
/* 🔥 হেডার */
/* ============================================= */
.top-announcement { 
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); 
    color: #fff; 
    padding: 8px 0; 
    font-size: 13px; 
    font-weight: 500; 
    text-align: center;
    letter-spacing: 0.5px;
}

.app-header { 
    background: var(--bg-white); 
    position: sticky; 
    top: 0; 
    z-index: 999; 
    border-bottom: 1px solid var(--border-color); 
    box-shadow: var(--shadow-sm); 
}

.app-header-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 10px 16px; 
    height: 64px; 
    max-width: 1200px; 
    margin: 0 auto;
}

/* লোগো স্টাইল */
.app-header .logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.app-header .logo span {
    color: var(--primary);
}

/* মোবাইল মেনু আইকন */
.menu-icon { 
    width: 26px; 
    cursor: pointer; 
    display: flex; 
    flex-direction: column; 
    gap: 5px; 
}
.menu-icon span { 
    height: 2.5px; 
    background: var(--secondary); 
    border-radius: 2px; 
    width: 100%; 
    transition: var(--transition);
}
.menu-icon:hover span { background: var(--primary); }

/* সার্চ আইকন */
.search-icon { 
    font-size: 18px; 
    cursor: pointer; 
    background: var(--bg-light); 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: var(--transition);
    color: var(--secondary);
}
.search-icon:hover { 
    background: var(--primary); 
    color: #fff;
}

/* ============================================= */
/* 🔥 হোম ব্যানার */
/* ============================================= */
.home-banner-container { 
    width: 100%; 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    margin-bottom: 25px; 
    background: var(--secondary); 
    box-shadow: var(--shadow-md);
}

.home-banner-wrapper { 
    display: flex; 
    overflow-x: hidden; 
    scroll-behavior: smooth; 
    width: 100%; 
}
.home-banner-slide { min-width: 100%; }
.home-banner-slide img { 
    width: 100%; 
    display: block; 
    object-fit: cover; 
    border-radius: var(--radius-lg); 
    max-height: 420px; 
    min-height: 200px;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

/* ============================================= */
/* 🔥 সেকশন হেডিং */
/* ============================================= */
.section-heading { 
    text-align: center; 
    margin: 30px 0 22px; 
}
.section-heading h2 { 
    font-size: 26px; 
    font-weight: 800; 
    color: var(--text-dark); 
    display: inline-block; 
    position: relative; 
}
.section-heading h2 span { 
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-heading h2::after { 
    content: ''; 
    position: absolute; 
    bottom: -8px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 60px; 
    height: 3px; 
    background: linear-gradient(90deg, var(--primary), var(--accent)); 
    border-radius: 2px; 
}
.section-heading p { 
    font-size: 14px; 
    color: var(--text-muted); 
    margin-top: 12px; 
}

/* ============================================= */
/* 🔥 প্রোডাক্ট গ্রিড */
/* ============================================= */
.pro-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px; 
}
@media (min-width: 480px) { 
    .pro-grid { gap: 18px; } 
}
@media (min-width: 768px) { 
    .pro-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } 
}
@media (min-width: 1024px) { 
    .pro-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; } 
}

/* ============================================= */
/* 🔥 প্রোডাক্ট কার্ড */
/* ============================================= */
.pro-card { 
    background: var(--bg-white); 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.6);
}
.pro-card:hover { 
    transform: translateY(-6px); 
    box-shadow: var(--shadow-md); 
    border-color: var(--primary);
}

/* ব্যাজ (নতুন/বেস্টসেলার) */
.pro-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pro-badge.bestseller {
    background: var(--secondary);
}

/* ============================================= */
/* 🔥 ইমেজ স্লাইডার (কার্ডে) */
/* ============================================= */
.card-slider-container { 
    width: 100%; 
    height: 210px; 
    position: relative; 
    overflow: hidden; 
    background: #f7fafc;
    cursor: pointer;
}
@media (min-width: 768px) { 
    .card-slider-container { height: 260px; } 
}

.card-slider-wrapper { 
    display: flex; 
    overflow-x: hidden; 
    scroll-behavior: smooth; 
    height: 100%;
    -webkit-overflow-scrolling: touch;
}
.card-slide { 
    min-width: 100%; 
    height: 100%;
    flex-shrink: 0;
    position: relative;
}
.card-slide a { display: block; width: 100%; height: 100%; cursor: pointer; }
.card-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
    transition: transform 0.6s ease;
}
.pro-card:hover .card-slide img { transform: scale(1.03); }

/* ডটস */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2);
}
.slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    border-color: var(--primary);
}

/* ============================================= */
/* 🔥 প্রোডাক্ট ইনফো */
/* ============================================= */
.pro-info { 
    padding: 14px 16px 18px; 
    text-align: center; 
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pro-title { 
    font-size: 15px; 
    font-weight: 700; 
    line-height: 1.4; 
    height: 42px; 
    overflow: hidden; 
    margin: 0 0 6px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.pro-title a { 
    text-decoration: none; 
    color: var(--text-dark); 
    transition: var(--transition); 
}
.pro-title a:hover { color: var(--accent); }

/* ============================================= */
/* 🔥 স্টার রেটিং */
/* ============================================= */
.star-rating { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 6px; 
    margin: 4px 0 8px; 
}
.stars-container { display: flex; gap: 2px; }
.star { 
    font-size: 15px; 
    color: #E2E8F0; 
    letter-spacing: 1px;
}
.star.full { color: #F6AD55; }
.star.half { color: #F6AD55; position: relative; display: inline-block; }
.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #E2E8F0;
}
.star.empty { color: #E2E8F0; }
.rating-number { 
    font-size: 13px; 
    font-weight: 600; 
    color: var(--text-muted); 
    background: var(--bg-light); 
    padding: 0 10px; 
    border-radius: 4px; 
}

/* ============================================= */
/* 🔥 প্রাইস বক্স */
/* ============================================= */
.price-box { 
    margin: 4px 0 12px; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.current-price { 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--accent); 
}
.old-price { 
    font-size: 15px; 
    color: #A0AEC0; 
    text-decoration: line-through; 
}
.discount-percent { 
    font-size: 12px; 
    font-weight: 700; 
    color: #38A169; 
    background: #C6F6D5; 
    padding: 2px 10px; 
    border-radius: 20px; 
}

/* ============================================= */
/* 🔥 অর্ডার বাটন (কার্ডে) */
/* ============================================= */
.btn-smooth-zoom {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); 
    color: #fff; 
    text-align: center; 
    padding: 13px 18px;
    border-radius: var(--radius); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 14px;
    width: 100%; 
    margin-top: auto;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-smooth-zoom:hover { 
    background: linear-gradient(135deg, var(--accent), var(--accent-hover)); 
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.35);
    transform: translateY(-2px);
}
.btn-smooth-zoom::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    transform: rotate(45deg);
    transition: 0.6s;
    opacity: 0;
}
.btn-smooth-zoom:hover::after {
    opacity: 1;
    left: 100%;
}

/* ============================================= */
/* 🔥 ফুটার */
/* ============================================= */
.seba-dark-footer { 
    flex-shrink: 0; 
    background: var(--secondary) !important; 
    color: #E2E8F0 !important; 
    padding: 45px 20px 110px !important; 
    margin-top: 50px; 
}
.seba-dark-footer a { 
    color: #A0AEC0; 
    transition: var(--transition); 
    text-decoration: none;
}
.seba-dark-footer a:hover { color: var(--primary); }

.widget-title { 
    font-size: 18px; 
    font-weight: 700; 
    color: #FFFFFF !important; 
    position: relative; 
    padding-bottom: 12px; 
    margin-bottom: 18px;
}
.widget-title::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 40px; 
    height: 3px; 
    background: linear-gradient(90deg, var(--primary), var(--accent)); 
    border-radius: 2px; 
}

/* ============================================= */
/* 🔥 বটম নেভিগেশন (মোবাইলে) */
/* ============================================= */
.app-bottom-nav { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: var(--bg-white); 
    display: flex; 
    justify-content: space-around; 
    align-items: center; 
    height: 64px; 
    border-top: 1px solid var(--border-color); 
    z-index: 1000; 
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06); 
}
.nav-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    color: var(--text-muted); 
    font-size: 11px; 
    font-weight: 500; 
    width: 25%; 
    transition: var(--transition);
    gap: 2px;
}
.nav-icon { 
    font-size: 22px; 
    margin-bottom: 1px; 
}
.nav-item.active { 
    color: var(--accent); 
    font-weight: 700; 
}
.nav-item.active .nav-icon {
    transform: scale(1.1);
}

/* ============================================= */
/* 🔥 ক্যাটাগরি স্লাইডার (চতুর্ভুজ) */
/* ============================================= */
.cat-section-wrapper { margin: 30px 0 20px; }
.cat-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 8px 0;
}
.cat-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}
.cat-carousel-track::-webkit-scrollbar { display: none; }

.square-cat-card {
    flex: 0 0 auto;
    width: 150px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}
.square-cat-card:hover { transform: translateY(-6px); }

.square-cat-img-box {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.square-cat-card:hover .square-cat-img-box {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(212, 165, 165, 0.3);
}
.square-cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.square-cat-card:hover .square-cat-img-box img { transform: scale(1.06); }

.square-cat-title {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================= */
/* 🔥 রিভিউ স্লাইডার */
/* ============================================= */
.review-slider-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}
.review-slider-track {
    display: flex;
    gap: 18px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}
.review-slide {
    min-width: 320px;
    flex-shrink: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    gap: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.review-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.review-slider-prev,
.review-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 62, 80, 0.8);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: var(--transition);
}
.review-slider-prev:hover,
.review-slider-next:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}
.review-slider-prev { left: 5px; }
.review-slider-next { right: 5px; }

/* ============================================= */
/* 🔥 সিঙ্গেল প্রোডাক্ট পেজ */
/* ============================================= */
.bgmart-slider-box {
    position: relative;
    width: 100%;
    background: var(--bg-white);
    overflow: hidden;
    border-radius: var(--radius);
}
.bgmart-slider-wrapper {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.bgmart-slider-wrapper::-webkit-scrollbar { display: none; }
.bgmart-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    background: var(--bg-white);
}
.bgmart-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.bgmart-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
    background: rgba(0,0,0,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.bgmart-slider-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}
.bgmart-slider-dots .dot.active {
    background: var(--primary);
    width: 18px;
    border-radius: 10px;
}

/* LED অফার বক্স */
.compact-ticket-box {
    position: relative;
    padding: 14px 18px;
    background: #fff5f5;
    border-radius: var(--radius);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    margin: 18px 0;
    overflow: hidden;
    z-index: 1;
}
.compact-ticket-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--accent), var(--accent-hover));
    animation: rotateBorder 3s linear infinite;
    z-index: -2;
}
.compact-ticket-box::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #fff5f5;
    border-radius: 10px;
    z-index: -1;
}
@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* অর্ডার বাটন (সিঙ্গেল) */
.btn-updown-smooth {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.35);
    animation: btnUpDown 2.5s infinite ease-in-out;
    transition: var(--transition);
}
.btn-updown-smooth:hover {
    background: linear-gradient(135deg, var(--accent-hover), #B71C1C);
    transform: scale(1.02);
}
@keyframes btnUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(229, 57, 53, 0.5); }
}

/* কন্টাক্ট বাটন গ্রিড */
.contact-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}
.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 4px;
    border-radius: var(--radius);
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}
.c-btn:hover { 
    transform: translateY(-3px); 
    opacity: 0.9; 
}
.btn-call { background: #1E88E5; }
.btn-wa { background: #2E7D32; }
.btn-msg { background: #0084FF; }

/* রেকমেন্ডেড প্রোডাক্ট বাটন */
.rec-btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--secondary);
    color: #fff !important;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius);
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.rec-btn-order:hover { 
    background: var(--accent); 
    transform: translateY(-2px);
}

/* ============================================= */
/* 🔥 অ্যানিমেশন (কার্ড লোডিং) */
/* ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.pro-card {
    animation: fadeInUp 0.5s ease forwards;
}
.pro-card:nth-child(2) { animation-delay: 0.08s; }
.pro-card:nth-child(3) { animation-delay: 0.16s; }
.pro-card:nth-child(4) { animation-delay: 0.24s; }
.pro-card:nth-child(5) { animation-delay: 0.32s; }
.pro-card:nth-child(6) { animation-delay: 0.40s; }
.pro-card:nth-child(7) { animation-delay: 0.48s; }
.pro-card:nth-child(8) { animation-delay: 0.56s; }

/* ============================================= */
/* 🔥 রেস্পন্সিভ (মোবাইল ফাস্ট) */
/* ============================================= */
@media (max-width: 480px) {
    .pro-title { font-size: 13px; height: 38px; }
    .current-price { font-size: 18px; }
    .btn-smooth-zoom { font-size: 12px; padding: 11px 14px; }
    .card-slider-container { height: 170px; }
    .star { font-size: 13px; }
    .section-heading h2 { font-size: 20px; }
    
    .square-cat-card { width: 100px; }
    .square-cat-img-box { width: 100px; height: 100px; }
    .square-cat-title { font-size: 11px; margin-top: 6px; }
    
    .review-slide { min-width: 220px; padding: 8px; }
    .review-slide img { border-radius: 6px; }
    .review-slider-prev, .review-slider-next {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .btn-updown-smooth { font-size: 16px; padding: 14px; }
    .c-btn { font-size: 12px; padding: 12px 2px; }
    .compact-ticket-box { font-size: 13px; padding: 12px 14px; }
    .contact-buttons-grid { gap: 6px; }
}

@media (max-width: 768px) {
    .square-cat-card { width: 120px; }
    .square-cat-img-box { width: 120px; height: 120px; }
    .square-cat-title { font-size: 12px; }
    .review-slide { min-width: 280px; }
}

/* ============================================= */
/* 🔥 স্ক্রোলবার কাস্টম (সকল ব্রাউজার) */
/* ============================================= */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); border-radius: 10px; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ============================================= */
/* 🔥 সিলেকশন কালার */
/* ============================================= */
::selection {
    background: var(--primary);
    color: #fff;
}

/* ============================================= */
/* 🔥 কার্ট/চেকআউট বেসিক (WooCommerce ওভাররাইড) */
/* ============================================= */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .button {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover)) !important;
    color: #fff !important;
    padding: 14px 30px !important;
    border-radius: var(--radius) !important;
    font-weight: 700 !important;
    transition: var(--transition) !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout .button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.35);
}