/* ===== VELORA SHOP - Main Stylesheet ===== */
:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-hover: #c73652;
  --gold: #d4a843;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-gray: #f0f0f0;
  --gray: #888;
  --dark-gray: #555;
  --text: #222;
  --border: #e5e5e5;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --transition: all .25s ease;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
}
.announcement-bar .container { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.announcement-bar .sep { opacity: .4; }
.announcement-bar i { margin-right: 5px; color: var(--gold); }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 16px; padding-bottom: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--primary); }
.logo-icon { width: 38px; height: 38px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; }

/* ===== NAV ===== */
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul > li { position: relative; }
.main-nav ul > li > a {
  display: block; padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: var(--text); border-radius: var(--radius-sm); transition: var(--transition);
}
.main-nav ul > li > a:hover, .main-nav ul > li > a.active {
  color: var(--accent); background: rgba(233,69,96,.07);
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 24px; display: none; grid-template-columns: repeat(4, 1fr); gap: 24px;
  min-width: 1200px; border-top: 3px solid var(--accent);
}
.has-dropdown:hover .mega-dropdown { display: grid; }
.mega-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); letter-spacing: .5px; }
.mega-col h4 i { margin-right: 6px; color: var(--accent); }
.mega-col ul li a { display: block; padding: 5px 0; font-size: 13px; color: var(--dark-gray); }
.mega-col ul li a:hover { color: var(--accent); padding-left: 6px; }
.mega-promo .promo-banner-link { background: linear-gradient(135deg, var(--accent), var(--accent-hover)); color: white; padding: 20px; border-radius: var(--radius); display: block; text-align: center; height: 100%; }
.mega-promo .promo-badge { font-size: 20px; font-weight: 700; font-family: var(--font-heading); margin-bottom: 8px; }
.mega-promo span { font-size: 13px; opacity: .9; }

/* ===== HEADER ACTIONS ===== */
.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  position: relative; width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  color: var(--text); transition: var(--transition);
}
.icon-btn:hover { background: var(--light-gray); color: var(--accent); }
.badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--accent); color: white;
  font-size: 10px; font-weight: 700; min-width: 16px; height: 16px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  padding: 0 3px; line-height: 1;
}

/* User Menu Dropdown */
.user-menu { position: relative; }
.avatar-sm { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.user-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px; display: none; z-index: 999;
}
.user-menu:hover .user-dropdown { display: block; }
.user-info { padding: 12px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.user-info strong { display: block; font-size: 14px; }
.user-info small { color: var(--gray); font-size: 12px; }
.user-dropdown a, .user-dropdown .logout-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text);
}
.user-dropdown a:hover { background: var(--off-white); color: var(--accent); }
.user-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* ===== SEARCH BAR ===== */
.search-bar {
  border-top: 1px solid var(--border); padding: 12px 0;
  display: none; position: relative;
}
.search-bar.open { display: block; }
.search-form { display: flex; align-items: center; gap: 0; background: var(--off-white); border-radius: 50px; border: 2px solid var(--border); overflow: hidden; }
.search-form:focus-within { border-color: var(--accent); }
.search-input { flex: 1; border: none; background: none; padding: 11px 20px; font-size: 14px; outline: none; }
.search-form button { background: var(--accent); color: white; border: none; padding: 11px 20px; cursor: pointer; }
.close-search { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.search-suggestions { position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: var(--shadow-md); border-radius: var(--radius); z-index: 100; max-height: 400px; overflow-y: auto; }
.suggestion-item { display: flex; align-items: center; gap: 12px; padding: 10px 16px; cursor: pointer; }
.suggestion-item:hover { background: var(--off-white); }
.suggestion-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 4px; }
.suggestion-item .s-name { font-size: 13px; font-weight: 500; }
.suggestion-item .s-price { font-size: 12px; color: var(--accent); }

