/* Satvik Store - Premium Brand Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-saffron: #FF9933;
  --primary-saffron-hover: #E6801A;
  --accent-gold: #D4AF37;
  --accent-gold-light: #F4E8C1;
  --dark-brown: #4E342E;
  --dark-brown-light: #6D4C41;
  --warm-cream: #FFF8F0;
  --pure-white: #FFFFFF;
  --light-gray: #F5F5F5;
  --border-gray: #E0E0E0;
  --text-dark: #2C1E1B;
  --text-muted: #757575;
  --success-color: #2E7D32;
  --error-color: #C62828;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --box-shadow: 0 4px 20px rgba(78, 52, 46, 0.08);
  --box-shadow-hover: 0 8px 30px rgba(78, 52, 46, 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--warm-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-brown);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--primary-saffron);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Header Styles */
.main-header {
  background-color: var(--pure-white);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-top {
  background-color: var(--dark-brown);
  color: var(--pure-white);
  text-align: center;
  padding: 8px 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.header-top a {
  color: var(--accent-gold);
  font-weight: 600;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
  flex-shrink: 0;
}

.logo img {
  height: 50px;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--dark-brown);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.logo h1 span {
  color: var(--primary-saffron);
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark-brown);
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-saffron);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary-saffron);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-saffron);
}

/* Actions Menu */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-btn {
  background: transparent;
  color: var(--dark-brown);
  font-size: 1.25rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.action-btn:hover {
  color: var(--primary-saffron);
}

.user-btn-text {
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--dark-brown);
  transition: var(--transition-smooth);
}

.action-btn:hover .user-btn-text {
  color: var(--primary-saffron);
}

.action-btn .cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-saffron);
  color: var(--pure-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar-form {
  display: flex;
  background: var(--light-gray);
  border-radius: var(--border-radius-lg);
  padding: 5px 15px;
  align-items: center;
  max-width: 250px;
}

.search-input {
  background: transparent;
  width: 100%;
  padding: 5px;
  color: var(--text-dark);
}

.search-btn {
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-brown);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-saffron);
  color: var(--pure-white);
}

.btn-primary:hover {
  background-color: var(--primary-saffron-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-brown);
  border: 2px solid var(--dark-brown);
}

.btn-secondary:hover {
  background-color: var(--dark-brown);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: var(--pure-white);
  transform: translateY(-2px);
}

/* Floating Actions */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: var(--pure-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128C7E;
}

