/* Elegan Design System - Hande Birsay - Hihieved */

:root {
  /* Color Palette */
  --bg-primary: #FAF9F6;
  --bg-secondary: #F2EFE9;
  --bg-greige: #F4F1ED; /* Subtle warm grey for the story section */
  --bg-champagne: #FDF9F3; /* Lightest Champagne for Translations */
  --bg-champagne-deep: #F9EEDD; /* Original Deep Champagne */
  --text-main: #1C1C1C;
  --text-muted: #4A4A4A;
  --accent-color: #8D775F;
  --accent-light: #B8A99A;
  --border-color: rgba(28, 28, 28, 0.12); /* Slightly darker for better visibility */
  --white: #FFFFFF;
  --selection-bg: #F9EEDD;
  --selection-text: #1C1C1C;
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;
  
  /* Spacing & Transitions */
  --section-padding: 8rem 2rem;
  --section-padding-mobile: 4rem 1.5rem;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--selection-bg);
  color: var(--selection-text);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.italic {
  font-style: italic;
  font-weight: 400;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-color);
  color: white;
  padding: 1rem;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(250, 249, 246, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border-color);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a,
.footer-logo a {
  display: flex;
  align-items: center;
  gap: 0.1rem; /* Precise spacing between items */
}

.logo,
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.brand-separator {
  color: var(--accent-light);
  font-family: var(--font-sans);
  margin: 0.4rem 0.3rem 0 0.3rem; /* Adjusted for centered optical midpoint */
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1; /* Reset for flex centering */
}

.brand-suffix {
  font-family: var(--font-serif);
  font-style: normal; /* Standard upright for brand handle */
  font-weight: 300; /* Light weight as requested */
  font-size: 1rem;
  color: var(--accent-color);
  line-height: 1; /* Reset for flex centering */
  margin-top: 0.2rem; /* Minor optical adjustment to compensate for serif height */
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.95rem;
  text-transform: lowercase;
  letter-spacing: 0px;
  font-weight: 300;
  color: var(--text-muted);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 1.5px;
  background-color: var(--text-main);
  transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F2 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 1;
}

.hero-container {
  z-index: 2;
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Widen portrait area */
  align-items: center;
  gap: 2.5rem;
}

.hero-content {
  max-width: 550px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 2rem;
  color: var(--text-main);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 450px;
  font-weight: 300;
}

.story-text p,
.section-header p,
.products-section .container > p,
.contact-info p {
  font-weight: 300;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-image-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align right */
}

.main-portrait {
  width: 100%;
  max-width: 500px;
  height: 80vh; /* Restore to a taller portrait look */
  background-color: var(--bg-secondary);
  border-radius: 400px 400px 0 0;
  display: flex;
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--border-color);
}

.main-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sections General */
.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  position: relative;
  font-weight: 500;
}