/* ===== MINI CART ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1099;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.mini-cart {
  position: fixed; right: -420px; top: 0; bottom: 0;
  width: 420px; background: white; z-index: 1100;
  display: flex; flex-direction: column; transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.mini-cart.open { right: 0; }
.mini-cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mini-cart-header h3 { font-size: 16px; font-weight: 700; }
.close-cart { font-size: 18px; color: var(--gray); padding: 4px; border-radius: 4px; }
.close-cart:hover { color: var(--accent); }
.mini-cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.mini-cart-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mini-cart-item img { width: 72px; height: 90px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.mini-item-info { flex: 1; }
.mini-item-info h5 { font-size: 13px; font-weight: 600; margin-bottom: 4px; line-height: 1.4; }
.mini-item-variant { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.mini-item-row { display: flex; align-items: center; justify-content: space-between; }
.mini-item-price { font-size: 14px; font-weight: 700; color: var(--accent); }
.qty-control { display: flex; align-items: center; gap: 2px; }
.qty-btn { width: 26px; height: 26px; border-radius: 4px; border: 1px solid var(--border); font-size: 13px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }
.qty-num { width: 32px; text-align: center; font-size: 13px; font-weight: 600; }
.remove-item { color: var(--gray); font-size: 12px; margin-top: 4px; display: inline-block; }
.remove-item:hover { color: var(--danger); }
.mini-cart-footer { padding: 16px 24px; border-top: 1px solid var(--border); background: var(--off-white); }
.mini-total-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.mini-total-row.final { font-size: 16px; font-weight: 700; color: var(--primary); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
.mini-cart-actions { display: flex; gap: 8px; margin-top: 16px; }
.btn-cart-full { flex: 1; padding: 12px; border-radius: var(--radius); font-size: 14px; font-weight: 600; text-align: center; }
.btn-cart-full.outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-cart-full.outline:hover { background: var(--primary); color: white; }
.btn-cart-full.filled { background: var(--accent); color: white; }
.btn-cart-full.filled:hover { background: var(--accent-hover); }
.empty-cart { text-align: center; padding: 60px 20px; }
.empty-cart i { font-size: 48px; color: var(--border); margin-bottom: 16px; display: block; }
.empty-cart p { color: var(--gray); font-size: 14px; margin-bottom: 16px; }

/* ===== QUICK VIEW MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1199;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.quick-view-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%);
  background: white; width: 90%; max-width: 860px; max-height: 90vh;
  border-radius: var(--radius-lg); z-index: 1200;
  opacity: 0; pointer-events: none; transition: all .35s; overflow: hidden;
}
.quick-view-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%,-50%); }
.modal-close {
  position: absolute; right: 16px; top: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--light-gray); color: var(--text); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--accent); color: white; }
.quick-view-content { overflow-y: auto; max-height: 90vh; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(233,69,96,.3); }
.btn-secondary { background: var(--primary); color: white; }
.btn-secondary:hover { background: var(--primary-light); }
.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }
.btn-block { width: 100%; display: flex; }
.btn:disabled { opacity: .6; cursor: not-allowed; pointer-events: none; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-family: var(--font-heading); font-size: 36px; color: var(--primary); margin-bottom: 12px; }
.section-header p { color: var(--gray); font-size: 15px; max-width: 600px; margin: 0 auto; }
.section-header .divider { width: 60px; height: 3px; background: var(--accent); margin: 16px auto 0; border-radius: 2px; }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); position: relative;
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-image-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--off-white); }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.badge-tag {
  padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; display: inline-block;
}
.badge-new { background: var(--success); color: white; }
.badge-sale { background: var(--accent); color: white; }
.badge-hot { background: var(--warning); color: var(--primary); }
.badge-out { background: var(--gray); color: white; }

.product-actions {
  position: absolute; bottom: -60px; left: 0; right: 0;
  display: flex; gap: 6px; padding: 10px; transition: bottom .3s ease;
}
.product-card:hover .product-actions { bottom: 0; }
.btn-quick-view {
  flex: 1; background: rgba(26,26,46,.85); backdrop-filter: blur(4px);
  color: white; border-radius: var(--radius-sm); padding: 9px;
  font-size: 12px; font-weight: 600; text-align: center;
}
.btn-quick-view:hover { background: var(--primary); }
.btn-wishlist-card {
  width: 38px; height: 38px; background: rgba(255,255,255,.9); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 15px;
}
.btn-wishlist-card:hover, .btn-wishlist-card.active { color: var(--accent); }

.product-info { padding: 14px 16px; }
.product-category { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.product-name { font-size: 14px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-name:hover { color: var(--accent); }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-current { font-size: 16px; font-weight: 700; color: var(--accent); }
.price-original { font-size: 13px; color: var(--gray); text-decoration: line-through; }
.price-discount { font-size: 11px; background: #fff0f3; color: var(--accent); padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.product-colors { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 10px; }
.color-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: var(--transition); }
.color-dot:hover, .color-dot.active { border-color: var(--text); transform: scale(1.2); }
.btn-add-cart {
  width: 100%; padding: 10px; background: var(--primary); color: white;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; text-align: center; transition: var(--transition);
}
.btn-add-cart:hover { background: var(--accent); }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.stars { color: var(--gold); font-size: 12px; }
.rating-count { font-size: 11px; color: var(--gray); }

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== BANNER SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; height: 600px; }
.slider-track { display: flex; height: 100%; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.slide {
  min-width: 100%; height: 100%; position: relative;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.slide::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.65) 0%,rgba(0,0,0,.1) 100%); }
.slide-content { position: relative; z-index: 2; color: white; padding: 0 80px; max-width: 620px; }
.slide-content .eyebrow { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 500; }
.slide-content h1 { font-family: var(--font-heading); font-size: 56px; line-height: 1.1; margin-bottom: 16px; }
.slide-content p { font-size: 16px; opacity: .85; margin-bottom: 32px; line-height: 1.6; }
.slide-actions { display: flex; gap: 12px; }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  color: white; border-radius: 50%; z-index: 10;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--accent); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); transition: var(--transition); cursor: pointer; }
.slider-dot.active { background: white; width: 24px; border-radius: 4px; }

/* ===== CATEGORY CARDS ===== */
.category-section { padding: 80px 0; background: var(--off-white); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover img { transform: scale(1.08); }
.category-card::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.7) 0%,transparent 60%); }
.category-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 24px; color: white; }
.category-info h3 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 6px; }
.category-info p { font-size: 13px; opacity: .8; margin-bottom: 12px; }
.category-link { font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,.6); padding: 6px 16px; border-radius: 20px; display: inline-block; transition: var(--transition); }
.category-link:hover { background: white; color: var(--primary); }

