@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  /* Core Palette - Ultra Premium */
  --bg-color: #fcfaf3;
  --surface: #ffffff;
  --surface-secondary: #f8f9fa;
  --text-main: #0a0a0a;
  --text-muted: #5f6368;
  --primary: #1a1a1a;
  --primary-glow: rgba(26, 26, 26, 0.05);
  --accent: #3f9c9c;
  --accent-soft: rgba(63, 156, 156, 0.1);
  --error: #d93025;

  /* Precision Spacing */
  --radius-xl: 40px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;

  /* Elevate Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.06);

  /* Anim */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.6s var(--ease);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.pm-title {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 60px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* --- Navigation: The Glass Bridge --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 24px 0;
  transition: transform 0.4s var(--ease), padding 0.4s var(--ease),
    background 0.4s var(--ease);
}

header.header-hidden {
  transform: translateY(-100%);
}

.mobile-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  background: var(--surface);
  z-index: 3000;
  transition: right 0.4s var(--ease);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  z-index: 2900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-nav-header h3 {
  font-size: 24px;
  font-weight: 800;
}

#closeMenu {
  background: var(--surface-secondary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-links a,
.mobile-dropdown-trigger {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  padding: 15px 20px;
  background: var(--surface-secondary);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-content {
  display: none;
  padding: 10px 0 10px 20px;
  flex-direction: column;
  gap: 10px;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown.active .mobile-dropdown-trigger i {
  transform: rotate(180deg);
}

.mobile-dropdown-content a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  padding: 10px 15px;
}

.view-all-mobile {
  color: var(--accent) !important;
  border-top: 1px solid #eee;
  margin-top: 5px;
  padding-top: 15px !important;
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid var(--surface-secondary);
}

.mobile-nav-footer .site-name {
  font-family: 'Outfit';
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 8px;
}

.mobile-nav-footer .dev-credit {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.mobile-nav-footer .dev-credit a {
  display: inline;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 800;
}

header.scrolled {
  padding: 12px 0;
}

.header-inner {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 8px 12px 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.logo h2 {
  font-size: 1.25rem;
  margin: 0;
  white-space: nowrap;
  font-weight: 900;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.header-links {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.03);
  padding: 4px;
  border-radius: 100px;
}

.header-links a {
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 100px;
}

.header-links a:hover,
.header-links a.active {
  color: var(--text-main);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

/* --- Dropdown Engine: High-Performance Mega Menu --- */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 1000px;
  max-width: calc(100vw - 40px);
  max-height: 70vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--surface);
  border-radius: 40px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
  padding: 50px;
  z-index: 2000;
  margin-top: 20px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
  margin: 30px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.dropdown-menu:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-main);
  font-weight: 800;
  font-size: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--surface-secondary);
  width: 100%;
}

.dropdown-header i {
  color: var(--accent);
  font-size: 18px;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
  width: 100%;
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 20px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  color: var(--text-muted) !important;
  background: transparent !important;
  transition: all 0.3s var(--ease);
  font-weight: 600 !important;
  line-height: 1.4 !important;
  border: 1px solid transparent;
}

.dropdown-menu a:hover {
  background: var(--surface-secondary) !important;
  color: var(--accent) !important;
  transform: translateX(10px);
  border-color: rgba(0, 0, 0, 0.03);
}

.dropdown-menu a .count-bubble {
  background: #f0f2f5;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  min-width: 28px;
  text-align: center;
  transition: all 0.3s ease;
  margin-left: auto;
}

.dropdown-menu a:hover .count-bubble {
  background: var(--accent);
  color: #fff;
}

.view-all-link {
  border-top: 1px solid var(--surface-secondary);
  margin-top: 10px;
  padding-top: 35px !important;
  justify-content: center !important;
  color: var(--accent) !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  width: 100%;
}

.dropdown-menu a i {
  font-size: 10px;
  opacity: 0.3;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-color) !important;
  padding-left: 25px !important;
}