/* Banner/Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(78, 52, 46, 0.95), rgba(78, 52, 46, 0.8)), url('../images/hero_banner.jpg') no-repeat center center/cover;
  padding: 120px 0;
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 35px;
  color: #F5E6C8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons .btn-secondary {
  border-color: var(--pure-white);
  color: var(--pure-white);
}

.hero-buttons .btn-secondary:hover {
  background-color: var(--pure-white);
  color: var(--dark-brown);
}

.hero::after {
  content: '';
  position: absolute;
  right: 5%;
  bottom: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  z-index: 1;
}

/* Category Grid */
.categories-section {
  background-color: var(--pure-white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.category-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--box-shadow);
  transition: var(--transition-smooth);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(78, 52, 46, 0.9) 10%, rgba(78, 52, 46, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: var(--pure-white);
}

.category-card-overlay h3 {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.category-card-overlay span {
  font-size: 0.85rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.category-card:hover img {
  transform: scale(1.1);
}

/* Product Card Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--pure-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-gray);
  position: relative;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-saffron);
  color: var(--pure-white);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  z-index: 10;
}

.product-image-container {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background-color: var(--light-gray);
}

.product-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  transition: var(--transition-smooth);
  background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
}

.product-card:hover .product-card-actions {
  bottom: 0;
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.card-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--pure-white);
  color: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.card-action-btn:hover {
  background-color: var(--primary-saffron);
  color: var(--pure-white);
}

.card-action-btn.btn-wishlist.active {
  background-color: #e53935;
  color: var(--pure-white);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.product-title {
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 10px;
  font-weight: 600;
  flex-grow: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.product-rating span {
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-saffron);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

/* Why Choose Us & Trust Badges */
.trust-section {
  background-color: var(--dark-brown);
  color: var(--pure-white);
  padding: 60px 0;
}

.trust-section h2, .trust-section .section-subtitle {
  color: var(--pure-white);
}

.trust-section h2::after {
  background-color: var(--primary-saffron);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.trust-card {
  text-align: center;
  padding: 20px;
}

.trust-card i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.trust-card h3 {
  color: var(--pure-white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Testimonials / Reviews */
.reviews-section {
  background-color: var(--pure-white);
}

.reviews-slider {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.review-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  background-color: var(--warm-cream);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  border-top: 4px solid var(--primary-saffron);
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-weight: 700;
}

.review-author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
  color: var(--pure-white);
  text-align: center;
  padding: 80px 0;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section h2 {
  color: var(--pure-white);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.newsletter-section p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 15px 20px;
  border-radius: var(--border-radius-md);
}

.newsletter-form button {
  background-color: var(--dark-brown);
  color: var(--pure-white);
  padding: 15px 30px;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-form button:hover {
  background-color: var(--text-dark);
}

/* Footer Styles */
.main-footer {
  background-color: var(--dark-brown);
  color: var(--pure-white);
  padding: 70px 0 30px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-saffron);
}

.footer-col p {
  line-height: 1.8;
  opacity: 0.8;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  opacity: 0.8;
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--primary-saffron);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-saffron);
  transform: translateY(-3px);
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Shop Page Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  padding: 40px 0;
}

/* Filters Sidebar */
.shop-sidebar {
  background-color: var(--pure-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  height: fit-content;
}

.filter-group {
  margin-bottom: 30px;
}

.filter-group h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-gray);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.filter-checkbox-label input {
  accent-color: var(--primary-saffron);
}

.price-range-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.price-range-inputs input {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--border-gray);
  border-radius: var(--border-radius-sm);
  text-align: center;
}

/* Shop Content Header */
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.shop-sort select {
  padding: 10px 15px;
  border: 1px solid var(--border-gray);
  border-radius: var(--border-radius-md);
  background-color: var(--pure-white);
}

/* Product Detail Page */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 50px 0;
}

.product-detail-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-product-img {
  background-color: var(--pure-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.main-product-img img {
  width: 100%;
  object-fit: cover;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-detail-title {
  font-size: 2.2rem;
  line-height: 1.3;
}

.product-detail-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-saffron);
}

.size-selector {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.size-btn {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--border-gray);
  background-color: var(--pure-white);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.size-btn.active, .size-btn:hover {
  border-color: var(--primary-saffron);
  background-color: var(--primary-saffron);
  color: var(--pure-white);
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-gray);
  width: fit-content;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: var(--pure-white);
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
}

.qty-btn:hover {
  background-color: var(--light-gray);
}

.qty-input {
  width: 50px;
  text-align: center;
  font-weight: 600;
}

.product-detail-actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* Cart Page */
.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

.cart-table-container {
  background-color: var(--pure-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-gray);
  color: var(--dark-brown);
}

.cart-table td {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-gray);
  vertical-align: middle;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  background-color: var(--light-gray);
}

.cart-item-name h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.cart-item-name span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-remove-btn {
  background: transparent;
  color: var(--error-color);
  cursor: pointer;
  font-size: 1.1rem;
}

.cart-summary {
  background-color: var(--pure-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-saffron);
  border-top: 1px solid var(--border-gray);
  padding-top: 15px;
}

/* Notification Popups */
#notification-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification {
  background-color: var(--pure-white);
  border-left: 4px solid var(--success-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 15px 25px;
  border-radius: var(--border-radius-sm);
  transform: translateX(120%);
  transition: var(--transition-smooth);
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.notification-content i {
  color: var(--success-color);
  font-size: 1.2rem;
}

/* Order Tracking Steps */
.tracking-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 50px 0;
}

.tracking-stepper::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--border-gray);
  z-index: 1;
}

