/*
  Gümüşgönül Dekorasyon için Zarif ve Lüks Tema
  -----------------------------------------------
  - Koyu kahverengi arka planlar, altın vurgular, krem yüzeyler
  - Modern serif + sans-serif yazı tipleri
  - Bol boşluk, minimalist çizgiler, zarif geçişler
  - Duyarlı ve şık
*/

:root {
  --lux-bg: #18120c;
  --lux-surface: #f7f5f2;
  --lux-brown: #3e2723;
  --lux-gold: #c8a96a;
  --lux-gold-light: #e6d3b3;
  --lux-text: #2d1c13;
  --lux-text-light: #fff;
  --lux-border: #e6d3b3;
  --lux-radius: 14px;
  --lux-shadow: 0 4px 32px rgba(60,40,20,0.10);
  --lux-font-serif: 'Playfair Display', serif;
  --lux-font-sans: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* Sıfırlama ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--lux-bg);
}
body {
  font-family: var(--lux-font-sans);
  color: var(--lux-text);
  background: var(--lux-bg);
  line-height: 1.7;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Gezinme Çubuğu */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--lux-bg);
  box-shadow: var(--lux-shadow);
  z-index: 1000;
  border-bottom: 1.5px solid var(--lux-gold-light);
  padding: 0 1rem;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}
.logo {
  font-family: var(--lux-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lux-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1001;
}

/* Hamburger Menü */
.hamburger {
  display: none;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: var(--lux-gold);
  border-radius: 4px;
  position: absolute;
  transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/* Hamburger menü aktif durumu */
.hamburger.active .hamburger-inner {
  transform: rotate(45deg);
  background-color: var(--lux-gold);
}

.hamburger.active .hamburger-inner::before {
  transform: translateY(8px) rotate(0);
  opacity: 0;
}

.hamburger.active .hamburger-inner::after {
  transform: translateY(-8px) rotate(-90deg);
  background-color: var(--lux-gold);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0 1rem;
  transition: all 0.3s ease-in-out;
  height: 100%;
  align-items: center;
}

.nav-links > li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  text-decoration: none;
  color: var(--lux-gold-light);
  font-size: 1.1rem;
  font-family: var(--lux-font-sans);
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.2s;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--lux-gold);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

/* Açılır Menü */
.nav-links .dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--lux-bg);
  min-width: 200px;
  border-radius: var(--lux-radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 0.5rem 0;
  margin-top: 1rem;
  border: 1px solid var(--lux-gold);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--lux-gold-light);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  white-space: nowrap;
  font-family: var(--lux-font-sans);
  border-bottom: 1px solid rgba(200, 169, 106, 0.1);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: rgba(200, 169, 106, 0.1);
  color: var(--lux-gold);
  padding-left: 1.75rem;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0 1rem;
  position: relative;
  height: 100%;
  line-height: 1.5;
  white-space: nowrap;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.5em;
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--lux-gold);
}

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

/* Duyarlı Tasarım Stilleri */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
  }
  
  .hamburger-box {
    width: 24px;
    height: 20px;
  }
  
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 24px;
    height: 2px;
  }
  
  .hamburger-inner::before {
    top: -8px;
  }
  
  .hamburger-inner::after {
    bottom: -8px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--lux-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    padding: 80px 1.5rem 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(200, 169, 106, 0.1);
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 1rem 0.5rem;
    display: block;
    transition: all 0.2s ease;
  }
  
  .nav-links a:hover,
  .nav-links a:focus {
    color: var(--lux-gold);
    transform: translateX(5px);
  }
  
  .logo {
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
  }
}