.dropdown-menu a:hover i {
  opacity: 1;
  color: var(--accent);
  transform: translateX(3px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-link {
  position: relative;
  font-weight: 700;
  display: flex;
}

.cart-bubble {
  background: var(--surface-secondary);
  padding: 10px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.cart-bubble:hover {
  background: #f0f0f0;
}

.cart-count {
  font-size: 13px;
  color: var(--text-main);
}

.btn-black {
  background: var(--primary);
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: #000;
}

/* --- Hero: Production Grade Impact --- */
.hero-wrapper {
  padding-top: 100px;
  padding-bottom: 40px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.hero-content h1 {
  font-size: clamp(18px, 6vw, 42px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero-content p {
  font-size: clamp(15px, 1.2vw, 20px);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto clamp(24px, 4vw, 48px);
  font-weight: 500;
}

.hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.hero-main-img:hover {
  transform: scale(1.01);
}

.hero-search-float {
  background: var(--surface);
  padding: 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  width: 95%;
  max-width: 800px;
  margin: -40px auto 0;
  position: relative;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-search-float input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 24px;
  font-size: 17px;
  font-weight: 500;
  background: transparent;
}

.hero-search-float button {
  background: var(--primary);
  color: #fff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-search-float button:hover {
  background: var(--accent);
  transform: rotate(-15deg);
}

/* --- Section Rhythm --- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
}

/* --- Bento: The Grid of Excellence --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.service-card {
  background: var(--surface);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-soft);
}

.service-card i {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.icon-arrow-box {
  width: 40px;
  height: 40px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-size: 12px;
  transition: var(--transition);
}

.service-card:hover .icon-arrow-box {
  background: var(--primary);
  color: #fff;
  transform: rotate(-45deg);
}

/* --- Product Cards: Precision Engineered --- */
.product-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.product-modern-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.product-modern-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.pm-img-wrapper {
  height: 260px;
  overflow: hidden;
  position: relative;
  margin: 10px;
  border-radius: var(--radius-md);
  background: var(--surface-secondary);
}

.pm-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.product-modern-card:hover .pm-img-wrapper img {
  transform: scale(1.1) rotate(1deg);
}

.pm-info {
  padding: 8px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pm-cat {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.pm-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  line-height: 1.3;
  min-height: 1.3em; /* Ensure some vertical presence even with short titles */
}

.pm-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}

.pm-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 20px;
  border-top: 1px solid var(--surface-secondary);
  gap: 16px;
  margin-top: auto;
}

.pm-price {
  font-size: 22px;
  font-weight: 800;
  font-family: "Outfit";
  color: var(--text-main);
  white-space: nowrap;
}

.pm-btn,
.pm-qty-selector {
  background: var(--primary);
  color: #fff !important;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  width: 100%;
  border: none;
  cursor: pointer;
}

.pm-qty-selector {
  justify-content: space-between;
  padding: 12px 15px;
  background: var(--surface-secondary);
  color: var(--text-main) !important;
  border: 1px solid #eee;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.qty-btn:hover {
  transform: scale(1.1);
  background: var(--accent);
}

.qty-value {
  font-size: 16px;
  font-weight: 800;
  font-family: "Outfit";
  min-width: 30px;
  text-align: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-count.bump {
  transform: scale(1.4);
}

.pm-btn:hover {
  background: var(--accent);
}

/* --- About: The Vision Center --- */
.about-modern {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  margin-top: 60px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.about-img {
  border-radius: var(--radius-lg);
  height: 550px;
  width: 100%;
  object-fit: cover;
}

/* --- Stats Precision --- */
.stat-item h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Footer Architectural --- */
footer {
  background: var(--surface);
  padding: 120px 0 60px;
  margin-top: 100px;
  border-top: 1px solid var(--surface-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 800;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--surface-secondary);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Admin Ecosystem: High Functionality --- */
body.admin-mode {
  background: #f4f5f7;
  padding: 24px;
  font-family: "Inter", sans-serif;
}

.sidebar {
  width: 300px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: calc(100vh - 48px);
  position: sticky;
  top: 24px;
  box-shadow: var(--shadow-md);
}

.sidebar-nav a {
  padding: 14px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--text-muted);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--bg-color);
  color: var(--text-main);
}

.sidebar-nav a i {
  font-size: 18px;
  width: 24px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-card .value {
  font-size: 32px;
  font-weight: 800;
  font-family: "Outfit";
  margin-top: 12px;
}

/* --- Shop & Filter Optimization --- */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 30px 0 60px;
}

.shop-sidebar {
  position: sticky;
  top: 140px;
  height: calc(100vh - 180px);
  overflow-y: auto;
  padding-right: 15px;
  margin-right: -15px;
}

.shop-sidebar::-webkit-scrollbar {
  width: 4px;
}

.shop-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.shop-sidebar::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 10px;
}

#shopSearch:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 10px 25px var(--accent-soft) !important;
}

.filter-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.filter-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--surface-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  transition: var(--transition);
  width: 100%;
}

.filter-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-item:hover {
  color: var(--text-main);
}

.filter-item input[type="checkbox"],
.check-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  accent-color: var(--accent);
  cursor: pointer;
  border: 1.5px solid #ddd;
  background: #fff;
  flex-shrink: 0;
}

.filter-item .count,
.count-bubble {
  background: #f0f2f5;
  color: #555;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  min-width: 32px;
  text-align: center;
  transition: var(--transition);
}

.filter-item:hover .count,
a:hover .count-bubble {
  background: var(--accent);
  color: #fff;
}
.range-slider {
  padding: 10px 0;
}

.range-slider input {
  width: 100%;
  accent-color: var(--accent);
}

.price-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 30px;
  }
  .dropdown-menu {
    width: 950px;
  }
  .product-modern-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-col:first-child {
    grid-column: span 3;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  .dropdown-menu {
    width: 900px;
    max-width: calc(100vw - 40px);
    max-height: 60vh;
    padding: 35px;
    gap: 30px;
  }
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }
  .dropdown-header {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .about-modern {
    grid-template-columns: 1fr;
    padding: 60px;
    gap: 48px;
  }
  .about-img {
    height: 400px;
  }
  .product-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header { padding: 0; }
  header .container { padding: 0; max-width: 100%; }
  .header-inner { 
    padding: 12px 20px; 
    border-radius: 0; 
    margin: 0; 
    background: rgba(255, 255, 255, 0.95);
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
  }
  .header-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .logo h2 {
    font-size: 1.1rem;
  }
  .logo img {
    height: 32px;
  }

  .hero-wrapper {
    padding-top: 100px;
  }
  .hero-card {
    padding: 40px 20px;
    border-radius: var(--radius-lg);
  }
  .hero-main-img {
    height: 300px;
    margin-top: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:first-child {
    grid-column: span 2;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .container {
    padding: 0 15px;
  }
  .logo h2 {
    font-size: 0.95rem;
  }
  .hero-content h1 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .hero-content p {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .hero-card {
    padding: 30px 15px;
  }
  .hero-search-float {
    padding: 6px;
    border-radius: 100px;
    margin-top: -20px;
  }
  .hero-search-float input {
    padding: 0 12px;
    font-size: 14px;
  }
  .hero-search-float button {
    width: 44px;
    height: 44px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-modern-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pm-img-wrapper {
    height: 240px;
  }
  .pm-info {
    padding: 10px 20px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: span 1;
  }

  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  .btn-black {
    padding: 8px 16px;
    font-size: 12px;
  }

  .header-inner {
    padding: 12px 15px;
  }
  .cart-bubble {
    padding: 8px 12px;
    gap: 4px;
  }
  .header-actions {
    gap: 6px;
  }
}

/* Utility Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 1s var(--ease);
}
.hero-main-img {
  animation: fadeInUp 1.2s var(--ease);
}
.hero-search-float {
  animation: fadeInUp 1.4s var(--ease);
}
