/* ===== SkeBuy - Global Styles ===== */
:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --bg: #fafafa;
  --text: #1a1a2e;
  --card-bg: #ffffff;
  --nav-bg: #ffffff;
  --nav-text: #1a1a2e;
  --border: #e8e8e8;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; transition: var(--transition); }
img { max-width:100%; height:auto; display:block; }
button { cursor:pointer; border:none; font-family:inherit; }
input,select,textarea { font-family:inherit; }
.container { max-width:1280px; margin:0 auto; padding:0 24px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.announcement-bar .lang-switch {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}
.announcement-bar .lang-btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.announcement-bar .lang-btn:hover,
.announcement-bar .lang-btn.active {
  background: rgba(255,255,255,0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--nav-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--nav-text);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-actions a, .nav-actions button {
  background: none;
  color: var(--nav-text);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.nav-actions .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--nav-text);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 32px;
  opacity: 0.9;
  font-weight: 300;
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: #fff; transform: scale(1.3); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius);
  transition: var(--transition);
  gap: 8px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-dark {
  background: var(--primary);
  color: #fff;
}
.btn-dark:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 24px;
  font-size: 12px;
}
.btn-lg {
  padding: 18px 48px;
  font-size: 16px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-header p {
  font-size: 16px;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto;
  border-radius: 2px;
}

/* ===== PRODUCT GRID ===== */
.products-section {
  padding: 80px 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
.product-card .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
  font-size: 16px;
}
.product-card .wishlist-btn:hover { background: var(--accent); color: #fff; }
.product-card .product-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-card .quick-view {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}
.product-card:hover .quick-view { bottom: 0; }
.product-info {
  padding: 20px;
}
.product-info .product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-info .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.product-info .price-current {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}
.product-info .price-original {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}
.product-info .product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #999;
}
.product-info .stars { color: #f39c12; }

/* ===== CATEGORIES SECTION ===== */
.categories-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e08 0%, #e9456008 100%);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.category-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  padding: 32px 24px;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.category-card .cat-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.category-card p {
  font-size: 14px;
  color: #888;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}
.feature-item .feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 13px;
  color: #888;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--card-bg);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonial-card .stars { color: #f39c12; margin-bottom: 12px; }
.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.8;
  color: #555;
}
.testimonial-card .author {
  font-weight: 700;
  font-size: 14px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.newsletter-section h2 { color: #fff; margin-bottom: 12px; }
.newsletter-section p { opacity: 0.8; margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px;
}
.newsletter-form button {
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: #aaa;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #666;
}
.payment-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.payment-icon {
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
}

/* ===== CART PAGE ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.page-header h1 { font-size: 32px; font-weight: 800; letter-spacing: 2px; }
.cart-section { padding: 48px 0; }
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  padding: 16px;
  border-bottom: 2px solid var(--border);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}
.cart-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-item-info img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.qty-control button {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-control span {
  width: 48px;
  text-align: center;
  font-weight: 600;
}
.remove-btn {
  background: none;
  color: #e74c3c;
  font-size: 18px;
  padding: 4px;
}
.cart-summary {
  background: #f9f9f9;
  padding: 32px;
  border-radius: var(--radius);
  margin-top: 32px;
}
.cart-summary h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.cart-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.cart-summary .summary-total {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  border-bottom: none;
  padding-top: 16px;
}
.empty-cart {
  text-align: center;
  padding: 80px 0;
}
.empty-cart .empty-icon { font-size: 64px; margin-bottom: 24px; opacity: 0.3; }
.empty-cart h3 { margin-bottom: 12px; }
.empty-cart p { color: #888; margin-bottom: 24px; }

/* ===== AUTH PAGES ===== */
.auth-section {
  padding: 80px 0;
  max-width: 480px;
  margin: 0 auto;
}
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.auth-tab {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  color: #888;
}
.auth-tab.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  transition: var(--transition);
}
.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #e9456020;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.form-submit:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ===== CHECKOUT ===== */
.checkout-section { padding: 48px 0; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.checkout-form .section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.checkout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.payment-method.active { border-color: var(--accent); background: #e9456008; }
.payment-method input[type="radio"] { accent-color: var(--accent); }
.order-summary-box {
  background: #f9f9f9;
  padding: 32px;
  border-radius: var(--radius);
  position: sticky;
  top: 96px;
}
.order-summary-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.order-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.order-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}
.order-item .item-details { flex: 1; }
.order-item .item-name { font-weight: 600; font-size: 14px; }
.order-item .item-price { color: var(--accent); font-weight: 700; margin-top: 4px; }

/* ===== ORDERS PAGE ===== */
.orders-section { padding: 48px 0; }
.order-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
}
.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #f9f9f9;
  border-bottom: 1px solid var(--border);
}
.order-card-header .order-id { font-weight: 700; }
.order-status {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.status-pending { background: #ffeaa7; color: #856404; }
.status-shipped { background: #74b9ff; color: #0c5460; }
.status-delivered { background: #55efc4; color: #155724; }
.status-cancelled { background: #fab1a0; color: #721c24; }
.order-card-body {
  padding: 20px 24px;
}
.order-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}
.order-item-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.order-item-row .item-info { flex: 1; }
.order-item-row .item-name { font-weight: 600; }
.order-item-row .item-meta { font-size: 13px; color: #888; }
.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.order-total { font-size: 18px; font-weight: 800; color: var(--accent); }

/* ===== PRODUCT DETAIL ===== */
.product-detail-section { padding: 48px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-gallery { position: sticky; top: 96px; }
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: flex;
  gap: 12px;
}
.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-info h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.detail-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.detail-price .current {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.detail-price .original {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}
.detail-price .discount {
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 15px;
}
.detail-rating .stars { color: #f39c12; font-size: 18px; }
.detail-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}
.detail-options { margin-bottom: 32px; }
.option-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.option-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.option-btn {
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.option-btn.active, .option-btn:hover {
  border-color: var(--accent);
  background: #e9456010;
}
.qty-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.qty-selector button {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-selector .qty-value {
  font-size: 18px;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
}
.detail-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.detail-actions .btn { flex: 1; }
.detail-features {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.detail-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== TABS ===== */
.tabs-section { padding: 48px 0; }
.tab-headers {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.tab-header {
  padding: 16px 24px;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  color: #888;
}
.tab-header.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== REVIEW STARS ===== */
.review-stars { color: #f39c12; letter-spacing: 2px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: #888;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 9999;
  font-weight: 600;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  font-size: 24px;
  color: #888;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .hero { height: 60vh; min-height: 360px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius); }
  .newsletter-form button { border-radius: var(--radius); }
  .checkout-form .form-row { grid-template-columns: 1fr; }
  .cart-table { font-size: 14px; }
  .cart-item-info { flex-direction: column; text-align: center; }
  .announcement-bar .lang-switch { position: static; transform: none; justify-content: center; margin-top: 8px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-up {
  animation: slideUp 0.8s ease forwards;
}

/* ===== TEMPLATE-SPECIFIC STYLES ===== */

.hero { height: 80vh; }
.hero-content h1 { font-style: italic; font-weight: 400; letter-spacing: 6px; }
.product-card { border: none; box-shadow: none; }
.product-card .product-img { margin-bottom: 16px; }
.product-card .product-name { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.product-card .price-current { font-size: 16px; }
.section-header h2 { font-style: italic; font-weight: 300; }
.features-section { display: none; }
.testimonial-card { font-style: italic; }

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
}
.footer-social a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.8; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

/* ===== ABOUT / POLICY PAGES ===== */
.about-section {
  padding: 60px 0;
}
.about-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}
.about-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}
.about-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.about-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.about-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.about-card p {
  font-size: 0.95rem;
  color: #666;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
}
.about-content ul {
  padding-left: 20px;
  color: #555;
  line-height: 2;
}
.about-content ul li { margin-bottom: 4px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
.btn-lg { padding: 14px 40px; font-size: 1rem; }

/* ===== POLICY TABLE ===== */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.policy-table th,
.policy-table td {
  padding: 14px 20px;
  border: 1px solid var(--border);
  text-align: left;
}
.policy-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.policy-table tr:nth-child(even) { background: var(--bg); }

/* ===== TERMS / POLICY NUMBERED HEADINGS ===== */
.terms-section {
  padding: 48px 0;
}
.terms-section .terms-content {
  max-width: 800px;
  margin: 0 auto;
}
.terms-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.terms-section p, .terms-section ul {
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}
.terms-section ul { padding-left: 20px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.contact-info-item .info-icon {
  font-size: 1.2rem;
  min-width: 24px;
}
.contact-info-item .info-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}
.contact-info-item .info-value {
  color: #555;
  font-size: 0.95rem;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: #d63851; transform: translateY(-2px); }
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.social-links a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 1.8rem; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-social { flex-wrap: wrap; gap: 16px; }
}

