/* yapaygelinbuketi.com - Ana stiller */
:root {
  --color-cream: #faf8f5;
  --color-ivory: #fffef9;
  --color-blush: #e8d5d0;
  --color-rose: #d4a574;
  --color-rose-bright: #e6b885;
  --color-soft-pink: #f7e8eb;
  --color-soft-pink-2: #f0dde2;
  --color-soft-white: #fefcfb;
  --color-sage: #7a9b7a;
  --color-charcoal: #2d2a26;
  --color-text: #3d3a36;
  --color-muted: #6b6560;
  --color-accent: #b8860b;
  --color-success: #28a745;
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --shadow-soft: 0 4px 20px rgba(45, 42, 38, 0.08);
  --shadow-hover: 0 8px 32px rgba(45, 42, 38, 0.12);
  --shadow-pink: 0 6px 24px rgba(212, 165, 116, 0.15);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-soft-white) 0%, var(--color-soft-pink) 30%, var(--color-soft-pink-2) 70%, var(--color-cream) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: var(--color-rose);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-charcoal);
}

/* Tipografi */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* Header */
.site-header {
  background: var(--color-ivory);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
}
.logo a {
  color: inherit;
  display: inline-flex;
  align-items: center;
}
.logo a:hover { color: var(--color-rose); }
.logo img {
  display: block;
  max-height: 48px;
  width: auto;
  height: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-main {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-main a {
  color: var(--color-text);
  font-weight: 500;
}
.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--color-rose);
}

/* Header sağ: WhatsApp, Instagram, Ana Site (logo gibi) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.header-btn:hover { transform: translateY(-1px); }
.header-btn-wp {
  background: #25D366;
  color: #fff;
}
.header-btn-wp:hover { box-shadow: 0 2px 12px rgba(37, 211, 102, 0.4); color: #fff; }
.header-btn-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
  color: #fff;
}
.header-btn-ig:hover { box-shadow: 0 2px 12px rgba(225, 48, 108, 0.35); color: #fff; }
.header-btn-site {
  background: var(--color-rose);
  color: #fff;
}
.header-btn-site:hover { box-shadow: var(--shadow-pink); color: #fff; }
@media (max-width: 900px) {
  .header-actions { order: 3; width: 100%; justify-content: center; margin-top: 0.5rem; }
}

/* Sağ köşede gezen: WhatsApp, Instagram, Ana Site (royafleurs.com gibi) */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: #fff;
}
.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: #fff;
}
.floating-btn-wp {
  background: #25D366;
}
.floating-btn-wp:hover { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
.floating-btn-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.floating-btn-ig:hover { box-shadow: 0 6px 20px rgba(225, 48, 108, 0.45); }
.floating-btn-site {
  background: var(--color-rose);
}
.floating-btn-site:hover { box-shadow: var(--shadow-pink); }
@media (max-width: 480px) {
  .floating-actions { right: 12px; bottom: 16px; gap: 10px; }
  .floating-btn { width: 46px; height: 46px; }
  .floating-btn svg { width: 22px; height: 22px; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 232, 235, 0.9) 50%, rgba(212, 165, 116, 0.1) 100%);
  padding: 4rem 2rem 5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(212, 165, 116, 0.15);
  margin: 2rem 1rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-rose-bright);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-weight: 700;
}
.hero-lead {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}
.hero p {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-bright) 100%);
  color: white !important;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  text-decoration: none;
}
.btn:hover {
  background: linear-gradient(135deg, var(--color-rose-bright) 0%, var(--color-accent) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-success) 0%, #20c997 100%) !important;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #20c997 0%, var(--color-success) 100%) !important;
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--color-charcoal) !important;
  border: 2px solid var(--color-charcoal);
}
.btn-secondary:hover {
  background: var(--color-charcoal);
  color: var(--color-ivory) !important;
}

