/*
Theme Name: Zhartier Beauty Secret
Theme URI: https://zhartier.com
Author: Zhartier
Author URI: https://zhartier.com
Description: Temë e personalizuar WordPress + WooCommerce për Zhartier Beauty Secret. E brendshme luksoze për tregun e Kosovës. Shqip / EUR.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: zhartier
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
WooCommerce tested up to: 8.5
Tags: e-commerce, woocommerce, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ========== ROOT VARIABLES ========== */
:root {
  --primary: #ff8da1;
  --primary-dark: #e8778b;
  --primary-light: #ffc0cc;
  --secondary: #2c2c2c;
  --bg-light: #ffffff;
  --bg-dark: #121212;
  --surface-light: #f9f9f9;
  --surface-dark: #1e1e1e;
  --text-light: #333333;
  --text-dark: #e0e0e0;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text-light);
  background: var(--bg-light);
  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; }
ul, ol { 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 1rem; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Playfair Display', serif;
}
h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 2rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--surface-light);
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.75rem;
  padding: 0.5rem 0;
  color: #6b7280;
}
.top-bar a:hover { color: var(--primary); }
.top-bar .top-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.top-bar .info-left,
.top-bar .info-right { display: flex; align-items: center; gap: 1rem; }
.top-bar .info-left span,
.top-bar .info-right a { display: flex; align-items: center; gap: 0.25rem; }
.top-bar .separator {
  width: 1px; height: 12px; background: #d1d5db; margin: 0 0.5rem;
}
.top-bar .material-icons { font-size: 14px; }

/* ========== HEADER ========== */
.site-header {
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.site-header .site-logo img { height: 48px; width: auto; }
.site-header .main-nav {
  display: none;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .site-header .main-nav { display: flex; }
}
.site-header .main-nav a {
  color: #4b5563;
  padding: 0.5rem 0;
  position: relative;
}
.site-header .main-nav a:hover,
.site-header .main-nav a.active { color: var(--primary); }
.site-header .main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions button,
.header-actions a {
  color: #4b5563;
  position: relative;
  display: flex;
  align-items: center;
}
.header-actions button:hover,
.header-actions a:hover { color: var(--primary); }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--primary); color: #fff;
  font-size: 10px; width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.mobile-menu-btn { display: block; color: #4b5563; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--bg-light);
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-weight: 500;
  color: #4b5563;
}
.mobile-nav a:hover { color: var(--primary); }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  background: var(--surface-light);
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
  color: #6b7280;
}
.breadcrumb a { color: #6b7280; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .current { color: var(--text-light); font-weight: 500; }

/* ========== HERO ========== */
.hero-section {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
  background: var(--surface-light);
}
.hero-section .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}
.hero-section .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.8), transparent, transparent);
}
.hero-section .hero-content {
  position: relative; z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-section .hero-text { max-width: 560px; }
.hero-section .hero-label {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.hero-section h1 { color: #111827; margin-bottom: 1.5rem; }
.hero-section h1 span {
  color: var(--primary);
  font-style: italic;
  font-weight: 300;
}
.hero-section .hero-desc {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  font-weight: 300;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ========== FEATURES BAR ========== */
.features-bar {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0;
}
.features-bar .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .features-bar .features-grid { grid-template-columns: 1fr; }
}
.features-bar .feature-item {
  display: flex; flex-direction: column;
  align-items: center; padding: 1rem;
}
.features-bar .feature-item .material-icons {
  font-size: 2rem; margin-bottom: 0.5rem;
}
.features-bar .feature-item h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.features-bar .feature-item p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ========== SECTION HEADINGS ========== */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading h2 { color: #111827; margin-bottom: 0.75rem; }
.section-heading .heading-line {
  width: 64px; height: 4px;
  background: var(--primary);
  margin: 0 auto;
  border-radius: 2px;
}
.section-heading p {
  color: #6b7280;
  margin-top: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== PRODUCT CARDS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card { position: relative; }
.product-card .product-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  margin-bottom: 1rem;
  background: #f3f4f6;
}
.product-card .product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-card .badge {
  position: absolute; top: 0.5rem; left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  z-index: 5;
}
.badge-new { background: var(--primary); }
.badge-sale { background: #ef4444; }
.badge-popular { background: var(--primary); }

.product-card .product-actions {
  position: absolute; top: 0.5rem; right: 0.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transform: translateX(3rem);
  transition: transform 0.3s ease;
  z-index: 5;
}
.product-card:hover .product-actions { transform: translateX(0); }
.product-card .product-actions button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--text-light);
}
.product-card .product-actions button:hover {
  background: var(--primary); color: #fff;
}
.product-card .product-actions .material-icons { font-size: 16px; }

.product-card .add-to-cart-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,141,161,0.9);
  backdrop-filter: blur(4px);
  padding: 0.75rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.product-card:hover .add-to-cart-overlay { transform: translateY(0); }
.product-card .add-to-cart-overlay button {
  color: #fff; font-weight: 700;
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  width: 100%; gap: 0.5rem;
}

.product-card .product-info { text-align: center; }
.product-card .product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
  transition: var(--transition);
}
.product-card:hover .product-title { color: var(--primary); }
.product-card .product-category {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.product-card .product-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}
.product-card .product-price del {
  color: #9ca3af;
  font-weight: 400;
  font-size: 0.875rem;
  margin-right: 0.5rem;
}
.product-card .product-price .woocommerce-Price-amount { color: var(--primary); }

/* ========== CATEGORY BANNERS ========== */
.category-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  height: 384px;
}
@media (max-width: 768px) {
  .category-banners { grid-template-columns: 1fr; height: auto; }
  .category-banners .cat-banner { height: 300px; }
}
.cat-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.cat-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cat-banner:hover img { transform: scale(1.1); }
.cat-banner .cat-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.2);
  transition: var(--transition);
}
.cat-banner:hover .cat-overlay { background: rgba(0,0,0,0.1); }
.cat-banner .cat-content {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  color: #fff;
}
.cat-banner .cat-content h3 {
  font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem;
}
.cat-banner .cat-content p { opacity: 0.9; margin-bottom: 1rem; }
.cat-banner .cat-link {
  border-bottom: 2px solid #fff;
  padding-bottom: 0.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}
