@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f9f9f9;
  --surface-solid: #ffffff;
  --surface-hover: #f1f1f1;
  --border: #e5e5e5;
  --border-highlight: #d8d8d8;
  --text: #000000;
  --text-muted: #666666;
  --accent: #000000;
  --accent-glow: transparent;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-pill: 0px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeInPage 0.6s ease-out forwards;
}

@keyframes fadeInPage {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Flat Cards Utilities */
.glass {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.glass-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: #000;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
}

.gradient-text {
  color: var(--text); /* Stripped gradient, just pure contrast */
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  gap: 8px;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.btn-primary:hover {
  background: #222222;
  transform: translateY(-1px);
}

.btn-glass {
  background: #ffffff;
  color: #000000;
  border: 1px solid #cccccc;
}

.btn-glass:hover {
  border-color: #000000;
  background: #fdfdfd;
}

/* Header & Navbar */
.top-promo-banner {
  background: #e5e5e5;
  color: #333333;
  text-align: center;
  font-size: 11px;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

.top-promo-banner a {
  text-decoration: underline;
  color: #000000;
  font-weight: 500;
}

.header {
  position: relative;
  border-bottom: 4px solid #000000;
  padding: 16px 0;
  background: #ffffff;
}

.header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  color: #333;
}

.header-left img {
  width: 18px;
  height: auto;
}

.header-left select {
  font-size: 12px;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  color: #333;
}

.logo-wrapper {
  text-align: center;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000000;
  display: block;
  line-height: 1.1;
}

.logo-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #c9a565; /* Gold-ish color matching the "15 years" script */
  font-size: 20px;
  margin-top: -5px;
  display: block;
}

.search-bar {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  width: 300px;
}

.search-bar input {
  background: transparent;
  border: none;
  color: var(--text);
  outline: none;
  width: 100%;
  font-size: 14px;
}

.search-bar button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
}

.header-icons a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #000000;
  text-decoration: none;
}

.header-icons a i {
  font-size: 16px;
}

.header-icons a:hover {
  opacity: 0.7;
}

/* Marquee Ticker */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  display: flex;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  gap: 40px;
  padding-left: 40px;
}

.marquee-content span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Navbar */
.navbar {
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 0;
  border: none;
}

.navbar a {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #000000;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar a.active, .navbar a:hover {
  color: #666666;
}

.navbar a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mega Menu */
.dropdown { position: relative; }
.mega-menu-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px;
  display: none;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-top: 1px;
}
.dropdown:hover .mega-menu-content { display: block; animation: fadeUp 0.3s ease; }

.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mega-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: 0.3s;
}
.mega-item:hover { background: var(--surface-hover); }
.icon-box {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.mega-item h4 { font-size: 14px; margin-bottom: 2px; }
.mega-item p { font-size: 12px; color: var(--text-muted); }

/* Bento Hero */
.bento-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  height: 600px;
  background: var(--border); /* Creates thin borders between grid items */
  border: 1px solid var(--border);
}
.bento-main { grid-row: span 2; }
.bento-card {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.bento-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s ease;
}
.bento-card:hover img { transform: scale(1.02); }
.bento-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.bento-main h2 { font-size: 56px; margin-bottom: 12px; font-weight: 400; letter-spacing: 0; color: #ffffff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.bento-main p { font-size: 16px; color: #ffffff; margin-bottom: 32px; max-width: 80%; line-height: 1.6; font-family: 'Inter', sans-serif; text-shadow: 0 1px 5px rgba(0,0,0,0.5); }

/* Categories */
.categories-section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 32px; margin-bottom: 8px; }
.section-title p { color: var(--text-muted); }

.categories-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
}
.cat-card:hover {
  background: var(--surface-hover);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}
.cat-icon { font-size: 32px; margin-bottom: 12px; }