/* ===== HOME SECTIONS ===== */
.products-section { padding: 80px 0; }
.products-tabs { display: flex; gap: 4px; justify-content: center; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 500;
  color: var(--gray); border: 2px solid var(--border); transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; }
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-header p { color: rgba(255,255,255,.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,.12); }
.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 14px; }
.testimonial-text { font-size: 14px; line-height: 1.7; opacity: .9; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.3); }
.testimonial-author h5 { font-size: 14px; font-weight: 600; }
.testimonial-author small { font-size: 12px; opacity: .6; }

/* ===== FEATURES / TRUST BADGES ===== */
.features-section { padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; align-items: center; gap: 16px; }
.feature-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: #fff0f3; color: var(--accent); font-size: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.feature-text p { font-size: 12px; color: var(--gray); }

/* ===== BLOG SECTION ===== */
.blog-section { padding: 80px 0; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-image { aspect-ratio: 16/9; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-content { padding: 20px; }
.blog-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--accent); letter-spacing: .5px; margin-bottom: 8px; }
.blog-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-content p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { font-size: 12px; color: var(--gray); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; background: white;
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(233,69,96,.1); }
.form-control.error { border-color: var(--danger); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0; font-size: 13px; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; color: var(--border); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 12px;
  background: white; border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg); min-width: 280px; max-width: 360px;
  border-left: 4px solid var(--success); animation: slideInRight .3s ease;
}
.toast.error { border-color: var(--danger); }
.toast.info { border-color: var(--info); }
.toast.warning { border-color: var(--warning); }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast-message { font-size: 13px; font-weight: 500; }
.toast-close { margin-left: auto; color: var(--gray); font-size: 14px; }