/* Bölümler */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  color: var(--color-text);
}
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h1,
.section-title h2 {
  color: var(--color-charcoal);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin-bottom: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-title p {
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Ürün grid – ürünler kategorisi ile aynı soft pembe-beyaz tema */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
/* Tüm sitede ürün kartı stili */
.product-card {
  background: var(--color-soft-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(201, 169, 160, 0.12), 0 0 0 1px rgba(232, 213, 208, 0.5);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-pink), 0 0 0 1px var(--color-blush);
  transform: translateY(-5px);
}
.product-card img {
  background: linear-gradient(145deg, var(--color-soft-pink) 0%, var(--color-blush) 100%);
}
.product-card .card-body {
  padding: 1.35rem 1.25rem;
  border-top: 1px solid rgba(232, 213, 208, 0.6);
}
.product-card h3,
.product-card .product-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--color-charcoal);
  font-weight: 600;
}
.product-card .price {
  font-weight: 700;
  color: var(--color-rose);
  font-size: 1.1rem;
  display: block;
  margin-top: 0.25rem;
}
.product-card .price-note {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-muted);
}
.product-card .card-body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Breadcrumb – tüm sayfalarda aynı stil */
.breadcrumb {
  color: var(--color-muted);
}
.breadcrumb a {
  color: var(--color-rose);
}
.breadcrumb a:hover {
  color: var(--color-charcoal);
}

/* Ürünler sayfası – ek düzenlemeler */
.page-products .section-products-hero {
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}
.page-products .section-products-hero .hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.5rem;
}
.page-products .section-products-hero .section-title h1 {
  font-size: clamp(1.6rem, 3.8vw, 2.35rem);
  margin-bottom: 1rem;
}
.page-products .section-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 2rem;
}
.page-products .section-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-charcoal);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.page-products .section-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.page-products .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.page-products .section-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.page-products .btn-soft {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-blush) 100%);
  color: var(--color-soft-white) !important;
  border: none;
}
.page-products .btn-soft:hover {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-rose) 100%);
  color: var(--color-soft-white) !important;
}

/* Çiçek temalı bildirim – 6 sn sonra ürünler sayfasında */
.flower-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 10000;
  max-width: 420px;
  width: calc(100% - 2rem);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease, visibility 0.35s;
}
.flower-toast[hidden] { display: block !important; }
.flower-toast.flower-toast-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.flower-toast-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(145deg, #fff9f8 0%, #fef0f0 50%, #fce8e8 100%);
  border-radius: 20px;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 12px 40px rgba(201, 169, 160, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(232, 213, 208, 0.8);
  overflow: hidden;
}
.flower-toast-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-rose) 0%, var(--color-rose-bright) 50%, var(--color-blush) 100%);
  border-radius: 20px 20px 0 0;
}
.flower-toast-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-muted);
  font-size: 1.25rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.flower-toast-close:hover {
  background: var(--color-rose);
  color: white;
}
.flower-toast-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}
.flower-toast-icon-end {
  flex-shrink: 0;
}
.flower-toast-content {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding-right: 1.5rem;
}
.flower-toast-content strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-charcoal);
  margin-bottom: 0.35rem;
  font-family: var(--font-head);
}
.flower-toast-content p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.flower-toast-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.flower-toast-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  color: white !important;
}
.flower-toast-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.flower-toast-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.flower-toast-site {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-bright) 100%);
}

/* Sayfa içeriği */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: var(--color-soft-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(201, 169, 160, 0.1), 0 0 0 1px rgba(232, 213, 208, 0.4);
}
.page-content h1 { color: var(--color-charcoal); }
.page-content .lead { font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; color: var(--color-text); }
.page-content h2 { margin-top: 2rem; color: var(--color-charcoal); }
.page-content p { margin-bottom: 1rem; color: var(--color-text); }
.page-content ul {
  margin: 1rem 0 1rem 1.5rem;
}
.page-content a { color: var(--color-rose); }
.page-content a:hover { color: var(--color-charcoal); }

.contact-info-block {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(232, 213, 208, 0.25);
  border-radius: var(--radius);
  border: 1px solid rgba(232, 213, 208, 0.6);
}
.contact-info-block h2 { margin-top: 0; margin-bottom: 0.75rem; }