.cat-banner .cat-link:hover { color: var(--primary); border-color: var(--primary); }

/* ========== BLOG CARDS ========== */
.blog-card .blog-image {
  overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 1rem;
}
.blog-card .blog-image img {
  width: 100%; height: 256px; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-card .blog-title {
  font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem;
  color: #111827;
  cursor: pointer;
}
.blog-card .blog-title:hover { color: var(--primary); }
.blog-card .blog-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.75rem; color: #6b7280; margin-bottom: 0.75rem;
}
.blog-card .blog-meta span { display: flex; align-items: center; gap: 0.25rem; }
.blog-card .blog-meta .material-icons { font-size: 14px; }
.blog-card .blog-excerpt {
  font-size: 0.875rem; color: #4b5563;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
  background: #e5e7eb;
  padding: 4rem 0;
}
.newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 4px solid #fff;
  padding: 2rem 3rem;
}
.newsletter-inner h2 {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
.newsletter-inner p {
  color: #4b5563;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.newsletter-form {
  display: flex; gap: 1rem;
  max-width: 480px; margin: 0 auto;
}
@media (max-width: 640px) { .newsletter-form { flex-direction: column; } }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
}
.newsletter-form input:focus { outline: 2px solid var(--primary); }

/* ========== FOOTER ========== */
.site-footer {
  background: #fff;
  border-top: 1px solid #f3f4f6;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem; color: #6b7280;
  line-height: 1.7; margin-bottom: 1rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  color: #4b5563;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-social .material-icons { font-size: 14px; }

.footer-links h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: #111827;
  margin-bottom: 1.5rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: #6b7280; }
.footer-links a:hover { color: var(--primary); }

.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: #6b7280;
  margin-bottom: 1rem;
}
.footer-contact .material-icons {
  color: var(--primary); font-size: 16px; margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #f3f4f6;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #9ca3af;
}
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ========== SHOP PAGE ========== */
.shop-header {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, #fdf2f4 0%, #fce4ec 100%);
  overflow: hidden;
  text-align: center;
}
.shop-header h1 { margin-bottom: 1rem; }
.shop-header p { color: #6b7280; max-width: 640px; margin: 0 auto; }

.shop-layout { display: flex; gap: 2rem; }
@media (max-width: 1024px) { .shop-layout { flex-direction: column; } }

.shop-sidebar {
  width: 256px; flex-shrink: 0;
}
@media (max-width: 1024px) { .shop-sidebar { width: 100%; } }
.shop-sidebar .widget {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.shop-sidebar .widget-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111827;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.shop-sidebar .widget-title .material-icons {
  color: var(--primary); font-size: 18px;
}

.shop-content { flex: 1; }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.shop-toolbar .result-count {
  font-size: 0.875rem; color: #6b7280;
}
.shop-toolbar .result-count strong { color: #111827; }
.shop-toolbar select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: #4b5563;
}
.shop-toolbar select:focus { outline: 2px solid var(--primary); border-color: var(--primary); }

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 0.5rem; margin-top: 3rem;
}
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b5563;
  transition: var(--transition);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* ========== SINGLE PRODUCT ========== */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .single-product-layout { grid-template-columns: 1fr; }
}
.product-gallery .main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: #f3f4f6;
  margin-bottom: 1rem;
}
.product-gallery .main-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-gallery .thumbnails {
  display: flex; gap: 0.75rem;
}
.product-gallery .thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.product-gallery .thumb.active,
.product-gallery .thumb:hover { border-color: var(--primary); }
.product-gallery .thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

