/* ===== ARIN NATURE — DESIGN TOKENS ===== */
:root {
  --color-primary: #6B8E5A;
  --color-primary-light: #8BAF76;
  --color-primary-dark: #4A6B3E;
  --color-secondary: #C9A96E;
  --color-secondary-light: #DFC89A;
  --color-accent: #8B5E3C;
  --color-bg: #FFFAF5;
  --color-bg-alt: #FFF3E8;
  --color-bg-card: #FFFFFF;
  --color-text: #2D2A26;
  --color-text-light: #6B6560;
  --color-text-muted: #9E9791;
  --color-border: #E8DDD3;
  --color-whatsapp: #25D366;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 80px;
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
  --color-bg: #1a1a1a;
  --color-bg-alt: #222222;
  --color-bg-card: #2a2a2a;
  --color-text: #f0ece6;
  --color-text-light: #b8b0a6;
  --color-text-muted: #8a8279;
  --color-border: #3d3832;
  --color-primary: #8BAF76;
  --color-primary-light: #a3c48f;
  --color-primary-dark: #6B8E5A;
  --color-accent: #dfa86e;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.5);
}
[data-theme="dark"] .navbar {
  background: rgba(26,26,26,0.85);
  border-bottom-color: rgba(61,56,50,0.5);
}
[data-theme="dark"] .navbar.scrolled { background: rgba(26,26,26,0.95); }
[data-theme="dark"] .hero { background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #2a2520 100%); }
[data-theme="dark"] .hero::before { background: radial-gradient(circle, rgba(139,175,118,0.06) 0%, transparent 70%); }
[data-theme="dark"] .hero-floating { background: rgba(42,42,42,0.9); color: var(--color-text); }
[data-theme="dark"] .footer { background: #111; }
[data-theme="dark"] .cta-band { background: linear-gradient(135deg, #3a5a2e, #4A6B3E, #6B8E5A); }
[data-theme="dark"] .modal { background: var(--color-bg-card); }
[data-theme="dark"] .modal-close { background: rgba(42,42,42,0.9); border-color: var(--color-border); color: var(--color-text); }
[data-theme="dark"] .nav-links.open { background: var(--color-bg); }
[data-theme="dark"] .nav-cta.open { background: var(--color-bg); }
[data-theme="dark"] .product-card-image { background: #333; }

/* Dark mode toggle button */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  color: var(--color-text-light); background: transparent;
  border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-primary); border-color: var(--color-primary); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--color-text); }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--color-text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto 60px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer;
}
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: 0 4px 15px rgba(107,142,90,0.3); }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,142,90,0.4); }
.btn-outline { border: 2px solid var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-whatsapp { background: var(--color-whatsapp); color: #fff; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); display: flex; align-items: center;
  background: rgba(255,250,245,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,221,211,0.5);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(255,250,245,0.95); box-shadow: var(--shadow-sm); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 45px; width: auto; }
.nav-logo span { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-primary-dark); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--color-text-light); position: relative; transition: var(--transition); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-primary); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-instagram { display: flex; align-items: center; color: var(--color-text-light); transition: var(--transition); }
.nav-instagram:hover { color: #E4405F; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--color-text); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, #f0e6d8 100%);
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(107,142,90,0.08) 0%, transparent 70%); }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(107,142,90,0.1); color: var(--color-primary-dark); padding: 8px 20px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; line-height: 1.1; }
.hero-title span { color: var(--color-primary); font-style: italic; }
.hero-desc { font-size: 1.15rem; color: var(--color-text-light); margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; z-index: 2; }
.hero-image img { width: 100%; max-width: 520px; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); margin: 0 auto; }
.hero-floating { position: absolute; padding: 16px 24px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-radius: var(--radius-md); box-shadow: var(--shadow-md); font-size: 0.9rem; font-weight: 600; animation: float 6s ease-in-out infinite; }
.hero-floating.f1 { top: 10%; right: -10%; }
.hero-floating.f2 { bottom: 15%; left: -5%; animation-delay: -3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== FEATURES ===== */
.features { background: var(--color-bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card { text-align: center; padding: 48px 32px; background: var(--color-bg-card); border-radius: var(--radius-lg); border: 1px solid var(--color-border); transition: var(--transition); cursor: default; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.feature-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(107,142,90,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--color-primary); transition: var(--transition); }
.feature-card:hover .feature-icon { background: var(--color-primary); color: #fff; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature-card p { color: var(--color-text-light); font-size: 0.95rem; }

/* ===== PRODUCT CARDS ===== */
.products-section { background: var(--color-bg-alt); }
.filter-bar { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn { padding: 10px 24px; border-radius: var(--radius-full); font-weight: 500; font-size: 0.9rem; background: var(--color-bg-card); color: var(--color-text-light); border: 1px solid var(--color-border); transition: var(--transition); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.product-card { background: var(--color-bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); transition: var(--transition); cursor: pointer; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-image { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--color-bg-alt); }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--color-primary); color: #fff; padding: 4px 14px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.product-card-info { padding: 20px; }
.product-card-info h3 { font-size: 1.15rem; margin-bottom: 6px; }
.product-card-info p { color: var(--color-text-light); font-size: 0.85rem; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-primary-dark); font-weight: 700; }
.product-price::after { content: ' ₺'; font-size: 0.9rem; }

/* No-image placeholder */
.no-image-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
  color: var(--color-text-muted); font-size: 0.85rem;
}
.no-image-placeholder svg { opacity: 0.4; }

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 20px; opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal {
  background: var(--color-bg-card); border-radius: var(--radius-lg);
  max-width: 960px; width: 100%; max-height: 85vh;
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-xl); animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: scale(0.95) translateY(20px); opacity: 0; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; transition: var(--transition);
  border: 1px solid var(--color-border);
}
.modal-close:hover { background: var(--color-primary); color: #fff; }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; max-height: 85vh; }
.modal-gallery { padding: 24px; display: flex; flex-direction: column; }
.modal-main-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-md); margin-bottom: 12px; flex-shrink: 0;
}
.modal-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; flex-shrink: 0; }
.modal-thumbs img {
  width: 56px; height: 56px; object-fit: cover;
  border-radius: var(--radius-sm); cursor: pointer;
  border: 2px solid transparent; transition: var(--transition); flex-shrink: 0;
}
.modal-thumbs img:hover, .modal-thumbs img.active { border-color: var(--color-primary); }
.modal-info {
  padding: 32px 28px 32px 8px;
  overflow-y: auto; max-height: 85vh;
}
.modal-info h2 { font-size: 1.6rem; margin-bottom: 6px; }
.modal-info .product-price { font-size: 1.4rem; margin-bottom: 16px; display: block; }
.modal-info .modal-desc { color: var(--color-text-light); margin-bottom: 20px; line-height: 1.7; font-size: 0.92rem; }
.modal-detail-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--color-accent); }
.modal-detail-text { color: var(--color-text-light); font-size: 0.85rem; margin-bottom: 16px; line-height: 1.6; }
.modal-whatsapp { width: 100%; justify-content: center; font-size: 0.95rem; padding: 14px; margin-top: 8px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--color-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-content p { color: var(--color-text-light); margin-bottom: 16px; }
.about-stats { display: flex; gap: 40px; margin-top: 32px; }
.stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--color-primary); }
.stat-label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 4px; }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary), var(--color-primary-light)); color: #fff; text-align: center; padding: 80px 24px; }
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; color: #fff; }
.cta-band p { opacity: 0.9; margin-bottom: 32px; font-size: 1.1rem; }
.cta-band .btn { background: #fff; color: var(--color-primary-dark); font-weight: 700; }
.cta-band .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* ===== CONTACT ===== */
.contact-section { background: var(--color-bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--color-bg-card); border-radius: var(--radius-md); border: 1px solid var(--color-border); transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-card-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(107,142,90,0.1); color: var(--color-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--color-text-light); font-size: 0.9rem; }
.contact-card a:hover { color: var(--color-primary); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 400px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: none; }
.map-consent { width: 100%; height: 100%; min-height: 400px; display: flex; align-items: center; justify-content: center; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.map-consent-inner { text-align: center; padding: 48px 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.map-consent-inner h3 { font-size: 1.3rem; }
.map-consent-inner p { color: var(--color-text-light); line-height: 1.8; font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer { background: var(--color-text); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--font-display); }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.9rem; transition: var(--transition); }
.footer ul a:hover { color: var(--color-primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; }

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1500;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--color-whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); cursor: pointer; animation: pulse-wp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
@keyframes pulse-wp { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-image { max-width: 400px; margin: 40px auto 0; }
  .hero-floating { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-info { padding: 24px; max-height: 50vh; }
  .modal-gallery { max-height: 40vh; }
  .modal-main-img { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--color-bg); padding: 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md); gap: 20px;
  }
  .nav-cta.open {
    display: flex; position: absolute; top: calc(var(--nav-height) + 200px); left: 0; right: 0;
    background: var(--color-bg); padding: 0 24px 24px; justify-content: center;
  }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.8rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}


/* ===== CUSTOM INSTANT TOOLTIPS ===== */
[data-tooltip] { position: relative; }
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  margin-top: 5px;
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
/* Tiny arrow for the tooltip */
[data-tooltip]::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  margin-top: -1px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent var(--color-text) transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 1000;
}
[data-tooltip]:hover::after, [data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