/* Küçük cihazlar (telefonlar, 600px ve altı) */
@media (max-width: 600px) {
  /* Navbar düzenlemeleri */
  .nav-container {
    height: auto;
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo {
    font-size: 1.1rem;
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
    padding: 0 15px;
    width: 100%;
    order: 1;
  }
  
  .hamburger {
    position: absolute;
    top: 15px;
    right: 10px;
    order: 2;
  }
  
  .nav-links {
    width: 100%;
    max-width: 100%;
    padding: 80px 1rem 2rem;
    top: 70px;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 0.9rem 0.5rem;
  }
  
  /* Ürün grid düzenlemeleri */
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
  
  .product-item {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .product-item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }
  
  /* Sabit gezinme çubuğu için gövde boşluğu ayarı */
  body { 
    padding-top: 120px; 
  }
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Product grid styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.product-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--lux-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1/1;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-item:hover img {
  transform: scale(1.05);
}

body { padding-top: 80px; }

/* Hero/Banner - Zarif ve Lüks Yeniden Tasarım */
.hero-section {
  min-height: 70vh;
  background: linear-gradient(120deg, #2d1c13 60%, #18120c 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,169,106,0.18) 0%, rgba(24,18,12,0.0) 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24,18,12,0.0) 60%, rgba(24,18,12,0.85) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-overlay {
  position: relative;
  z-index: 3;
  background: rgba(24, 18, 12, 0.82);
  border: 2.5px solid var(--lux-gold);
  border-radius: var(--lux-radius);
  padding: 4rem 3rem 3rem 3rem;
  text-align: center;
  box-shadow: 0 8px 48px rgba(60,40,20,0.18);
  max-width: 700px;
  margin: 0 auto;
}
.hero-overlay h1 {
  font-family: var(--lux-font-serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--lux-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 2.5px;
  text-shadow: 0 4px 32px rgba(200,169,106,0.18);
}
.hero-overlay p {
  font-size: 1.4rem;
  font-family: var(--lux-font-sans);
  color: var(--lux-gold-light);
  letter-spacing: 1.2px;
  margin-bottom: 0.5rem;
}

/* Ürünler Bölümü */
.products-section {
  padding: 4rem 0 2rem 0;
  background: var(--lux-surface);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  margin-top: 2rem;
}
.products-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-family: var(--lux-font-serif);
  color: var(--lux-brown);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}
.product-category {
  margin-bottom: 3rem;
}

.product-category h3 {
  font-size: 1.8rem;
  color: var(--lux-brown);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--lux-gold);
  font-family: var(--lux-font-serif);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
  width: 100%;
}

/* Ana sayfa ürün ızgarası için özel stil */
#products .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

#products .product-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--lux-radius);
  transition: transform 0.3s ease;
}

#products .product-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--lux-radius);
  transition: all 0.3s ease;
}

#products .product-grid a:hover img {
  transform: scale(1.05);
}

.product-item {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--lux-radius);
  transition: all 0.3s ease;
  background: transparent;
  padding: 4px;
  cursor: pointer;
}

/* Sözde öğe kullanarak ince altın kenarlık */
.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid var(--lux-gold);
  border-radius: var(--lux-radius);
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.product-item img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: calc(var(--lux-radius) - 2px);
  transition: all 0.3s ease;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

/* Üzerine Gelme Efektleri */
.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 169, 106, 0.25);
}

.product-item:hover::before {
  border-width: 2px;
  opacity: 1;
  transform: scale(0.99);
}

.product-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* Hakkımızda Bölümü */
.about-section {
  background: var(--lux-surface);
  padding: 4rem 0 2rem 0;
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  margin-top: 2rem;
}
.about-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-section h2 {
  font-size: 2rem;
  color: var(--lux-brown);
  font-family: var(--lux-font-serif);
  margin-bottom: 1.2rem;
}
.about-section p {
  font-size: 1.1rem;
  color: var(--lux-text);
  line-height: 1.8;
  font-family: var(--lux-font-sans);
}

