/*
Theme Name: ElectroNova Store
Theme URI: https://electronova.com
Author: ElectroNova
Author URI: https://electronova.com
Description: Uma loja de eletrônicos completa e moderna, compatível com WooCommerce. Design inspirado em electronics-equipment com seções de produto dinâmicas, mega sale, flash sale, hot deals e muito mais.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: electronova-store
Tags: e-commerce, woocommerce, electronics, store, responsive, one-column, two-columns, custom-header, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, translation-ready
WooCommerce: true
*/

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #FA01A2;
    --primary-dark: #c9007f;
    --secondary: #890D55;
    --dark: #210714;
    --dark-2: #1B212F;
    --text: #333;
    --text-light: #707171;
    --white: #fff;
    --light-bg: #F5F8FF;
    --light-bg-2: #f4f4f4;
    --border: #e5e5e5;
    --star: #f7c948;
    --success: #28a745;
    --font-main: 'Inter', 'Roboto', sans-serif;
    --transition: 0.3s ease;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(250,1,162,0.18);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--dark); }

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

[class*="col-"] { padding: 0 12px; }
.col-1 { width: 8.333%; }
.col-2 { width: 16.666%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333%; }
.col-5 { width: 41.666%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333%; }
.col-8 { width: 66.666%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333%; }
.col-11 { width: 91.666%; }
.col-12 { width: 100%; }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}
.preloader.hide { opacity: 0; pointer-events: none; }
.loader {
    width: 50px; height: 50px;
    border: 4px solid var(--light-bg);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   NOTIFICATION BAR
   ========================================================================== */
.notification-bar-wrap {
    background: linear-gradient(90deg, #890D55, #FA01A2);
    padding: 9px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
}
.notification-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}
.noti { color: #fff; font-size: 13.5px; font-weight: 400; }
.noti span { margin-left: 8px; }
.notification-bar a {
    background: #fff !important;
    color: #000 !important;
    border-radius: 5px;
    font-weight: 500;
    padding: 3px 12px 5px;
    font-size: 13px;
}
.notification-bar a:hover { background: var(--dark) !important; color: #fff !important; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.top-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

/* Logo */
.site-logo a { display: flex; align-items: center; gap: 10px; }
.site-logo .logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.site-logo .logo-text span { color: var(--primary); }

/* Search */
.header-search-form {
    flex: 1;
    max-width: 520px;
    margin: 0 24px;
}
.header-search-form form {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}
.header-search-form form:focus-within { border-color: var(--primary); }
.header-search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 16px;
    font-size: 14px;
    background: transparent;
}
.header-search-form button {
    background: var(--primary);
    border: none;
    padding: 0 18px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}
.header-search-form button:hover { background: var(--primary-dark); }

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-icon-btn { position: relative; }
.header-icon-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 17px;
    transition: all 0.2s;
}
.header-icon-btn a:hover { background: var(--primary); color: #fff; }
.header-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav bar */
.nav-bar {
    background: #1a0d13;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: var(--primary);
    padding: 12px 18px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}
.nav-menu-toggle:hover { background: var(--primary-dark); }

/* Main navigation */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
    display: block;
    padding: 14px 16px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a { color: var(--primary); }

/* Dropdown */
.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 800;
    border-top: 2px solid var(--primary);
}
.main-nav > li:hover .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .sub-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 13.5px;
    color: var(--dark-2);
    border-bottom: 1px solid var(--border);
}
.main-nav .sub-menu li:last-child a { border-bottom: none; }
.main-nav .sub-menu li a:hover { color: var(--primary); background: #fef6fb; }

/* Header highlight items */
.nav-highlight-btn a {
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    border-radius: 30px;
    padding: 8px 20px !important;
    font-weight: 500;
}
.nav-highlight-btn a:hover { background: var(--dark) !important; color: #fff !important; border-color: var(--dark) !important; }

/* Sidebar Offcanvas */
.offcanvas-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 990;
    opacity: 0;
    transition: opacity 0.3s;
}
.offcanvas-overlay.show { display: block; opacity: 1; }
.offcanvas-panel {
    position: fixed;
    top: 0; left: -380px;
    width: 360px;
    height: 100vh;
    background: #fff;
    z-index: 991;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(.77,0,.175,1);
    padding: 0;
}
.offcanvas-panel.open { left: 0; }
.offcanvas-header {
    background: var(--dark);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offcanvas-header .logo-text { color: #fff; font-size: 20px; font-weight: 800; }
.offcanvas-header .logo-text span { color: var(--primary); }
.offcanvas-close {
    background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; padding: 0;
}
.offcanvas-body { padding: 24px; }
.offcanvas-about h3 { font-size: 17px; margin-bottom: 8px; }
.offcanvas-about p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }
.offcanvas-contact { margin-top: 20px; }
.offcanvas-contact a { display: block; color: var(--dark-2); font-size: 14px; margin-bottom: 6px; }
.offcanvas-contact a:hover { color: var(--primary); }
.offcanvas-contact i { margin-right: 8px; color: var(--primary); }
.offcanvas-social { display: flex; gap: 12px; margin-top: 18px; }
.offcanvas-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--light-bg-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); font-size: 15px;
    transition: all 0.2s;
}
.offcanvas-social a:hover { background: var(--primary); color: #fff; }
.offcanvas-address { margin-top: 20px; font-size: 13px; color: var(--text-light); }
.offcanvas-address i { color: var(--primary); margin-right: 6px; }
.offcanvas-hours { margin-top: 12px; font-size: 13px; color: var(--text-light); }
.offcanvas-hours i { color: var(--primary); margin-right: 6px; }
.offcanvas-cta { margin-top: 24px; }
.offcanvas-cta a {
    display: block;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
}
.offcanvas-cta a:hover { background: var(--primary-dark); color: #fff; }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
#slider {
    position: relative;
    background: radial-gradient(50% 50% at 50% 50%, #890D55 0%, #490821 86.13%);
    overflow: hidden;
    min-height: 480px;
}
.slider-wrap {
    position: relative;
    overflow: hidden;
}
.slider-item {
    display: none;
    min-height: 480px;
    align-items: center;
    padding: 60px 0;
}
.slider-item.active { display: flex; }
.slider-content {
    max-width: 50%;
    color: #fff;
    animation: slideInLeft 0.7s ease;
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
.slider-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.slider-content h1 { font-size: clamp(28px, 4vw, 52px); margin-bottom: 16px; color: #fff; line-height: 1.15; }
.slider-content h1 span { color: var(--primary); }
.slider-content p { font-size: 16px; opacity: 0.85; margin-bottom: 28px; max-width: 420px; }
.slider-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-slider {
    background: var(--primary);
    color: #fff;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--primary);
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-slider:hover { background: transparent; color: var(--primary); }
.btn-outline-slider {
    background: transparent;
    color: #fff;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.2s;
}
.btn-outline-slider:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.slider-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: slideInRight 0.7s ease;
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
.slider-image img { max-height: 380px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }

/* Slider controls */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.slider-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ==========================================================================
   SHOP BANNER (3 cards)
   ========================================================================== */
#shop-banner { padding: 50px 0; }
.shop-banner-design-row { gap: 0; }
.shop-banner-design-card {
    border-radius: 18px;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    min-height: 180px;
    background: var(--shop-banner-bg, #FFA33C);
    transition: transform 0.3s, box-shadow 0.3s;
}
.shop-banner-design-card::after {
    content: '';
    position: absolute;
    right: -30px; top: -30px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: var(--shop-banner-circle, #F9890C);
    opacity: 0.4;
}
.shop-banner-design-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.shop-banner-design-content h3 { font-size: 20px; margin-bottom: 6px; color: #fff; }
.shop-banner-design-content p { font-size: 12.5px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.shop-banner-design-button a {
    background: #fff;
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    transition: all 0.2s;
}
.shop-banner-design-button a:hover { background: var(--dark); color: #fff; }
.shop-banner-design-image { position: relative; z-index: 1; }
.shop-banner-design-image img { max-height: 120px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); }

/* ==========================================================================
   SECTION HEADERS (shared)
   ========================================================================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}
.section-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--dark);
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: 8px;
}
.view-all-btn {
    background: var(--primary);
    color: #fff;
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s;
}
.view-all-btn:hover { background: var(--primary-dark); color: #fff; }

/* Category tabs */
.category-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab-btn {
    background: var(--light-bg-2);
    border: 1.5px solid transparent;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-2);
    transition: all 0.2s;
}
.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.product-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.product-image-wrap {
    position: relative;
    background: var(--light-bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
    overflow: hidden;
}
.product-image-wrap img {
    max-height: 175px;
    object-fit: contain;
    transition: transform 0.4s;
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.discount-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 4px;
    z-index: 2;
}
.wishlist-btn {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 2;
}
.wishlist-btn a,
.wishlist-btn button {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
}
.wishlist-btn a:hover, .wishlist-btn button:hover { background: var(--primary); color: #fff; }
.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-name a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark-2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    margin-bottom: 10px;
}
.product-name a:hover { color: var(--primary); }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.product-price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.price-current { font-size: 16px; font-weight: 800; color: var(--primary); }
.price-original { font-size: 13px; color: var(--text-light); text-decoration: line-through; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--dark-2); }
.product-rating svg { fill: var(--star); }
.add-to-cart-btn {
    display: block;
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    margin-top: auto;
    transition: all 0.2s;
    border: 2px solid var(--dark);
}
.add-to-cart-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ==========================================================================
   TRENDING ELECTRONICS
   ========================================================================== */
#trending-electronics { padding: 60px 0; background: var(--white); }
.te-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.te-section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.te-section-title::after {
    content: ''; display: block;
    width: 48px; height: 3px;
    background: var(--primary); border-radius: 2px; margin-top: 8px;
}
.te-category-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.te-tab-btn { background: var(--light-bg-2); border: 1.5px solid transparent; padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--dark-2); transition: all 0.2s; }
.te-tab-btn:hover, .te-tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.te-view-all-btn { background: var(--primary); color: #fff; padding: 9px 22px; border-radius: 8px; font-size: 13.5px; font-weight: 600; transition: all 0.2s; }
.te-view-all-btn:hover { background: var(--primary-dark); color: #fff; }

/* ==========================================================================
   HOT DEALS
   ========================================================================== */
#hot-deals { padding: 60px 0; background: var(--light-bg); }
.hd-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.hd-section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.hd-section-title::after { content: ''; display: block; width: 48px; height: 3px; background: var(--primary); border-radius: 2px; margin-top: 8px; }
.hd-view-all-btn { background: var(--primary); color: #fff; padding: 9px 22px; border-radius: 8px; font-size: 13.5px; font-weight: 600; }
.hd-view-all-btn:hover { background: var(--primary-dark); color: #fff; }
.hd-body { display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap; }
.hd-promo-card {
    flex: 0 0 300px;
    background: linear-gradient(135deg, #490821, #890D55);
    border-radius: 18px;
    padding: 32px 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.hd-promo-card::before {
    content: ''; position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(250,1,162,0.2);
}
.hd-promo-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 12px; display: block; }
.hd-promo-heading { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.hd-promo-desc { font-size: 14px; opacity: 0.8; margin-bottom: 24px; }
.hd-promo-btn { background: var(--primary); color: #fff; padding: 11px 24px; border-radius: 8px; font-weight: 700; font-size: 14px; display: inline-block; }
.hd-promo-btn:hover { background: #fff; color: var(--primary); }
.hd-promo-image { text-align: center; margin-top: 16px; }
.hd-promo-image img { max-height: 130px; object-fit: contain; }
.hd-products-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hd-product-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}
.hd-product-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.hd-product-image-wrap {
    position: relative;
    background: var(--light-bg-2);
    height: 140px;
    display: flex; align-items: center; justify-content: center;
}
.hd-product-image-wrap img { max-height: 110px; object-fit: contain; }
.hd-discount-badge { position: absolute; top: 8px; left: 8px; background: var(--primary); color: #fff; font-size: 10.5px; font-weight: 800; padding: 2px 8px; border-radius: 4px; }
.hd-wishlist-btn { position: absolute; top: 8px; right: 8px; }
.hd-product-details { padding: 12px; }
.hd-product-name a { font-size: 13px; font-weight: 600; color: var(--dark-2); display: block; margin-bottom: 6px; }
.hd-product-name a:hover { color: var(--primary); }
.hd-product-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.hd-product-price { display: flex; align-items: center; gap: 5px; }
.hd-price-current { font-size: 14px; font-weight: 800; color: var(--primary); }
.hd-price-original { font-size: 12px; text-decoration: line-through; color: var(--text-light); }
.hd-product-rating { display: flex; align-items: center; gap: 3px; font-size: 12px; color: var(--dark-2); }
.hd-add-to-cart-btn {
    display: block; background: var(--dark); color: #fff;
    text-align: center; padding: 8px; border-radius: 7px;
    font-size: 12.5px; font-weight: 700;
    transition: all 0.2s;
}
.hd-add-to-cart-btn:hover { background: var(--primary); color: #fff; }

/* ==========================================================================
   NEW ARRIVALS - same style as trending
   ========================================================================== */
#new-arrivals { padding: 60px 0; background: var(--white); }

/* ==========================================================================
   MEGA SALE
   ========================================================================== */
#mega-sale {
    background: radial-gradient(50% 50% at 50% 50%, #890D55 39.8%, #490821 100%);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}
.ms-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.ms-brand-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 10px;
}
.ms-col { flex: 1; }
.ms-col-center { text-align: center; }
.ms-product-image { max-height: 280px; object-fit: contain; filter: drop-shadow(0 10px 40px rgba(0,0,0,0.3)); margin: 0 auto; }
.ms-left-arc { position: relative; }
.ms-contact-info { text-align: center; color: #fff; }
.ms-contact-btn {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff; padding: 11px 28px; border-radius: 25px;
    font-weight: 700; font-size: 14px; margin-bottom: 18px;
    transition: all 0.2s;
}
.ms-contact-btn:hover { background: #fff; color: var(--dark); }
.ms-phone a, .ms-website a { color: rgba(255,255,255,0.8); font-size: 14px; }
.ms-phone { margin-bottom: 6px; }
.ms-right-content { text-align: center; margin-bottom: 16px; }
.ms-sub-title { color: var(--primary); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.ms-main-title { font-size: 52px; font-weight: 900; color: #fff; letter-spacing: 4px; line-height: 1; }
.ms-right-arc { display: flex; align-items: center; gap: 10px; justify-content: center; }
.ms-discount-circle {
    width: 120px; height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
}
.ms-upto { font-size: 10px; font-weight: 800; color: var(--dark-2); text-transform: uppercase; letter-spacing: 1px; }
.ms-number { font-size: 52px; font-weight: 900; color: var(--primary); line-height: 1; }
.ms-off { font-size: 28px; font-weight: 900; color: #fff; }

/* ==========================================================================
   FLASH SALE
   ========================================================================== */
#flash-sale { padding: 60px 0; background: var(--white); }
.fs-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.fs-section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.fs-section-title::after { content: ''; display: block; width: 48px; height: 3px; background: var(--primary); border-radius: 2px; margin-top: 8px; }
.fs-view-all-btn { background: var(--primary); color: #fff; padding: 9px 22px; border-radius: 8px; font-size: 13.5px; font-weight: 600; }
.fs-view-all-btn:hover { background: var(--primary-dark); color: #fff; }
.fs-body { display: flex; gap: 24px; align-items: stretch; flex-wrap: wrap; }
.fs-promo-card {
    flex: 0 0 280px;
    background: linear-gradient(135deg, #222, #444);
    border-radius: 18px;
    padding: 30px 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
}
.fs-promo-card::before { content: ''; position: absolute; bottom: -30px; right: -30px; width: 140px; height: 140px; border-radius: 50%; background: rgba(250,1,162,0.25); }
.fs-promo-heading { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.fs-promo-desc { font-size: 13.5px; opacity: 0.75; margin-bottom: 8px; }
.fs-promo-urgency { color: var(--primary); font-size: 13px; font-weight: 700; }
.fs-promo-image-wrap { text-align: center; margin-top: 20px; position: relative; }
.fs-promo-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 120px; height: 120px; background: rgba(250,1,162,0.15); border-radius: 50%; }
.fs-promo-image-wrap img { max-height: 120px; object-fit: contain; position: relative; z-index: 1; margin: 0 auto; }
.fs-carousel { flex: 1; overflow: hidden; }
.fs-products-slider { display: flex; gap: 16px; transition: transform 0.4s ease; }
.fs-product-card {
    flex: 0 0 210px;
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}
.fs-product-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.fs-product-image-wrap { position: relative; background: var(--light-bg-2); height: 160px; display: flex; align-items: center; justify-content: center; }
.fs-product-image-wrap img { max-height: 130px; object-fit: contain; }
.fs-discount-badge { position: absolute; top: 10px; left: 10px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 4px; }
.fs-product-details { padding: 14px; }
.fs-product-name a { font-size: 13.5px; font-weight: 600; color: var(--dark-2); display: block; margin-bottom: 8px; }
.fs-product-name a:hover { color: var(--primary); }
.fs-price-current { font-size: 15px; font-weight: 800; color: var(--primary); }
.fs-price-original { font-size: 12px; text-decoration: line-through; color: var(--text-light); }
.fs-add-to-cart { display: block; background: var(--dark); color: #fff; text-align: center; padding: 9px; border-radius: 7px; font-size: 13px; font-weight: 700; margin-top: 10px; }
.fs-add-to-cart:hover { background: var(--primary); color: #fff; }
.fs-nav { display: flex; gap: 10px; margin-top: 18px; }
.fs-nav-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--light-bg-2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--dark); transition: all 0.2s; font-size: 16px; }
.fs-nav-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
#why-choose-us { padding: 70px 0; background: var(--light-bg); }
.choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.choose-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1.5px solid var(--border);
}
.choose-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.choose-icon { width: 70px; height: 70px; border-radius: 18px; background: linear-gradient(135deg, #fef6fb, #fcd9f2); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.choose-card:hover .choose-icon { background: var(--primary); }
.choose-icon i { font-size: 28px; color: var(--primary); transition: color 0.3s; }
.choose-card:hover .choose-icon i { color: #fff; }
.choose-card h4 { font-size: 16px; margin-bottom: 8px; }
.choose-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
#testimonials { padding: 70px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1.5px solid var(--border); transition: all 0.3s; }
.testimonial-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); }
.testimonial-stars { color: var(--star); font-size: 16px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #f77); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.author-name { font-size: 14.5px; font-weight: 700; }
.author-title { font-size: 12.5px; color: var(--text-light); }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
#newsletter {
    background: linear-gradient(135deg, #490821, #890D55);
    padding: 70px 0;
}
.newsletter-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter-inner h2 { font-size: 32px; color: #fff; margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
    flex: 1;
    padding: 13px 18px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
}
.newsletter-form button {
    background: var(--primary);
    color: #fff;
    padding: 13px 26px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--primary-dark); }

/* ==========================================================================
   BRANDS/LOGOS
   ========================================================================== */
#brands { padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brand-item { opacity: 0.5; transition: opacity 0.2s; }
.brand-item:hover { opacity: 1; }
.brand-item span { font-size: 20px; font-weight: 900; color: var(--dark-2); letter-spacing: -1px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #0e0710; color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-text { color: #fff; font-size: 22px; font-weight: 800; }
.footer-logo .logo-text span { color: var(--primary); }
.footer-about { font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 15px; transition: all 0.2s; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 4px; }
.footer-newsletter h4 { color: #fff; font-size: 15px; margin-bottom: 10px; }
.footer-newsletter p { font-size: 13px; margin-bottom: 14px; }
.footer-newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.footer-newsletter-form input { padding: 11px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08); color: #fff; font-size: 13.5px; outline: none; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form button { background: var(--primary); color: #fff; border: none; padding: 11px 14px; border-radius: 8px; font-weight: 700; font-size: 13.5px; cursor: pointer; }
.footer-newsletter-form button:hover { background: var(--primary-dark); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13.5px; }
.footer-contact-item i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ==========================================================================
   WOOCOMMERCE STYLES
   ========================================================================== */
/* Shop page */
.woocommerce-products-header { margin-bottom: 30px; }
.woocommerce-products-header h1 { font-size: 28px; font-weight: 800; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 0; margin: 0; }
.woocommerce ul.products li.product { margin: 0; padding: 0; }
.woocommerce ul.products li.product a img { border-radius: var(--radius) var(--radius) 0 0; height: 200px; object-fit: contain; background: var(--light-bg-2); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14.5px; font-weight: 600; padding: 12px 16px 4px; }
.woocommerce ul.products li.product .price { padding: 4px 16px; color: var(--primary); font-weight: 800; font-size: 16px; }
.woocommerce ul.products li.product .price del { color: var(--text-light); font-size: 13px; font-weight: 400; margin-left: 6px; }
.woocommerce ul.products li.product .button { margin: 8px 16px 16px; display: block; background: var(--dark); color: #fff; padding: 10px 14px; border-radius: 8px; font-size: 13.5px; font-weight: 700; text-align: center; border: none; cursor: pointer; }
.woocommerce ul.products li.product .button:hover { background: var(--primary); color: #fff; }
/* Single product */
.woocommerce div.product .woocommerce-product-gallery { border-radius: var(--radius); overflow: hidden; }
.woocommerce div.product p.price { color: var(--primary); font-size: 26px; font-weight: 800; }
.woocommerce div.product .cart .single_add_to_cart_button { background: var(--primary); border: none; padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 700; }
.woocommerce div.product .cart .single_add_to_cart_button:hover { background: var(--primary-dark); }
/* Cart / Checkout */
.woocommerce-cart .cart-collaterals .cart_totals, .woocommerce-checkout #payment { background: var(--light-bg); border-radius: var(--radius); padding: 24px; }
.woocommerce .button, .woocommerce button.button { background: var(--primary); color: #fff; border-radius: 8px; font-weight: 700; }
.woocommerce .button:hover, .woocommerce button.button:hover { background: var(--primary-dark); color: #fff; }
/* Breadcrumb */
.woocommerce-breadcrumb { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.woocommerce-breadcrumb a { color: var(--primary); }
/* Sale badge */
.woocommerce span.onsale { background: var(--primary); border-radius: 4px; font-size: 11px; font-weight: 800; min-height: auto; min-width: auto; padding: 3px 9px; line-height: 1.6; }

/* ==========================================================================
   CONTENT PAGES
   ========================================================================== */
.content-page { padding: 70px 0; }
.page-title { font-size: 32px; font-weight: 800; margin-bottom: 24px; }
.middle-content { padding: 3em 0; }

/* ==========================================================================
   CATEGORY PAGE HEADER BANNER
   ========================================================================== */
.category-page-banner { background: linear-gradient(135deg, #490821, #890D55); padding: 50px 0; text-align: center; color: #fff; }
.category-page-banner h1 { font-size: 36px; color: #fff; }
.category-page-banner p { font-size: 15px; opacity: 0.8; margin-top: 8px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 28px; flex-wrap: wrap; gap: 14px; }
.woocommerce-result-count { font-size: 14px; color: var(--text-light); }
.woocommerce-ordering select { border: 1.5px solid var(--border); border-radius: 8px; padding: 9px 14px; font-size: 14px; outline: none; cursor: pointer; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.animate-up { animation: fadeInUp 0.6s ease forwards; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1199px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .choose-grid { grid-template-columns: repeat(2, 1fr); }
    .hd-products-grid { grid-template-columns: repeat(2, 1fr); }
    .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .top-header-bar { flex-wrap: wrap; }
    .header-search-form { order: 3; max-width: 100%; flex: 0 0 100%; margin: 0; }
    .ms-inner { flex-direction: column; text-align: center; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-inner { overflow-x: auto; }
    .main-nav { display: none; }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
    .col-md-6 { width: 50%; }
    .col-md-12 { width: 100%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
}
@media (max-width: 767px) {
    .choose-grid { grid-template-columns: repeat(2, 1fr); }
    .hd-body { flex-direction: column; }
    .hd-promo-card { flex: 1 1 auto; }
    .hd-products-grid { grid-template-columns: repeat(2, 1fr); }
    .ms-main-title { font-size: 36px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .shop-banner-design-row > [class*="col-"] { width: 100%; margin-bottom: 16px; }
    .notification-bar { gap: 10px; flex-direction: column; }
    .newsletter-form { flex-direction: column; }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
    .col-sm-6 { width: 50%; }
    .col-md-6 { width: 100%; }
}
@media (max-width: 576px) {
    .choose-grid { grid-template-columns: 1fr; }
    .hd-products-grid { grid-template-columns: 1fr; }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
    .brands-row { justify-content: center; }
    .col-sm-6 { width: 100%; }
}