/* Insta Pendant (Sarkaç) */
.insta-pendant {
  position: relative;
  background-color: var(--bg-champagne-deep);
  padding: 2.2rem 0.8rem 2.2rem 0.8rem;
  min-height: 250px; /* Force minimum height so it doesn't shrink when text is shorter */
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 90%, 0% 100%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex !important;
  justify-content: center; /* Center horizontally in vertical space */
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-family: var(--font-serif);
  font-style: normal; /* Removed italic */
  font-weight: 300; /* Light weight as requested */
  color: var(--text-main);
  letter-spacing: 0.2px;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
  transform-origin: top center;
  /* Direct black borders for left and right */
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

/* Wrapper to hold the filter border for the V-notch specifically */
.insta-pendant-wrap {
  position: fixed;
  right: 5rem;
  top: 0;
  z-index: 1001;
  filter: drop-shadow(0px 8px 15px rgba(0,0,0,0.12)); /* Subtle drop shadow for the whole pendant */
}

/* Page shadow effect at the top */
/* Removed top shadow and vertical line for cleaner look */

.insta-pendant:hover {
  background-color: var(--white); /* Only very subtle background change, no movement */
}

.insta-pendant small {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 300; /* Light font as requested */
  text-transform: lowercase;
  opacity: 0.6;
  margin-top: 10px;
  letter-spacing: 0.2px;
}

.center {
  text-align: center;
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
}

.center span {
  display: inline-block; /* Pixel-perfect selection boundary */
}

.italic-quote {
  font-style: italic;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  line-height: 1.8;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.grid-2-alt {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

/* Story Section */
.story-section {
  padding: var(--section-padding);
  background-color: var(--bg-greige);
  background-image: repeating-linear-gradient(to right, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 8px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  margin-top: 3rem;
  color: var(--accent-color);
  padding-left: 2rem;
  border-left: 3px solid var(--accent-light);
}

/* Instagram Grid */
.instagram-section {
  background-color: var(--bg-secondary);
  padding: var(--section-padding);
  background-image: repeating-linear-gradient(to right, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 8px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}

.insta-link-title {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
}

.insta-link-title:hover {
  border-bottom-color: var(--accent-color);
}

.insta-follow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.insta-follow-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.insta-follow-link:hover {
  color: var(--accent-color);
}

.mini-insta-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.insta-item {
  aspect-ratio: 5 / 6.5; /* 500x650 Editorial Portrait Ratio */
  background-color: var(--white);
  border: 0.5px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: block;
}

.insta-item:hover {
  transform: scale(0.98);
}

.insta-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.insta-item:hover .insta-hover {
    opacity: 1;
}

.insta-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.insta-item:hover .insta-icon {
    transform: scale(1);
}

/* Book Section */
.book-section {
  padding: var(--section-padding);
  background-color: var(--bg-champagne-deep); /* Deeper champagne for the book */
  background-image: repeating-linear-gradient(to right, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 8px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}

.book-cover-wrap {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 2.5rem;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  transition: var(--transition-smooth);
}

.book-gallery-link {
  text-decoration: none;
  display: block;
}

.book-cover-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 15px 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.book-gallery-link:hover .book-cover-wrap {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.book-gallery-link:hover .book-cover-img {
  transform: scale(1.02);
}

.book-intro {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}

.typewriter {
  font-family: 'Courier Prime', monospace;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white to pop on champagne */
  padding: 1.5rem;
  border-left: 2px solid var(--accent-color);
  margin-bottom: 2rem;
}

/* Translations Section */
.translations-section {
  padding: 4rem 2rem 8rem 2rem;
  background-color: var(--bg-champagne); /* Lightest champagne */
  background-image: repeating-linear-gradient(to right, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 8px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}

.translations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.translation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background-color: var(--white);
  border: 0.5px solid var(--border-color);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.translation-item:hover {
  background-color: var(--bg-champagne-deep);
  border-color: var(--bg-champagne-deep);
}

.translation-mini-cover {
  width: 100%;
  max-width: 180px; 
  aspect-ratio: 4/5;
  background-color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 0.5px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.translation-mini-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: rgba(0,0,0,0.05);
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.translation-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-main);
  min-height: 3rem; /* Fixed space for titles to keep items aligned */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .translation-title {
    min-height: 4.5rem; /* More lines on mobile */
  }
}

.translation-item {
  text-align: center;
}

.translation-mini-cover {
  width: 100%;
  aspect-ratio: 5/7;
  background-color: var(--bg-secondary);
  border: 0.5px solid var(--border-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--accent-light);
}

.translation-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.btn-text {
  font-size: 0.8rem;
  text-transform: lowercase;
  color: var(--accent-color);
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.book-actions {
  margin-top: 3rem;
}

/* Buttons */
.btn {
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background-color: var(--text-main);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--bg-champagne);
  color: var(--text-main);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--bg-champagne);
  border-color: var(--bg-champagne);
  color: var(--text-main);
}

.btn-outline {
  border: 1px solid var(--border-color);
  padding: 1.2rem 3rem;
}

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

/* Product Cards */
.product-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 4rem; /* Breath space at bottom */
}

.product-card {
  padding: 3rem;
  background: var(--white);
  border: 0.5px solid var(--border-color);
  text-align: center;
  position: relative;
}

.product-card:hover {
  border-color: var(--bg-champagne);
  background-color: var(--bg-champagne);
}

.card-icon {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem; /* Relaxed padding */
  color: var(--accent-color);
}

.card-arrow {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: var(--accent-light);
}

/* Contact Section */
.products-section {
  padding: var(--section-padding);
  background-color: var(--white);
  background-image: repeating-linear-gradient(to right, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 8px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}

.contact-section {
  padding: var(--section-padding);
  background-color: var(--bg-greige);
  background-image: repeating-linear-gradient(to right, var(--border-color), var(--border-color) 3px, transparent 3px, transparent 8px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.email-direct {
  display: block;
  font-size: 2rem;
  font-family: var(--font-serif);
  margin: 2rem 0;
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.email-direct:hover {
  color: var(--accent-color);
  background-color: var(--bg-champagne);
}

.social-icons {
  display: flex;
  gap: 2rem;
}

.social-icons a {
  text-transform: lowercase; /* Matches nav */
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.social-icons a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icons a:hover {
  color: var(--accent-color);
}

.contact-form-container {
  padding: 3rem;
  background-color: var(--bg-secondary);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--border-color);
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--text-main);
}

.full-width {
  width: 100%;
}

/* Footer */
.footer {
  padding: 4rem 2rem;
  background-color: var(--text-main);
  color: var(--white);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  background-image: repeating-linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0.3) 3px, transparent 3px, transparent 8px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.85rem;
  text-transform: lowercase;
  opacity: 0.7;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Image Placeholder Styling */
.image-placeholder {
  background-color: var(--bg-secondary);
  border: 1px dashed var(--accent-light);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 0.9rem;
}

.placeholder {
  background-image: linear-gradient(45deg, #eee 25%, transparent 25%, transparent 50%, #eee 50%, #eee 75%, transparent 75%, transparent);
  background-size: 20px 20px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    padding: 8rem 1.5rem 5rem 1.5rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    order: 2;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-container {
    height: 45vh;
    order: 1;
    margin-bottom: 2rem;
    justify-content: center;
  }
  
  .main-portrait {
    height: 100%;
    width: 280px;
    margin: 0 auto;
  }

  /* Global section padding for mobile */
  section {
    padding: var(--section-padding-mobile) !important;
  }
  
  .grid-2, .grid-2-alt, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-champagne);
    padding: 2rem;
    gap: 2rem;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .translations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .translations-grid .translation-item {
    text-align: center;
  }

  .italic-quote {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .insta-pendant-wrap {
    right: 1.5rem;
    bottom: 1.5rem;
    top: auto;
    filter: none; /* Remove filter on mobile pill */
  }

  .insta-pendant {
    padding: 0.8rem 1.5rem;
    writing-mode: horizontal-tb;
    clip-path: none;
    background-color: var(--bg-champagne-deep);
    border-radius: 40px;
    border: 0.8px solid #000; /* Direct black border for mobile pill */
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    width: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .insta-pendant::after,
  .insta-pendant::before {
    display: none !important;
  }
  
  .insta-pendant-icon {
    margin-bottom: 0px;
    margin-right: 0px;
    transform: rotate(0);
    opacity: 0.9;
  }

  .insta-pendant small {
    display: block !important;
    font-size: 0.75rem;
    font-weight: 300;
  }

  .section-title {
    font-size: 2.2rem;
  }
  
  .product-links {
    grid-template-columns: 1fr;
  }
  
  .email-direct {
    font-size: 1.4rem;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1s 0.3s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-delay-2 {
  opacity: 0;
  animation: fadeIn 1s 0.6s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Reviews Grid --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    background-color: var(--bg-champagne); /* New Champagne Background */
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: var(--accent-gold);
}

.review-card-image {
    width: 100%;
    height: 200px;
    background: var(--bg-champagne);
    overflow: hidden;
    position: relative;
}

.review-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.review-card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-category {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.review-title {
    font-family: var(--serif-font);
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.review-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-footer {
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: auto; /* Pushes footer to the very bottom */
}

.review-date {
    font-style: italic;
}

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 0.05em;
}

/* --- Reader Mode & Detail Page --- */

.container-narrow {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.review-article {
    animation: fadeIn 0.8s ease-out;
}

.review-header {
    margin-bottom: 5rem;
}

.review-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--accent-light);
    display: block;
}

.review-article .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.review-meta {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.review-featured-image {
    margin: 4rem 0;
    background: var(--bg-secondary);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.review-body-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
}

.review-body-content p {
    margin-bottom: 2.5rem;
}

.review-body-content h2 {
    font-size: 2rem;
    margin: 4rem 0 1.5rem 0;
    color: var(--text-main);
}

.review-body-content h3 {
    font-size: 1.5rem;
    margin: 3rem 0 1.2rem 0;
    color: var(--text-main);
}

.review-body-content ul, .review-body-content ol {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.review-body-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.review-body-content ul li::before {
    content: "—";
    position: absolute;
    left: -1.5rem;
    color: var(--accent-light);
}

.review-body-content blockquote {
    padding: 2.5rem 0;
    margin: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.review-body-content blockquote p {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.review-body-content blockquote footer {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Text-Only Card Fallback Styles */
.text-only-card {
    background-color: #fff !important;
    border-left: 4px solid var(--accent-gold) !important;
}

.text-only-card .review-card-content {
    background-color: #fff9f0; /* Subtle off-white cream */
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .review-header { margin-bottom: 3rem; }
    .review-body-content { font-size: 1.05rem; }
}

/* --- Final Editorial Touches --- */

/* --- Viral Share & Meta Refinement --- */

.meta-category {
    color: var(--accent-color) !important; /* Gold tone as requested */
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 1 !important;
}

/* --- FINAL REFINED VIRAL SIDEBAR --- */

.review-article {
    position: relative;
    max-width: 740px;
    margin: 0 auto;
}

/* --- MASTER FIXED VIRAL SIDEBAR --- */

/* --- MASTER FIXED VIRAL SIDEBAR --- */

.share-sidebar {
    position: fixed;
    /* Positioned relative to the 740px container */
    left: calc(50% - 370px - 70px); 
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.share-sticky {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.share-divider {
    width: 20px;
    height: 1px;
    background: #eee;
    margin: 1rem 0;
}

.share-btn-mini {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.05);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #999;
    padding: 0;
    overflow: hidden;
}

.share-btn-mini:hover {
    color: #000;
    border-color: #000;
    background: #fdfdfd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.share-btn-mini img, .share-btn-mini svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    fill: currentColor;
}

.share-btn-mini.social-insta:hover { color: #E1306C; border-color: #E1306C; }
.share-btn-mini.social-mail:hover { color: #666; border-color: #666; }
.share-btn-mini.social-whatsapp:hover { color: #25D366; border-color: #25D366; }

/* Elegant Feedback Toast */
.toast-hihieved {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.toast-hihieved.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1100px) {
    .share-sidebar {
        /* Desktop side dock hidden, replaced by cleaner section */
        position: relative;
        left: 0; top: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        margin: 4rem 0 2rem 0;
    }
    .share-sticky {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* 📱 High-End Mobile Floating Share Pill */
@media (max-width: 768px) {
    .share-sidebar {
        position: fixed;
        bottom: 1.8rem;
        top: auto; /* IMPORTANT: Stops stretching from 50% top */
        left: 50%;
        transform: translateX(-50%) translateY(0);
        height: auto; /* Natural pill height */
        flex-direction: row; /* Horizontal layout */
        background: #fff;
        border: 1px solid rgba(0,0,0,0.08);
        padding: 0.6rem 1.2rem;
        border-radius: 100px;
        box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        z-index: 3000;
        width: auto;
        min-width: 260px;
        margin: 0;
        animation: pillPop 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    }

    @keyframes pillPop {
        from { transform: translateX(-50%) translateY(100px); opacity: 0; }
        to { transform: translateX(-50%) translateY(0); opacity: 1; }
    }

    .share-sticky {
        width: 100%;
        justify-content: space-around;
        flex-direction: row;
        gap: 0;
    }

    .share-btn-mini {
        width: 44px;
        height: 44px;
        border: none;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .share-btn-mini:active {
        transform: scale(0.9);
        opacity: 0.7;
    }

    /* Small padding for content to not be hidden at the very end */
    .footer { padding-bottom: 6rem; }
}

.review-tags {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.1em;
    width: 100%;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tag-item {
    background: #f5f5f5;
    color: #666;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.tag-item:hover {
    background: #000;
    color: #fff;
}

/* Breadcrumb style back link */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.back-to-blog:hover {
    color: var(--text-main);
}
