@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Cinzel+Decorative:wght@400;700;900&display=swap');

:root {
  --primary-color: #163E34; /* Premium Deep Green */
  --primary-hover: #0F2E27;
  --bg-color: #F5F3EF; /* Soft Cream */
  --surface-color: #FFFFFF;
  --accent-color: #E8E4DB; /* Subtle warm accent */
  --text-main: #1A1A1A; /* Text Dark */
  --text-muted: #666666;
  --border-color: #DCD8CF;
  
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Cinzel Decorative', serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.py-4 { padding: 2rem 0; }
.py-8 { padding: 4rem 0; }

section:not(.hero) {
  margin-top: 100px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Header & Nav */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-icons button {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--text-main);
  transition: var(--transition);
}

.nav-icons button:hover {
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--accent-color);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05) saturate(1.05);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 420px;
  max-width: 90%;
  margin-left: 8%;
  margin-top: 15vh;
  padding: 32px;
  text-align: left;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.hero-btn {
  background: #163E34;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: none;
}

.hero-btn:hover {
  background: #0F2E27;
  color: #ffffff;
}

/* Benefits Bar */
.benefits {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem 0;
}

.benefits-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Products Grid */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3.5rem;
}

.product-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-img-wrapper {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background-color: var(--surface-color);
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s ease;
}

.realistic-shadow {
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.add-to-cart-quick {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.95);
  border: none;
  padding: 15px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
}

.product-card:hover .add-to-cart-quick {
  bottom: 0;
  opacity: 1;
}

.add-to-cart-quick:hover {
  background-color: var(--primary-color);
  color: white;
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: var(--text-main);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #aaa;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.newsletter-form button {
  border-radius: 0 4px 4px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content {
    width: 84%;
    max-width: 320px;
    margin: 20vh auto 30px auto;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 26px !important;
    line-height: 1.1;
    margin-bottom: 12px;
    white-space: normal;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .hero-btn {
    padding: 12px 24px;
  }

  .py-8 {
    padding: 3rem 0;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    text-align: center;
  }
  
  .btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero-content {
    width: 90%;
  }
  .hero-title {
    font-size: 22px !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Product Page Overhaul Styles */
.btn-black {
    background-color: var(--text-main);
    color: white;
    border: none;
}
.btn-black:hover {
    background-color: black;
}
.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}
.btn-outline:hover {
    background-color: var(--bg-color);
}
.decant-section {
    background: var(--surface-color);
}
.decant-item {
    text-align: center;
    cursor: pointer;
    width: 60px;
}
.decant-item:hover .decant-img-box {
    border-color: var(--text-main);
}
.decant-img-box {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 5px;
    background: var(--surface-color);
}
.decant-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.decant-item p {
    font-size: 0.8rem;
    font-weight: 500;
}
.tags-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.tags-section h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tags-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tag {
    display: flex;
    font-size: 0.85rem;
    color: var(--text-main);
    padding: 0.5rem 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #eee;
}
.tag-label {
    color: var(--text-muted);
    width: 120px;
}
.tags-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tag-pill {
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
/* Massive Footer Styles */
.massive-footer {
    background-color: #000;
    color: white;
    padding: 0 0 4rem 0;
}
.footer-massive-brand {
    font-family: var(--font-serif);
    font-size: 15vw;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1;
    margin-bottom: 2rem;
    padding-top: 2rem;
    overflow: hidden;
    white-space: nowrap;
}
.footer-grid-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 6rem;
    font-size: 1rem;
    line-height: 1.8;
}
.footer-grid-new a {
    text-decoration: none;
    transition: color 0.3s;
}
.footer-grid-new a:hover {
    color: white !important;
}
@media (max-width: 900px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
/* Size Selection Styles */
.size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}
.size-btn {
    background: white;
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-main);
}
.size-btn:hover {
    border-color: var(--text-main);
}
.size-btn.active {
    background: var(--text-main);
    color: white;
    border-color: var(--text-main);
}
/* ========================================
   GLOBAL PRODUCT IMAGE SHADOW & BACKGROUND
   ======================================== */

/* All product card images (shop/home grid) */
.product-img {
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12)) !important;
    background-color: #FFFFFF !important;
    mix-blend-mode: normal !important;
}

/* Product img wrapper gets white bg so the card looks clean */
.product-img-wrapper {
    background-color: #FFFFFF !important;
}

/* Product detail page large image */
.product-image-large {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.product-image-large img {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
    mix-blend-mode: normal;
    background-color: #FFFFFF;
}

/* Contact Hero Glass Effect */
.hero-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 20px 30px;
  display: inline-block;
  animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
  .hero-glass {
    padding: 14px 18px;
  }

  .hero-glass h1 {
    font-size: 28px !important;
  }
}