@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== LOADING ===== */
.loading-spinner { text-align: center; padding: 40px; color: var(--gray); font-size: 24px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--primary); color: rgba(255,255,255,.8); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: white; font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.footer-logo i { color: var(--accent); }
.brand-col p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 14px; transition: var(--transition);
}
.social-links a:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.contact-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.contact-list li i { color: var(--gold); margin-top: 2px; width: 14px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,.6); }
.contact-list li a:hover { color: var(--gold); }
.newsletter h5 { font-size: 13px; color: white; margin-bottom: 10px; }
.newsletter-form { display: flex; border-radius: var(--radius-sm); overflow: hidden; }
.newsletter-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,.1); border: none; color: white; font-size: 13px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button { background: var(--accent); color: white; padding: 10px 16px; }

.footer-payment { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-payment .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.payment-icons, .shipping-icons { display: flex; align-items: center; gap: 10px; }
.payment-icons span, .shipping-icons span { font-size: 12px; color: rgba(255,255,255,.5); }
.payment-icons img, .shipping-icons img { height: 24px; opacity: .8; filter: brightness(0) invert(1); }

.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: white; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 80px; right: 24px; z-index: 900;
  width: 44px; height: 44px; background: var(--primary); color: white;
  border-radius: 50%; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn { display: none; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--accent); color: white; border-color: var(--accent); }
.page-btn.dots { border: none; pointer-events: none; }

/* ===== ALERT ===== */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid var(--success); }
.alert-danger { background: #f8d7da; color: #721c24; border-left: 4px solid var(--danger); }
.alert-info { background: #d1ecf1; color: #0c5460; border-left: 4px solid var(--info); }
.alert-warning { background: #fff3cd; color: #856404; border-left: 4px solid var(--warning); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .announcement-bar .container { flex-direction: column; gap: 4px; font-size: 11px; padding: 6px 12px; }
  .announcement-bar .sep { display: none; }

  /* Header */
  .header-inner { padding: 10px 0; }
  .logo img { height: 36px !important; }
  .main-nav { display: none; position: fixed; top: 0; left: -280px; bottom: 0; width: 280px; background: white; z-index: 1050; flex-direction: column; padding: 20px; box-shadow: var(--shadow-lg); transition: left .3s; overflow-y: auto; }
  .main-nav.mobile-open { display: flex; left: 0; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul > li > a { padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .mega-dropdown { position: static; transform: none; display: none; box-shadow: none; border: none; padding: 0 0 0 16px; grid-template-columns: 1fr; min-width: auto; margin-top: 8px; }
  .mega-promo { display: none; }
  .mobile-menu-btn { display: flex; }
  .icon-btn { width: 36px; height: 36px; font-size: 15px; }

  /* Hero Banner */
  .hero-slider { height: 420px; }
  .slide-content { padding: 0 30px; }
  .slide-content h1 { font-size: 34px; }
  .hero-banner img { width: 100%; height: auto; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card { border-radius: 8px; }
  .product-info { padding: 10px; }
  .product-name { font-size: 12px; -webkit-line-clamp: 2; line-clamp: 2; }
  .product-price { font-size: 13px; }
  .product-original-price { font-size: 11px; }
  .product-actions { gap: 4px; }
  .btn-add-cart { font-size: 11px; padding: 7px 10px; }

  /* Categories */
  .categories-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-item { padding: 14px 12px; gap: 10px; }
  .feature-icon { width: 36px; height: 36px; font-size: 14px; }
  .feature-text h4 { font-size: 12px; }
  .feature-text p { font-size: 11px; }

  /* Section */
  .section-header h2 { font-size: 22px; }
  .section-header p { font-size: 13px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { padding: 32px 0 24px; }
  .footer-col h4 { font-size: 14px; margin-bottom: 12px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Cart */
  .mini-cart { width: 100%; right: -100%; }
  .mini-cart-header { padding: 16px; }
  .mini-cart-body { padding: 12px 16px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .form-control { font-size: 14px; padding: 10px 12px; }
  .btn { padding: 10px 16px; font-size: 13px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 12px; padding: 12px 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-image-wrap { height: 180px; }
  .slide-content h1 { font-size: 26px; }
  .slide-content p { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-slider { height: 340px; }
  .categories-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: 20px; }
  .footer-col.brand-col { text-align: center; }
  .social-links { justify-content: center; }
}