/* İletişim Bölümü */
.contact-section {
  background: var(--lux-surface);
  padding: 4rem 0 2rem 0;
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  margin-top: 2rem;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-form {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--lux-bg);
  padding: 2.2rem 1.5rem;
  border-radius: var(--lux-radius);
  box-shadow: 0 2px 12px rgba(60,40,20,0.06);
}
.contact-form input,
.contact-form textarea {
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--lux-gold-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--lux-font-sans);
  background: var(--lux-surface);
  color: var(--lux-text);
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--lux-gold);
  outline: none;
}
.contact-form textarea {
  min-height: 100px;
}
.contact-form button {
  background: var(--lux-gold);
  color: var(--lux-text-light);
  border: none;
  padding: 1rem 0;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--lux-font-sans);
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(200,169,106,0.10);
}
.contact-form button:hover {
  background: var(--lux-brown);
  color: var(--lux-gold);
}
.contact-info {
  flex: 1 1 340px;
  padding: 2.2rem 1.5rem;
  background: var(--lux-bg);
  border-radius: var(--lux-radius);
  box-shadow: 0 2px 12px rgba(60,40,20,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1rem;
  color: var(--lux-gold-light);
  border: 1.5px solid var(--lux-gold-light);
}
.contact-info p {
  margin-bottom: 0.7rem;
}
.map-placeholder {
  margin-top: 1.2rem;
  width: 100%;
  height: 180px;
  background: repeating-linear-gradient(135deg, var(--lux-gold-light), var(--lux-gold-light) 10px, var(--lux-gold) 10px, var(--lux-gold) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lux-bg);
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Alt Bilgi */
.footer {
  background: var(--lux-brown);
  color: var(--lux-gold-light);
  text-align: center;
  padding: 2rem 0;
  font-size: 1rem;
  margin-top: 2rem;
  border-radius: var(--lux-radius) var(--lux-radius) 0 0;
  box-shadow: 0 -2px 12px rgba(60,40,20,0.08);
}

.footer p {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--lux-gold-light);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(200, 169, 106, 0.1);
  border: 1px solid var(--lux-gold);
}

.social-links a:hover {
  background-color: var(--lux-gold);
  color: var(--lux-brown);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(200, 169, 106, 0.3);
}

.social-icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* Duyarlı Tasarım */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 700px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    gap: 0.7rem;
    padding: 0.7rem 0;
  }
  .logo {
    font-size: 1.3rem;
  }
  .products-section h2, .about-section h2, .contact-section h2 {
    font-size: 1.3rem;
  }
  .hero-overlay h1 {
    font-size: 1.7rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .container {
    width: 98%;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .contact-form, .contact-info {
    padding: 1rem 0.5rem;
  }
  .hero-overlay {
    padding: 1.2rem 0.5rem;
  }
} 

/* Hakkımızda Kartları Bölümü */
.about-cards-container {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem auto 0 auto;
  max-width: 900px;
  flex-wrap: wrap;
}
.about-card {
  background: var(--lux-bg);
  border: 2.5px solid var(--lux-gold);
  border-radius: var(--lux-radius);
  box-shadow: 0 4px 24px rgba(60,40,20,0.10);
  padding: 2.2rem 1.5rem 1.8rem 1.5rem;
  width: 220px;
  min-height: 220px;
  text-align: center;
  color: var(--lux-gold-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.about-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(200,169,106,0.18);
  border-color: var(--lux-gold-light);
}
.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  height: 4.2rem;
  width: 4.2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.about-card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(200, 169, 106, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: -1;
}

.about-card:hover .about-card-icon::before {
  transform: scale(1);
}

.about-card-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.about-card:hover .about-card-icon svg {
  transform: scale(1.1) translateY(-3px);
}
.about-card-title {
  font-family: var(--lux-font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--lux-gold);
  margin-bottom: 0.3rem;
  letter-spacing: 1.5px;
}
.about-card-desc {
  font-size: 1.1rem;
  color: var(--lux-gold-light);
  font-family: var(--lux-font-sans);
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .about-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .about-card {
    width: 90%;
    max-width: 280px;
    min-height: auto;
    padding: 1.8rem 1.2rem;
  }
}

/* Ürünler, Hakkımızda, İletişim Bölümleri için Gradyan Arkaplanlar */
.products-section,
.about-section,
.contact-section {
  background: linear-gradient(135deg, #e6d3b3 0%, #c8a96a 60%, #f7f5f2 100%);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  margin-top: 2rem;
} 

/* WhatsApp Floating Button */
.whatsapp-fab {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 60px !important;
  height: 60px !important;
  background-color: #25D366 !important;
  color: white !important;
  border-radius: 50% !important;
  text-align: center !important;
  font-size: 30px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  border: 2px solid white !important;
  transition: all 0.3s ease !important;
  -webkit-tap-highlight-color: transparent !important;
  transform: translateZ(0) !important;
}

.whatsapp-fab:hover {
  background-color: #128C7E !important;
  transform: scale(1.1) translateZ(0) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.whatsapp-fab:active {
  transform: scale(0.95) translateZ(0) !important;
}

.whatsapp-fab-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  padding: 12px !important;
}

.whatsapp-fab-icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1)) !important;
}

/* Alt bilgideki WhatsApp simgesi */
.whatsapp-icon {
  color: #fff; /* Instagram ile uyumlu olması için #25D366'dan beyaza değiştirildi */
  transition: all 0.3s ease;
}

.whatsapp-icon:hover {
  color: #fff; /* Üzerine gelindiğinde beyaz kalacak */
  transform: translateY(-3px);
}

@media (max-width: 700px) {
  .whatsapp-fab {
    right: 15px !important;
    bottom: 15px !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 9999 !important;
  }
  
  .whatsapp-fab-icon {
    padding: 10px !important;
  }
  
  .whatsapp-fab-icon svg {
    width: 100% !important;
    height: 100% !important;
  }
} 