/* Form */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-blush);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}
.form-group textarea { min-height: 120px; }

/* Footer */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-cream);
  padding: 2.5rem 1.5rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.site-footer h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--color-ivory);
}
.site-footer a { color: var(--color-blush); }
.site-footer a:hover { color: var(--color-ivory); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-follow { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem 0; text-align: center; font-size: 0.95rem; }
.footer-follow p { margin: 0; }
.footer-follow a { color: var(--color-blush); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.footer-follow a:hover { color: var(--color-ivory); }

/* Footer: 3 buton yan yana (WhatsApp, Instagram, Ana site) */
.footer-buttons {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.footer-btn:hover { transform: translateY(-2px); }
.footer-btn-wp {
  background: #25D366;
  color: #fff;
}
.footer-btn-wp:hover { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); color: #fff; }
.footer-btn-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.footer-btn-ig:hover { box-shadow: 0 4px 16px rgba(225, 48, 108, 0.4); color: #fff; }
.footer-btn-site {
  background: var(--color-rose);
  color: #fff;
}
.footer-btn-site:hover { box-shadow: var(--shadow-pink); color: #fff; }

.site-footer .footer-contact p { margin: 0.35rem 0 0; font-size: 0.9rem; }
.site-footer .footer-contact a { text-decoration: none; }

/* Ana sayfa: uzun footer (SEO) */
.footer-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-about-inner { max-width: 800px; margin: 0 auto; }
.footer-about-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-ivory);
  margin-bottom: 1rem;
}
.footer-about p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-blush);
  margin-bottom: 1rem;
}
.footer-about a { color: var(--color-blush); text-decoration: underline; text-underline-offset: 2px; }
.footer-about a:hover { color: var(--color-ivory); }
.footer-links-row {
  font-size: 0.85rem;
  margin-top: 1.25rem !important;
}
.footer-links-row a { text-decoration: none; }
.footer-links-row a:hover { text-decoration: underline; }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: var(--color-muted);
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.breadcrumb a { color: var(--color-muted); }

/* Ürün detay */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/* Galeri: sol sütunu tam doldurur, orantılı kare */
.product-detail .gallery {
  position: relative;
  width: 100%;
  min-width: 0;
  background: var(--color-ivory);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.product-detail .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.product-detail .info {
  min-width: 0;
}
.product-detail .info h1 { margin-bottom: 0.5rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.product-detail .info .price { font-size: 1.5rem; font-weight: 700; color: var(--color-rose); margin: 1rem 0; }
.product-detail .info .description { margin: 1rem 0; }

/* Mobil menü */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-charcoal);
}
@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
  }
  .nav-main {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 1rem 0;
  }
  .nav-main.is-open { display: flex; }
  .nav-main a {
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Erişilebilirlik */
:focus-visible {
  outline: 2px solid var(--color-rose);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-charcoal);
  color: var(--color-ivory);
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}
.hero-feature-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Benefits Section */
.benefits-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.benefit-card {
  background: var(--color-ivory);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.benefit-card h3 {
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.benefit-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  padding: 3rem 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--color-ivory);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-rose);
}
.testimonial-text p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.testimonial-author {
  font-weight: 600;
  color: var(--color-rose);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 3rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--color-soft-pink) 0%, var(--color-blush) 100%);
  border-radius: var(--radius-lg);
}