.tracking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--pure-white);
  border: 4px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.step-label {
  margin-top: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.step-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tracking-step.active .step-icon {
  border-color: var(--primary-saffron);
  color: var(--primary-saffron);
}

.tracking-step.completed .step-icon {
  border-color: var(--success-color);
  background-color: var(--success-color);
  color: var(--pure-white);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  background-color: var(--pure-white);
  border-radius: var(--border-radius-md);
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--dark-brown);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-muted);
  border-top: 0 solid var(--border-gray);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
  border-top-width: 1px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Checkout Form Layout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 40px;
  padding: 40px 0;
}

.checkout-form-container {
  background-color: var(--pure-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
}

.checkout-form-section {
  margin-bottom: 35px;
}

.checkout-form-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark-brown);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input, .form-group select {
  padding: 12px 15px;
  border: 1px solid var(--border-gray);
  border-radius: var(--border-radius-md);
  background-color: var(--light-gray);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-option-label {
  display: flex;
  padding: 15px;
  border: 1px solid var(--border-gray);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.payment-option-label input {
  accent-color: var(--primary-saffron);
}

.payment-option-label:hover, .payment-option-label.active {
  border-color: var(--primary-saffron);
  background-color: var(--warm-cream);
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Empty State Styles */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i {
  font-size: 4rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .review-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--pure-white);
    flex-direction: column;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .search-bar-form {
    display: none; /* hidden on small screen nav or customized */
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .shop-layout, .product-detail-layout, .cart-layout, .checkout-layout {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .review-card {
    flex: 0 0 100%;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .logo h1 {
    font-size: 1.4rem;
  }
  .logo img {
    height: 40px;
  }
  .hero-buttons {
    flex-direction: column;
  }
}

/* ==========================================================================
   DASHBOARD & ADMIN PORTAL STYLES (NEW)
   ========================================================================== */

/* Dashboard Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  margin-top: 30px;
}

.dashboard-sidebar {
  background-color: var(--pure-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  padding: 30px 20px;
  height: fit-content;
}

.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.dashboard-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dashboard-menu-item:hover, .dashboard-menu-item.active {
  background-color: var(--warm-cream);
  color: var(--primary-saffron);
  font-weight: 600;
}

.dashboard-content-area {
  background-color: var(--pure-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  padding: 40px;
  min-height: 500px;
}

/* Dashboard Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background-color: var(--warm-cream);
  border: 1px solid var(--border-gray);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-saffron);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-info h4 {
  font-size: 1.8rem;
  color: var(--dark-brown);
  line-height: 1.2;
}

.stat-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Tables & Lists */
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.9rem;
}

.dashboard-table th, .dashboard-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
}

.dashboard-table th {
  background-color: var(--light-gray);
  color: var(--dark-brown);
  font-weight: 600;
}

.dashboard-table tr:hover {
  background-color: rgba(255, 153, 51, 0.03);
}

/* Authentication Forms */
.auth-container {
  max-width: 450px;
  margin: 50px auto;
  background-color: var(--pure-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  border-top: 5px solid var(--primary-saffron);
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-gray);
  margin-bottom: 35px;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.auth-tab.active {
  color: var(--primary-saffron);
  border-bottom: 3px solid var(--primary-saffron);
}

/* Zoom Gallery */
.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image-zoom {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  cursor: zoom-in;
}

.main-image-zoom img {
  width: 100%;
  transition: transform 0.1s ease-out;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
}

.thumbnail-item {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
}

.thumbnail-item.active {
  border-color: var(--primary-saffron);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Coupons & Subscriptions */
.coupon-input-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.coupon-input-group input {
  flex-grow: 1;
  padding: 10px 15px;
  border: 1px solid var(--border-gray);
  border-radius: var(--border-radius-md);
}

/* Product Reviews list */
.review-item {
  border-bottom: 1px solid var(--border-gray);
  padding: 20px 0;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.rating-stars {
  color: var(--accent-gold);
}

/* PWA Promo header element */
.pwa-banner {
  display: none;
  background-color: var(--accent-gold-light);
  color: var(--dark-brown);
  padding: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
}

.pwa-banner button {
  background-color: var(--primary-saffron);
  color: var(--pure-white);
  padding: 4px 12px;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Skip to content (a11y) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary-saffron);
  color: var(--pure-white);
  padding: 10px 20px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--primary-saffron);
  outline-offset: 2px;
  border-radius: 2px;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--primary-saffron);
  outline-offset: 2px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--dark-brown);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-saffron);
  transform: translateY(-3px);
}

/* Skeleton loading animation */
.skeleton {
  background: linear-gradient(90deg, var(--light-gray) 25%, #e8e8e8 50%, var(--light-gray) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--border-radius-md);
}

.skeleton-card {
  background: var(--pure-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.skeleton-img {
  width: 100%;
  padding-top: 100%;
}

.skeleton-text {
  height: 14px;
  margin: 12px 20px;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.price {
  height: 20px;
  width: 40%;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--pure-white);
  z-index: 1999;
  transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
  overflow-y: auto;
  padding: 25px;
}

.mobile-nav-panel.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-brown);
  cursor: pointer;
}

.mobile-nav-panel .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.mobile-nav-panel .mobile-nav-links a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  color: var(--dark-brown);
  border-bottom: 1px solid var(--border-gray);
  font-size: 1rem;
}

.mobile-nav-panel .mobile-nav-links a:hover,
.mobile-nav-panel .mobile-nav-links a.active {
  color: var(--primary-saffron);
}

.mobile-nav-panel .mobile-nav-actions {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-panel .mobile-nav-actions a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--light-gray);
  border-radius: var(--border-radius-md);
  font-weight: 500;
  color: var(--dark-brown);
}

