/* ==========================================================================
   Base & Variables
   ========================================================================== */
:root {
  /* Colors */
  --gold: #D4AF37;
  --gold-hover: #b5952f;
  --dark-green: #1B5E20;
  --dark-green-hover: #144917;
  --white: #FFFFFF;
  --cream: #FDFBF7;
  --olive: #556B2F;
  --text-dark: #2C3E50;
  --text-light: #666666;
  --bg-light: #F9F6F0;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Styling */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--gold);
}

.section-title p {
  color: var(--text-light);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 5rem 0;
}

.bg-cream {
  background-color: var(--cream);
}

.bg-green {
  background-color: var(--dark-green);
  color: var(--white);
}

.bg-green h2,
.bg-green p {
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-3px);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark-green);
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Keep your existing .logo code exactly as it is */
.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ADD THIS NEW RULE to control the image size */
.logo img {
  height: 50px;
  /* You can change this number to make the logo bigger or smaller */
  width: auto;
  /* This keeps the image from getting stretched */
}

header.scrolled .logo,
header.scrolled .nav-links li a {
  color: var(--dark-green);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
}

header.scrolled .hamburger {
  color: var(--dark-green);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(27, 94, 32, 0.7), rgba(0, 0, 0, 0.6)), url('../images/hero-section-home.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #eee;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Highlights Cards */
.highlights {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding: 0 0 5rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid var(--gold);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.highlight-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 250px;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--gold);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--white);
  border: 4px solid var(--gold);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.right::after {
  left: -10px;
}

.timeline-content {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Footer */
footer {
  background-color: #111;
  color: var(--white);
  padding: 4rem 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
}

.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: #000;
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #333;
}

/* Floating Elements */
.float-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: pulse-green 2s infinite;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.premium-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Forces exactly 2 items per row */
  gap: 3rem;
  margin-top: 3rem;
}

/* Mobile View: 1 item per row */
@media (max-width: 768px) {
  .premium-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Luxurious Card Design */
.premium-product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border-bottom: 5px solid var(--gold);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.premium-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  /* Soft gold shadow on hover */
}

.premium-product-card .img-container {
  background: #FDFBF7;
  /* Light cream background for images */
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.premium-product-card img {
  height: 280px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Image zooms in smoothly when the card is hovered */
.premium-product-card:hover img {
  transform: scale(1.12);
}

.premium-product-card .info {
  padding: 30px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-product-card h3 {
  color: var(--dark-green);
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.premium-product-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Health Benefits Cards
   ========================================================================== */
.health-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #FDFBF7;
  border-radius: 16px;
  border: 1px solid #f0eae1;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  height: 100%;
  scroll-behavior: smooth;
}

.health-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

.health-card i {
  transition: transform 0.4s ease;
}

.health-card:hover i {
  transform: scale(1.15);
}

/* ==========================================================================
   Contact Page - Premium Form & Dropdown
   ========================================================================== */
.premium-input {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: #fdfdfd;
    transition: all 0.3s ease;
}
.premium-input:focus {
    border-color: var(--gold);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
}
.contact-split {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 991px) {
    .contact-split { gap: 3rem; }
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 100%;
}
.dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #777;
    user-select: none;
}
.dropdown-selected.active {
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}
.dropdown-arrow {
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-options-container {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}
.custom-dropdown.open .dropdown-options-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-option {
    padding: 14px 20px;
    color: var(--text-dark);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    border-bottom: 1px solid #f9f9f9;
}
.dropdown-option:last-child {
    border-bottom: none;
}
.dropdown-option:hover {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--dark-green);
    padding-left: 25px;
    font-weight: 600;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.close-menu {
    display: none;
}

/* ==========================================================================
   Medium Balanced "Snake" Timeline
   ========================================================================== */
.med-snake-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 20px;
}

.med-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-bottom: 70px; /* Perfectly medium spacing between steps */
}

/* Evens flip to the right side */
.med-step:nth-child(even) {
    flex-direction: row-reverse;
}

/* Medium Icons */
.med-icon {
    width: 75px; 
    height: 75px;
    min-width: 75px;
    background: var(--dark-green);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, background 0.4s ease;
}

.med-step:hover .med-icon {
    transform: scale(1.1);
    background: var(--gold);
}

/* Medium Content Cards */
.med-content {
    width: calc(100% - 110px); /* Leaves a clean, medium gap */
    background: #ffffff;
    padding: 25px 30px; 
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    z-index: 10;
    transition: transform 0.3s ease;
}

.med-step:hover .med-content {
    transform: translateY(-5px);
}

.med-content h3 {
    margin-bottom: 8px;
}

.med-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* -------------------------------------------
   THE MEDIUM SNAKE CURVES
------------------------------------------- */
.med-step::after {
    content: '';
    position: absolute;
    top: 37.5px; /* Starts exactly in the middle of the 75px icon */
    width: calc(100% - 75px); 
    height: calc(100% + 5px); 
    z-index: 1; 
}

/* Odd Rows: Left-to-Right Curve */
.med-step:nth-child(odd)::after {
    left: 37.5px; 
    border-top: 3px dashed var(--gold);
    border-right: 3px dashed var(--gold);
    border-radius: 0 60px 60px 0; /* Tight, beautiful curve */
}

/* Even Rows: Right-to-Left Curve */
.med-step:nth-child(even)::after {
    right: 37.5px;
    border-top: 3px dashed var(--gold);
    border-left: 3px dashed var(--gold);
    border-radius: 60px 0 0 60px;
}

/* Hide the curve on the last step */
.med-step:last-child::after {
    display: none;
}
.med-step:last-child {
    padding-bottom: 0;
}

/* ==========================================================================
   Success Popup (Toast Notification)
   ========================================================================== */
.success-toast {
    position: fixed;
    bottom: -100px; /* Hidden below the screen initially */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-green);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bouncy slide-in effect */
}