/* Çiçek siparişi rehberi – ana sayfa en alt */
.guide-section {
  margin: 0 auto 3rem;
  padding: 2rem 1.5rem;
  max-width: 1200px;
}
.guide-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 213, 208, 0.5);
}
.guide-inner h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}
.guide-inner h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--color-charcoal);
  font-weight: 600;
}
.guide-inner h3:first-of-type { margin-top: 1rem; }
.guide-inner p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.guide-inner ul {
  margin: 1rem 0 1rem 1.5rem;
  padding: 0;
}
.guide-inner li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}
.guide-inner a {
  color: var(--color-rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.guide-inner a:hover {
  color: var(--color-charcoal);
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-rose);
  color: var(--color-rose);
}
.btn-outline:hover {
  background: var(--color-rose);
  color: white;
}

/* Floating actions (sağda gezen butonlar) */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-btn-wp {
  background-color: #25D366;
}

.floating-btn-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-btn-site {
  background-color: var(--color-rose);
}

@media (max-width: 600px) {
  .hero-buttons { justify-content: center; }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hero-feature { font-size: 0.85rem; }
  .floating-actions {
    right: 15px;
    bottom: 20px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ========== MOBİL – TÜM SİTE (responsive build) ========== */
@media (max-width: 768px) {
  body { font-size: 0.9375rem; }
  .header-inner { padding: 0.75rem 1rem; }
  .logo img { max-height: 42px; max-width: 140px; }
  .section {
    padding: 2rem 1rem;
    max-width: 100%;
  }
  .section-title { margin-bottom: 1.5rem; }
  .section-title h1, .section-title h2 { font-size: clamp(1.35rem, 5vw, 1.75rem); }
  .section-title p { font-size: 0.95rem; }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 0.25rem;
  }
  .product-card .card-body { padding: 1rem; }
  .product-card h3, .product-card .product-title { font-size: 1rem; }
  .product-card .card-body p { font-size: 0.85rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .benefit-card { padding: 1.25rem; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonials-section { padding: 2rem 1rem; margin: 2rem 0; }
  .cta-section { padding: 2rem 1rem; margin: 2rem 0; }
  .cta-buttons { flex-direction: column; align-items: stretch; gap: 0.75rem; margin-top: 1.5rem; }
  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    justify-content: center;
    min-height: 48px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .footer-about { padding: 1.5rem 1rem 0; }
  .footer-about-inner { padding: 0; }
  .footer-about-title { font-size: 0.9rem; }
  .footer-about p { font-size: 0.875rem; }
  .footer-links-row { font-size: 0.8rem; }
  .footer-bottom { padding: 1rem; font-size: 0.8rem; text-align: center; }
  .breadcrumb { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .guide-section { padding: 1.5rem 1rem 2rem; margin-bottom: 2rem; }
  .guide-inner { padding: 1.25rem; }
  .guide-inner h2 { font-size: 1.2rem; }
  .guide-inner h3 { font-size: 1rem; margin-top: 1.25rem; }
  .guide-inner p, .guide-inner li { font-size: 0.9rem; }
  .product-detail { padding: 1.25rem 1rem; }
  .page-content { padding: 1.5rem 1rem; }
  .contact-info-block { margin-top: 1rem; }
  .page-products .section-products-hero { padding: 2rem 1rem 3rem; }
  .page-products .section-intro { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .page-products .product-grid { gap: 1rem; }
  .page-products .section-cta { margin-top: 1.5rem; }
  .flower-toast {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
    transform: translateY(120%);
  }
  .flower-toast.flower-toast-visible { transform: translateY(0); }
  .flower-toast-inner { flex-wrap: wrap; }
  .flower-toast-icon:first-of-type { width: 100%; text-align: center; margin-bottom: 0.25rem; }
  .flower-toast-icon-end { display: none; }
  .flower-toast-content { padding-right: 0; }
  .flower-toast-links { flex-direction: column; }
  .flower-toast-btn { min-height: 44px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem 3.5rem;
    margin: 1rem 0.5rem;
  }
  .hero h1 { font-size: 1.5rem; }
  .hero-lead { font-size: 1.05rem; }
  .hero-sub { font-size: 0.9rem; }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0;
  }
  .product-card .card-body p { -webkit-line-clamp: 3; }
  .btn {
    padding: 0.75rem 1.25rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 1.5rem;
  }
  .hero-buttons .btn { width: 100%; }
  .floating-actions { right: 12px; bottom: 14px; gap: 8px; }
  .floating-btn {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }
  .floating-btn svg { width: 22px; height: 22px; }
}
