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

:root {
  /* Premium Color Palette */
  --bg-color: #faf7f5;
  --bg-alt: #ffffff;
  --primary: #d6877b; /* Rose Pink */
  --primary-light: #f4dcd8;
  --text-main: #232120;
  --text-muted: #6e6966;
  --white: #ffffff;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.03);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.06);
  --shadow-hover: 0 20px 50px rgba(214, 135, 123, 0.15);
}

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

html {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  scroll-behavior: smooth;
}

body::before {
  content: '';
  position: fixed;
  top: 15%; left: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: 10%; right: 5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, #eaaa9f 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

h1, h2, h3, h4, h5, .serif {
  font-family: 'Playfair Display', serif;
}

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

ul {
  list-style: none;
}

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

/* Typography */
.text-center { text-align: center; }
.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.section-hero-header {
  padding-top: 100px;
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .section-hero-header {
    padding-top: 154px;
    margin-bottom: 50px;
  }
}

/* Reusable Components */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-main);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--text-main);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: var(--white);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  background: rgba(250, 247, 245, 0.85); /* Glassmorphism */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu-toggle {
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
  z-index: 101;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo-img {
  height: 50px;
  object-fit: contain;
  transition: var(--transition);
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 10px;
}

header .brand-text {
  color: var(--text-main);
}

footer .brand-text {
  color: var(--white);
}

footer .logo {
  margin-bottom: 20px;
}

nav ul {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-alt);
  padding: 20px;
  box-shadow: var(--shadow-md);
  gap: 20px;
}

nav ul.show {
  display: flex;
}

@media (min-width: 1024px) {
  nav ul {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    gap: 32px;
  }
}

nav a {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: block;
  padding: 10px 0;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.user-actions {
  display: none;
}

.user-actions .icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}

.user-actions .icon:hover {
  opacity: 1;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Section */
.hero.bg-blurred {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('../images/hero_bg_blurred.png');
  background-size: cover;
  background-position: center;
}

/* Base hero just in case */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-glass-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-glass-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 40px;
  }
}

.hero-content {
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 60px 80px;
    text-align: left;
  }
}

.hero-content::after {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%; right: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7), transparent);
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero-content h1 em {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-image-wrap {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 300px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  aspect-ratio: 1 / 1.5;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 300px;
}

/* Marquee */
.marquee-container {
  background-color: var(--primary);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-content span {
  margin: 0 40px;
  font-weight: 500;
}

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

/* Collection Section */
.section {
  padding: 100px 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

/* Responsive Grid for Gallery and Product listings */
.grid-4, .grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .grid-4, .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* Product Card */
.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 16px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.product-image-wrap {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  background-color: #f5f5f5;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s ease;
}

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

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--white);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.badge-sale {
  background-color: var(--primary);
  color: var(--white);
}

.quick-add {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: rgba(255,255,255,0.95);
  color: var(--text-main);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.85rem;
  opacity: 0;
  transition: var(--transition);
  width: 80%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card:hover .quick-add {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quick-add:hover {
  background-color: var(--text-main);
  color: var(--white);
}

.product-info {
  text-align: center;
}

.stars {
  color: #FBBF24;
  font-size: 0.8rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-price {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.product-price .original {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 8px;
  font-size: 0.9rem;
}

/* Category Banners */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 400px;
  gap: 24px;
}

.cat-box {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.cat-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.cat-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
}

.cat-box:hover img {
  transform: scale(1.05);
}

.cat-box.large {
  grid-column: span 2;
}

.cat-box.tall {
  grid-row: span 2;
  height: 824px; /* 400*2 + 24 gap */
}

.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
  color: var(--white);
}

.cat-content h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* Newsletter */
.newsletter-section {
  background-color: var(--primary-light);
  padding: 100px 0;
  text-align: center;
}

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

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.newsletter-content p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  background: var(--white);
  border-radius: 50px;
  padding: 8px;
  box-shadow: var(--shadow-md);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
}

.newsletter-form .btn-primary {
  padding: 16px 40px;
}

/* Footer */
footer {
  background-color: var(--text-main);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--primary-light);
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 16px;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-content p {
    margin: 0 auto 40px;
  }
  .hero-image-wrap {
    height: 60vh;
    justify-content: center;
  }
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .cat-box.large {
    grid-row: span 1;
    height: 400px;
  }
  .cat-box {
    height: 300px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(250, 247, 245, 0.95);
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  
  .hero {
    padding-top: 120px;
  }
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    gap: 16px;
  }
  .newsletter-form input {
    padding: 16px;
    text-align: center;
  }
  .newsletter-form .btn-primary {
    width: 100%;
  }
  .whatsapp-sticky {
    bottom: 15px;
    right: 15px;
    padding: 10px 20px;
    white-space: nowrap;
    font-size: 0.9rem;
  }
}

/* WhatsApp Sticky CTA */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-sticky:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  color: #fff;
}
.whatsapp-sticky i {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .cat-box, .cat-box.large, .cat-box.tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 350px;
  }
}


/* About & Our Story Section */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 20px;
  align-items: center;
}

.about-text {
  max-width: 540px;
  margin: 0 auto;
}

.about-text h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--text-main);
  text-align: center;
}

.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 5%;
    flex-direction: row;
    align-items: center;
  }
  
  .about-text {
    max-width: none;
    margin: 0;
  }
  
  .about-text h1 {
    font-size: 3.2rem;
    text-align: left;
    margin-bottom: 40px;
  }
  
  .about-text p {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }
}

.locate-us-section { 
  padding: 60px 20px; 
  background-color: var(--primary-light); 
  text-align: center; 
}

.map-container { 
  margin-top: 30px; 
  border-radius: var(--border-radius-md); 
  overflow: hidden; 
  height: 350px; 
  box-shadow: var(--shadow-hover); 
  border-top: 4px solid var(--primary); 
  filter: grayscale(80%); 
  transition: var(--transition); 
  position: relative; 
}

@media (min-width: 768px) {
  .map-container { height: 500px; margin-top: 40px; }
  .locate-us-section { padding: 80px 0; }
}
