
:root {
  --bg: #ffffff;
  --bg-alt: #f6f6f6;
  --text: #111111;
  --muted: #666666;
  --border: #e3e3e3;
  --accent: #c89c5d; /* subtle coffee tone */
  --accent-dark: #a07734;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.06);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --nav-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Top bar */

.top-bar {
  background: #000;
  color: #fff;
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.top-bar-text {
  opacity: 0.8;
}

.language-switcher {
  display: inline-flex;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  padding: 2px;
  border-radius: 999px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.lang-btn .flag {
  font-size: 1rem;
}

.lang-btn.active {
  background: rgba(255,255,255,0.15);
  opacity: 1;
}

/* Navbar */

.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.logo-text span {
  display: block;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-text small {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--text);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: #000;
  margin: 4px 0;
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
}

.hero-inner {
  position: relative;
  padding: 80px 0 70px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 2.6rem;
  margin: 0 0 14px;
}

.hero-text {
  font-size: 1rem;
  max-width: 520px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn.primary {
  background: #fff;
  color: #000;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.08);
}

.btn.whatsapp {
  border-color: #1ebe63;
  color: #1ebe63;
  background: transparent;
}

.btn.whatsapp:hover {
  background: #1ebe63;
  color: #fff;
}

.hero-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  opacity: 0.85;
}

/* Sections */

.section {
  padding: 80px 0;
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Product cards */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.product-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.product-body p {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--muted);
}

.link-button {
  border: none;
  background: transparent;
  color: var(--accent-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.product-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.product-card.open .product-details {
  margin-top: 10px;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}

.product-details ul {
  padding-left: 18px;
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Split layout */

.split {
  display: grid;
  grid-template-columns: minmax(0,3fr) minmax(0,2.5fr);
  gap: 32px;
  align-items: flex-start;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 20px;
}

.highlight {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.highlight .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.highlight p {
  margin: 6px 0 0;
  font-size: 0.88rem;
}

.values-card,
.capacity-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 18px 18px 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}

.values-card h3,
.capacity-card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.values-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 8px;
}

.values-list li {
  font-size: 0.86rem;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.values-list li strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.values-list li span {
  color: var(--muted);
  font-size: 0.86rem;
}

.capacity-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.capacity-card strong {
  color: var(--text);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}

.counter-item {
  padding: 10px 10px 9px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
}

.counter-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
}

.counter-label {
  font-size: 0.74rem;
  color: var(--muted);
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}

.services-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  padding: 20px 22px 18px 26px;
  box-shadow: var(--shadow-soft);
}

.services-card::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #000, var(--accent-dark));
}

.services-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.icon-list,
.process-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.icon-list li + li,
.process-list li + li {
  margin-top: 6px;
}

/* Testimonials */

.testimonials {
  background: #111;
  color: #fff;
}

.testimonials .section-header p {
  color: rgba(255,255,255,0.7);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.testimonial-card {
  background: #151515;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  border: 1px solid #222;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.testimonial-card .quote {
  font-size: 0.9rem;
}

.testimonial-card .author {
  margin-top: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}

/* Map */

.section-map {
  padding-bottom: 0;
}

.map-wrapper {
  width: 100%;
  height: 360px;
  margin-top: 10px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact */

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0,2.4fr) minmax(0,3fr);
  gap: 26px;
  align-items: flex-start;
}

.contact-options h3 {
  margin-top: 0;
}

.contact-options p {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 16px;
}

.contact-tab {
  border-radius: var(--radius-pill);
  border: 1px solid #ccc;
  background: #fff;
  font-size: 0.84rem;
  padding: 8px 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-tab.active {
  background: #000;
  color: #fff;
}

.contact-info p {
  margin: 4px 0;
  font-size: 0.88rem;
}

.contact-forms {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: none;
}

.contact-form.active {
  display: block;
}

.contact-form h3 {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-group label {
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 8px 10px;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* Footer */

.footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  background: #fff;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-right {
  color: var(--muted);
}

/* RTL support for Arabic */

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .icon-list,
html[dir="rtl"] .process-list {
  padding-left: 0;
  padding-right: 18px;
}

/* Responsive */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .split {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .testimonials {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-inner {
    padding: 70px 0 60px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    right: 0;
    left: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 14px;
    gap: 12px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar {
    position: sticky;
    top: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 260px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.contact-info .contact-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(0,0,0,0.25);
}

.contact-info .contact-link:hover {
  border-bottom-style: solid;
}

/* --- CUSTOM ADJUSTMENTS V5 --- */
.services-card {
    background:#000 !important;
    color:#fff !important;
}
.services-card h3,
.services-card li {
    color:#fff !important;
}

.hero-tags span {
    border:none !important;
    padding-left:14px !important;
    position:relative;
}
.hero-tags span::before {
    content:"•";
    position:absolute;
    left:0;
    top:2px;
    font-size:16px;
    color:#fff;
}

/* alternating values list colors */
.values-list li:nth-child(odd) {
    background:#000 !important;
    color:#fff !important;
    border-color:#000 !important;
}
.values-list li:nth-child(odd) span,
.values-list li:nth-child(odd) strong {
    color:#fff !important;
}
.values-list li:nth-child(even) {
    background:#fff !important;
    color:#000 !important;
    border-color:#000 !important;
}
.values-list li:nth-child(even) span,
.values-list li:nth-child(even) strong {
    color:#000 !important;
}

/* alternating about-highlights cards */
.about-highlights .highlight:nth-child(odd) {
    background:#000 !important;
    color:#fff !important;
    padding:20px;
    border-radius:12px;
}
.about-highlights .highlight:nth-child(odd) .label,
.about-highlights .highlight:nth-child(odd) p {
    color:#fff !important;
}

.about-highlights .highlight:nth-child(even) {
    background:#fff !important;
    color:#000 !important;
    padding:20px;
    border-radius:12px;
    border:1px solid #000;
}
.about-highlights .highlight:nth-child(even) .label,
.about-highlights .highlight:nth-child(even) p {
    color:#000 !important;
}

/* Black styling for counter items */
.counter-item {
    background:#000 !important;
    color:#fff !important;
    padding:18px 20px;
    border-radius:14px;
    border:1px solid #000;
}
.counter-item .counter-number,
.counter-item .counter-label {
    color:#fff !important;
}

/* --- DAMA THEME FOR FORMS --- */
.contact-form, .form-section, .form-card {
    background: #000 !important;
    border: 2px solid #fff !important;
    border-radius: 14px;
    padding: 22px !important;
    color: #fff !important;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.contact-form input,
.contact-form textarea,
.form-card input,
.form-card textarea {
    background: #111 !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 12px;
}

.contact-form label,
.form-card label {
    color: #fff !important;
}

.contact-buttons .contact-tab {
    background:#000 !important;
    color:#fff !important;
    border:1px solid #fff !important;
}

.contact-buttons .contact-tab.active {
    background:#fff !important;
    color:#000 !important;
}

.btn.whatsapp, .btn.primary {
    border-radius:10px !important;
}

/* FIX: site slight right shift after map removal */
html, body {
    margin:0 !important;
    padding:0 !important;
    overflow-x:hidden !important;
}

/* Center map container perfectly */
.map-container {
    width:100% !important;
    max-width:100% !important;
    display:block;
    margin:0 auto !important;
}
.map-container iframe {
    display:block;
    margin:0 auto !important;
    max-width:100% !important;
    border:0;
}

/* Section title with DAMA logo */
.section-title-with-logo {
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.section-title-with-logo .section-logo {
  width:46px;
  height:46px;
  object-fit:contain;
  display:block;
}

/* Syrup group extended text */
.syrup-intro {
  margin-bottom: 8px;
}

.syrup-features,
.syrup-reasons ul {
  margin: 0 0 10px 0;
  padding-left: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.syrup-reasons strong {
  display: block;
  margin-top: 6px;
  margin-bottom: 4px;
}

/* Fason üretim sayfası görsel slider */
.fason-slider {
  margin-top: 32px;
}

.fason-slider h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.fason-slider-container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #000;
}

.fason-slider-track {
  position: relative;
}

.fason-slide {
  display: none;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.fason-slide.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.65);
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

@media (max-width: 768px) {
  .fason-slide {
    height: 240px;
  }
}


.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
}

.image-modal.open {
  display: flex;
}

.image-modal-inner {
  position: relative;
  max-width: min(960px, 100%);
  max-height: 100%;
}

.image-modal-inner img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.image-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

.image-modal-close:hover {
  background: rgba(0,0,0,0.9);
}


/* Intro overlay (dama board opening) */

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  pointer-events: auto;
  background: #050505;
  transition: opacity 0.6s ease-in-out 1.1s;
}

.intro-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.intro-overlay-inner {
  position: relative;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.intro-panel {
  flex: 1;
  background-color: #111111;
  background-image:
    linear-gradient(45deg, rgba(200,156,93,0.15) 25%, transparent 25%, transparent 75%, rgba(200,156,93,0.15) 75%, rgba(200,156,93,0.15)),
    linear-gradient(45deg, rgba(200,156,93,0.15) 25%, transparent 25%, transparent 75%, rgba(200,156,93,0.15) 75%, rgba(200,156,93,0.15));
  background-size: 48px 48px;
  background-position: 0 0, 24px 24px;
  box-shadow: 0 0 60px rgba(0,0,0,0.6) inset;
  transition: transform 1s ease-in-out;
}

.intro-panel.left {
  border-right: 1px solid rgba(255,255,255,0.06);
}

.intro-panel.right {
  border-left: 1px solid rgba(0,0,0,0.6);
}

.intro-overlay.split .intro-panel.left {
  transform: translateX(-100%);
}

.intro-overlay.split .intro-panel.right {
  transform: translateX(100%);
}

.intro-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
}

.intro-logo-mark {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f8f3ea;
  margin-bottom: 8px;
}

.intro-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.intro-overlay.split .intro-center {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

/* Reduce intro overlay on very small screens */

@media (max-width: 640px) {
  .intro-panel {
    background-size: 32px 32px;
    background-position: 0 0, 16px 16px;
  }
  .intro-logo-mark {
    font-size: 24px;
  }
  .intro-tagline {
    font-size: 0.75rem;
  }
}

/* Instagram floating icon */
.floating-insta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  background: white;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}
.floating-insta img { display:block; }

.floating-insta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: url("assets/img/instagram-icon.png") no-repeat center/cover;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
}

.floating-insta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
  z-index: 99999;
}
.floating-insta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