.success-toast i {
    color: var(--gold);
    font-size: 1.3rem;
}

/* Class added via JavaScript to show the popup */
.success-toast.show {
    bottom: 40px;
    opacity: 1;
}

@media (min-width: 769px) {
    /* 1. Make the Icons Larger */
    .trust-grid i {
        font-size: 2.8rem !important; /* Overrides the inline 2rem */
        margin-bottom: 1.5rem !important;
    }

    /* 2. Make the Headings Larger */
    .trust-grid h4 {
        font-size: 1.5rem !important; 
        margin-bottom: 15px !important;
    }

    /* 3. Make the Paragraph Text Larger */
    .trust-grid p {
        font-size: 1.15rem !important; /* Overrides the inline 0.9rem */
        line-height: 1.6 !important;
    }
}


/* ==========================================================================
   Google Reviews Split Layout
   ========================================================================== */
.reviews-split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Left Side: Summary Box */
.reviews-summary {
    flex: 0 0 350px; /* Slightly wider for the new design */
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(66, 133, 244, 0.15); /* Soft Google Blue border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f3f4;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    color: #5f6368;
    margin-bottom: 20px;
}

.google-badge i {
    color: #4285F4;
    font-size: 1.2rem;
}

.rating-number {
    font-size: 4rem;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.rating-stars {
    color: #FBBC05;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Right Side: Swipeable Carousel */
.reviews-carousel-wrapper {
    flex: 1;
    min-width: 0; /* Prevents flexbox overflow bugs */
}

.reviews-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 30px; /* Space for scrollbar/shadows */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    
    /* Hide scrollbar for clean app-like look */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.reviews-carousel::-webkit-scrollbar { 
    display: none; 
}

.review-card {
    flex: 0 0 350px; /* Fixed width for each card */
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    border: 1px solid #f0eae1;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-profile {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.reviewer-stars {
    color: #FBBC05;
    font-size: 0.8rem;
}

.google-icon {
    color: #4285F4;
    font-size: 1.5rem;
}

.review-body {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* ==========================================================================
   Premium Google Summary UI (Left Side)
   ========================================================================== */
.reviews-summary {
    flex: 0 0 320px; 
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8eaed;
}

.google-official-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    color: #5f6368;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.google-g-icon {
    width: 24px;
    height: 24px;
}

.google-rating-number {
    font-size: 4.5rem;
    color: #202124;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.google-rating-stars {
    color: #FBBC05;
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: flex;
    gap: 4px;
}

.google-rating-text {
    color: #5f6368;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Authentic Google Button Styling */
.google-write-review-btn {
    background: #1a73e8;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 4px; /* Google uses slightly square buttons */
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    width: 100%;
    transition: background 0.3s ease;
}

.google-write-review-btn:hover {
    background: #1557b0;
    transform: translateY(-2px);
}