/* Hamburger animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* Large Tablet / Small Desktop */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .hero h2 {
    font-size: 2.8rem;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .reviews-slider {
    gap: 20px;
  }
  .review-card {
    flex: 0 0 calc(50% - 10px);
  }
}

/* Tablet / Medium Screens */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .user-btn-text {
    display: none;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header */
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .search-bar-form {
    display: none;
  }
  .header-main {
    padding: 10px 0;
  }
  .logo h1 {
    font-size: 1.4rem;
  }
  .logo img {
    height: 40px;
  }
  .header-actions {
    gap: 12px;
  }
  .action-btn {
    font-size: 1.1rem;
  }
  .user-btn-text {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 60px 0;
  }
  .hero h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero-buttons .btn {
    text-align: center;
  }

  /* Section titles */
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 0.8rem;
  }

  /* Products */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
  }
  .product-info {
    padding: 12px;
  }
  .product-title {
    font-size: 0.95rem;
  }
  .product-price {
    font-size: 1.1rem;
  }
  .product-card-actions {
    bottom: 0;
    opacity: 1;
  }

  /* Categories */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
  }
  .category-card {
    height: 180px;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  /* Reviews */
  .review-card {
    flex: 0 0 85%;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-section {
    padding: 50px 0;
  }
  .newsletter-section h2 {
    font-size: 1.6rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .main-footer {
    padding: 40px 0 20px;
  }

  /* Shop layout */
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    order: -1;
  }

  /* Product Detail */
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Cart */
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-table-container {
    overflow-x: auto;
  }
  .cart-table {
    min-width: 550px;
  }
  .cart-item-img {
    width: 50px;
    height: 50px;
  }

  /* Checkout */
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  /* Dashboard */
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    order: -1;
  }

  /* Auth */
  .auth-container {
    margin: 25px auto;
    padding: 25px;
  }

  /* Floating buttons */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 15px;
  }
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 80px;
    right: 15px;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Tracking */
  .tracking-stepper {
    flex-direction: column;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .hero h2 {
    font-size: 1.6rem;
  }
  .hero {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    flex: 0 0 90%;
    padding: 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .header-top {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
}