.product-summary .product-cat {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.product-summary .product-title-single {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.product-summary .product-rating {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.product-summary .product-rating .stars { color: #fbbf24; display: flex; gap: 2px; }
.product-summary .product-rating .stars .material-icons { font-size: 18px; }
.product-summary .product-rating .review-count { font-size: 0.875rem; color: #6b7280; }

.product-summary .price-box {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: #fdf2f4;
  border-radius: var(--radius-lg);
}
.product-summary .price-current {
  font-size: 2rem; font-weight: 700; color: var(--primary);
}
.product-summary .price-old {
  font-size: 1.25rem; color: #9ca3af; text-decoration: line-through;
}
.product-summary .price-save {
  background: #ef4444; color: #fff; font-size: 0.75rem;
  font-weight: 700; padding: 0.25rem 0.5rem; border-radius: var(--radius);
}

.product-summary .short-desc {
  color: #4b5563; line-height: 1.8; margin-bottom: 1.5rem;
  border-bottom: 1px solid #f3f4f6; padding-bottom: 1.5rem;
}

.product-options { margin-bottom: 1.5rem; }
.product-options label {
  display: block; font-weight: 700; font-size: 0.875rem;
  margin-bottom: 0.75rem; color: #111827;
}
.size-options, .color-options { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.size-btn {
  width: 44px; height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.size-btn:hover, .size-btn.selected {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,141,161,0.1);
}
.color-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition);
}
.color-btn:hover, .color-btn.selected {
  box-shadow: 0 0 0 2px var(--primary);
  transform: scale(1.1);
}

.quantity-cart {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: center;
}
.quantity-selector {
  display: flex; align-items: center;
  border: 1px solid #e5e7eb; border-radius: var(--radius);
  overflow: hidden;
}
.quantity-selector button {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #f9fafb; color: #4b5563;
}
.quantity-selector button:hover { background: #f3f4f6; }
.quantity-selector input {
  width: 60px; height: 44px;
  text-align: center; border: none;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  font-weight: 700;
}
.quantity-selector input:focus { outline: none; }

.product-meta-info {
  border-top: 1px solid #f3f4f6;
  padding-top: 1.5rem;
  font-size: 0.875rem; color: #6b7280;
}
.product-meta-info p { margin-bottom: 0.5rem; }
.product-meta-info strong { color: #111827; }

/* ========== CART PAGE ========== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  padding: 1rem;
  border-bottom: 2px solid #e5e7eb;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}
.cart-table td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}
.cart-table .cart-product {
  display: flex; align-items: center; gap: 1rem;
}
.cart-table .cart-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden; flex-shrink: 0;
}
.cart-table .cart-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.cart-table .cart-product-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.cart-table .remove-item {
  color: #ef4444; display: flex; align-items: center;
}
.cart-table .remove-item:hover { color: #dc2626; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1024px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-totals {
  background: var(--surface-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.cart-totals h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}
.cart-totals .totals-row {
  display: flex; justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
}
.cart-totals .totals-row.total {
  font-size: 1.25rem; font-weight: 700;
  border-bottom: none; padding-top: 1rem;
  color: var(--primary);
}

/* ========== CHECKOUT ========== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1024px) { .checkout-layout { grid-template-columns: 1fr; } }

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #111827;
}
.form-group label .required { color: #ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,141,161,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.order-summary {
  background: var(--surface-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 6rem;
}

/* ========== MY ACCOUNT ========== */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
}
@media (max-width: 768px) { .account-layout { grid-template-columns: 1fr; } }
.account-nav {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.account-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
  color: #4b5563;
}
.account-nav a:hover,
.account-nav a.active {
  background: #fdf2f4; color: var(--primary);
}
.account-nav a .material-icons { font-size: 20px; }

.account-content {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

/* ========== ABOUT PAGE ========== */
.about-hero {
  position: relative; height: 400px; overflow: hidden;
}
.about-hero img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-hero .about-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
}
.about-hero h1 { color: #fff; text-align: center; }

.about-content { max-width: 800px; margin: 0 auto; }

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  display: flex; gap: 1rem; padding: 1.5rem;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); margin-bottom: 1rem;
}
.contact-info-card .icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fdf2f4; display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .icon-circle .material-icons {
  color: var(--primary); font-size: 22px;
}
.contact-info-card h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700; margin-bottom: 0.25rem;
}
.contact-info-card p { font-size: 0.875rem; color: #6b7280; }

/* ========== WOOCOMMERCE OVERRIDES ========== */
.woocommerce .price { color: var(--primary) !important; font-weight: 700 !important; }
.woocommerce .price del { color: #9ca3af !important; font-weight: 400 !important; }
.woocommerce .button,
.woocommerce button.button {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transition: var(--transition) !important;
  border: none !important;
}
.woocommerce .button:hover,
.woocommerce button.button:hover {
  background: var(--primary-dark) !important;
}
.woocommerce .button.alt {
  background: var(--primary) !important;
}
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-top-color: var(--primary) !important;
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
  color: var(--primary) !important;
}
.woocommerce .star-rating span::before { color: #fbbf24 !important; }
.woocommerce .onsale {
  background: #ef4444 !important;
  border-radius: var(--radius) !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-color: #e5e7eb !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* ========== UTILITIES ========== */
.py-section { padding: 4rem 0; }
.py-section-sm { padding: 3rem 0; }
.mb-8 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-surface { background: var(--surface-light); }
.rounded-lg { border-radius: var(--radius-lg); }

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