/* Products Grid */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: #ffffff;
  border: 1px solid transparent;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.7s ease-in-out;
  pointer-events: none;
  z-index: 5;
}
.product-card:hover { 
  border-color: var(--border); 
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.04);
}
.product-card:hover::after {
  left: 200%;
}
.product-img { width: 100%; height: 320px; object-fit: cover; padding: 0; background: #f9f9f9; border-bottom: 1px solid transparent; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover .product-img { transform: scale(1.06); }
.product-info { padding: 16px 0; flex-grow: 1; display: flex; flex-direction: column; text-align: center; }
.product-cat { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; color: #000000; text-transform: uppercase; margin-bottom: 6px; letter-spacing: 0.1em; }
.product-title { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400; margin-bottom: 8px; color: #666666; }
.product-price { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; margin-top: auto; margin-bottom: 16px; color: #000000; }
.product-card .btn { width: 100%; border-radius: 0; padding: 10px; font-size: 12px; }

/* Premium Footer */
.footer {
  background: #0a0a0a;
  color: #ffffff;
  border-top: none;
  padding: 80px 0 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer h4 { font-family: 'Playfair Display', serif; font-size: 18px; letter-spacing: 0.05em; margin-bottom: 24px; color: #ffffff; }
.footer p.desc { color: #aaaaaa; font-size: 14px; line-height: 1.8; margin-bottom: 24px; max-width: 85%; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 16px; }
.footer ul li a { color: #aaaaaa; font-size: 14px; transition: color 0.3s, padding-left 0.3s; display: inline-block; }
.footer ul li a:hover { color: #ffffff; padding-left: 5px; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.social-links a:hover { background: #ffffff; color: #000000; transform: translateY(-3px); }

.newsletter-form { display: flex; margin-top: 10px; }
.newsletter-form input { flex-grow: 1; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: #ffffff; border-radius: 0; outline: none; font-family: 'Inter', sans-serif; }
.newsletter-form input::placeholder { color: #777; }
.newsletter-form button { padding: 12px 20px; background: #ffffff; color: #000000; border: none; font-weight: 600; cursor: pointer; transition: 0.3s; }
.newsletter-form button:hover { background: #cccccc; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #777777; }
.footer-bottom a { color: #aaaaaa; transition: 0.3s; }
.footer-bottom a:hover { color: #ffffff; }

/* Utilities & Animations */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.reveal-fade { opacity: 0; transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-fade.is-visible { opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d1d1d1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #a1a1a1; }

/* Location Modal & Cart Drawer */
.modal-overlay, .cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 1000; display: none; align-items: center; justify-content: center; transition: opacity 0.3s;
}
.location-modal {
  background: #ffffff; border: 1px solid var(--border); border-radius: 0;
  padding: 30px; width: 400px;
}
.cart-drawer {
  position: fixed; top: 0; right: -400px; width: 400px; height: 100vh;
  background: #ffffff; border-left: 1px solid var(--border);
  z-index: 1001; transition: 0.3s ease; display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header, .cart-drawer-footer { padding: 24px; border-bottom: 1px solid var(--border); }
.cart-drawer-footer { border-bottom: none; border-top: 1px solid var(--border); margin-top: auto; }
.cart-drawer-items { padding: 24px; overflow-y: auto; flex-grow: 1; }

.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #eee;
}
.cart-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cart-item-info h4 {
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.4;
  font-weight: 500;
}
.cart-item-info .price {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: auto;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.qty-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-controls span {
  font-size: 14px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.modal-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.modal-close, .cart-close { background: none; border: none; color: #000; font-size: 24px; cursor: pointer; }
.form-group-modal { margin-bottom: 16px; }
.form-group-modal label { display: block; font-size: 12px; margin-bottom: 8px; color: var(--text-muted); font-family: 'Inter', sans-serif;}
.form-group-modal select, .form-group-modal input {
  width: 100%; padding: 12px; background: #ffffff; border: 1px solid var(--border);
  color: #000000; border-radius: 0; font-family: 'Inter', sans-serif;
}

.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; background: #f9f9f9; }
.trust-bar .container { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed; top: 0; left: -320px; width: 320px; height: 100vh;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-right: 1px solid var(--border);
  z-index: 1001; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(320px); }
.mobile-drawer-header { padding: 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer-header h2 { font-family: 'Playfair Display', serif; font-size: 24px; margin: 0; }
.mobile-drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: #000; transition: transform 0.3s; }
.mobile-drawer-close:hover { transform: rotate(90deg); }
.mobile-nav-links { padding: 24px; display: flex; flex-direction: column; gap: 20px; overflow-y: auto; }
.mobile-nav-links a { font-family: 'Playfair Display', serif; font-size: 18px; color: #000000; text-decoration: none; padding-bottom: 12px; border-bottom: 1px solid #f0f0f0; transition: all 0.3s; }
.mobile-nav-links a:hover { padding-left: 10px; color: #666; border-bottom-color: #000; }

/* ====================================================
   RESPONSIVE MEDIA QUERIES
   ==================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .bento-hero { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 400px 300px; }
  .bento-main { grid-column: span 2; grid-row: span 1; }
  
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  
  .trust-bar .container { font-size: 10px; flex-wrap: wrap; justify-content: center; gap: 15px; }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Header & Navbar */
  .navbar { display: none; } /* Hide desktop navbar */
  .top-promo-banner { font-size: 10px; padding: 6px 10px; }
  .header .container { grid-template-columns: auto 1fr auto; padding: 0 16px; gap: 10px; }
  .header-left { display: none; } /* Hide location/currency on tiny screens, or adjust */
  
  .logo { font-size: 24px; letter-spacing: 0.1em; }
  .logo-script { font-size: 16px; }
  
  .search-bar { display: none; } /* Hide search bar inline, keep search icon if desired, or just hide */
  .header-icons { gap: 15px; }
  
  /* Hero Section */
  .bento-hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; height: auto; }
  .bento-main { grid-column: span 1; grid-row: span 1; }
  .bento-card { min-height: 300px; }
  .bento-main h2 { font-size: 40px; }
  .bento-main p { font-size: 14px; max-width: 100%; }
  
  /* Marquee */
  .marquee-content { gap: 20px; padding-left: 20px; }
  .marquee-content span { font-size: 10px; }
  
  /* Grids */
  .categories-section { padding: 40px 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card { padding: 20px 10px; }
  .cat-icon { font-size: 24px; margin-bottom: 8px; }
  
  .products-section { padding: 0 0 40px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-img { height: 200px; }
  .product-title { font-size: 12px; }
  .product-price { font-size: 13px; }
  .product-card .btn { padding: 8px; font-size: 11px; }
  
  /* Trust Bar */
  .trust-bar .container { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  
  /* Banner Strip */
  .banner-strip .container h2 { font-size: 24px; }
  .banner-strip .container p { font-size: 14px; }
  
  /* Footer */
  .footer { padding: 50px 0 0 0; margin-top: 40px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .footer p.desc { max-width: 100%; margin: 0 auto 20px auto; }
  .social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  
  /* Cart Drawer & Modals */
  .cart-drawer { width: 100%; right: -100%; border-left: none; }
  .cart-drawer.open { right: 0; }
  .location-modal { width: 90%; max-width: 400px; padding: 20px; }
  
  #searchResults { width: 90%; left: 5%; transform: none; top: 120px; }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .logo { font-size: 20px; }
  .product-img { height: 160px; }
}
