/* ==========================================================================
   CORAL PINK BELLA BLOOMS DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Color Palette (Exact Coral Pink & Red Accents) */
  --coral-main: #e87a70;         /* Header, banner, quote background & title coral */
  --coral-dark: #d6645a;         /* Darker hover coral state */
  --coral-light: #f59e96;        /* Light coral accent */
  --bg-white: #ffffff;           /* Clean white background */
  --bg-soft: #faf7f6;            /* Soft off-white section background */
  --text-dark: #222222;          /* Body dark text */
  --text-muted: #555555;         /* Muted description text */

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Layout */
  --max-width: 1200px;
  --transition-normal: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-heading);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-normal);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   1. TOP CORAL ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background-color: var(--coral-main);
  color: #ffffff;
  text-align: center;
  font-size: 0.72rem;
  padding: 8px 16px;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   2. MAIN HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  background-color: var(--coral-main);
  color: #ffffff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(232, 122, 112, 0.15);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.stamp-circle-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  opacity: 0.9;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}

.nav-item:hover, .nav-item.active {
  opacity: 1;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.icon-btn {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.icon-btn:hover {
  transform: scale(1.1);
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #ffffff;
  color: var(--coral-main);
  font-size: 0.6rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}

/* ==========================================================================
   3. HERO SECTION WITH ULTRA HD PHOTO & FLOATING ORDER CIRCLE
   ========================================================================== */
.hero-section {
  width: 100%;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: relative;
  width: 100%;
  height: 580px;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text-container {
  position: absolute;
  top: 15%;
  left: 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.94);
  color: var(--coral-main);
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 10px 32px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  width: fit-content;
  text-transform: lowercase;
}

/* Floating Order Circle Button */
.floating-circle-order-btn {
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--coral-main);
  border: 3px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 36px rgba(232, 122, 112, 0.4);
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.floating-circle-order-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background-color: var(--coral-dark);
}

/* ==========================================================================
   4. DAILY FLOWER COLLECTIONS SECTION
   ========================================================================== */
.daily-collections-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.section-coral-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral-main);
  margin-bottom: 16px;
}

.section-coral-subtitle {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.circle-btn-wrapper {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}

.circle-cta-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--coral-main);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(232, 122, 112, 0.3);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.circle-cta-btn:hover {
  transform: scale(1.1);
  background-color: var(--coral-dark);
}

/* Daily Grid Layout */
.daily-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.daily-grid-left {
  height: 100%;
}

.daily-grid-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.daily-img-frame {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.tall-frame {
  height: 100%;
  min-height: 480px;
}

.short-frame {
  height: 228px;
}

.daily-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.daily-img-frame:hover .daily-img {
  transform: scale(1.04);
}

/* ==========================================================================
   5. SHOP FLOWERS GRID SECTION
   ========================================================================== */
.shop-section {
  padding: 80px 0;
  background-color: var(--bg-soft);
  border-top: 1px solid #eeddd8;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #eeddd8;
  padding: 16px;
  text-align: center;
  transition: transform var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-img-box {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--coral-main);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

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

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.product-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral-main);
  margin-bottom: 14px;
}

.btn-product-order {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--coral-main);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background-color var(--transition-normal);
}

.btn-product-order:hover {
  background-color: var(--coral-dark);
}

/* ==========================================================================
   6. CORAL QUOTE BANNER BLOCK
   ========================================================================== */
.coral-quote-banner {
  background-color: var(--coral-main);
  padding: 44px 20px;
  margin: 60px 0;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
}

.quote-text {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   7. DESIGNER'S CHOICE SECTION
   ========================================================================== */
.designers-choice-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.designer-card-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
  text-align: left;
}

.designer-img-wrapper {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
}

.designer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.designer-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--coral-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: inline-block;
}

.designer-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.designer-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.designer-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--coral-main);
  margin-bottom: 24px;
}

/* ==========================================================================
   8. WEDDING COLLECTIONS SECTION
   ========================================================================== */
.wedding-section {
  padding: 40px 0 80px;
  background-color: var(--bg-white);
}

.wedding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wedding-img-card {
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
}

.wedding-img-frame {
  width: 100%;
  height: 100%;
}

.wedding-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wedding-img-card:hover .wedding-img {
  transform: scale(1.04);
}

/* ==========================================================================
   9. FLOWER SUBSCRIPTIONS SECTION
   ========================================================================== */
.subscriptions-section {
  padding: 80px 0;
  background-color: var(--bg-soft);
  border-top: 1px solid #eeddd8;
}

.sub-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.sub-plan-card {
  background-color: var(--bg-white);
  padding: 40px 28px;
  border-radius: 12px;
  border: 1px solid #eeddd8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
  transition: transform var(--transition-normal);
}

.sub-plan-card:hover {
  transform: translateY(-6px);
}

.highlighted-plan {
  border: 2px solid var(--coral-main);
  box-shadow: 0 12px 32px rgba(232, 122, 112, 0.2);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--coral-main);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

.plan-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.plan-freq {
  font-size: 0.78rem;
  color: var(--coral-main);
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.plan-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

.btn-sub-plan {
  display: block;
  width: 100%;
  padding: 10px 0;
  border: 1.5px solid var(--coral-main);
  color: var(--coral-main);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all var(--transition-normal);
}

.btn-sub-plan:hover, .primary-btn {
  background-color: var(--coral-main);
  color: #ffffff;
}

/* ==========================================================================
   10. CONTACT, MAP & FOOTER SECTION
   ========================================================================== */
.contact-info-section {
  background-color: var(--bg-white);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.contact-card {
  background-color: var(--bg-soft);
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid #eeddd8;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--coral-main);
  margin-bottom: 16px;
  border-bottom: 1px solid #eeddd8;
  padding-bottom: 10px;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.phone-link a {
  color: var(--coral-main);
  font-weight: 700;
}

.hours-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hours-list li span {
  font-weight: 700;
  color: var(--text-dark);
}

.map-embed-frame {
  margin-top: 48px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeddd8;
}

.main-footer {
  background-color: var(--coral-main);
  color: #ffffff;
  padding: 40px 0 24px;
}

.footer-stamp {
  margin-bottom: 12px;
}

.footer-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.copyright {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-badge-pill {
    font-size: 2.4rem;
  }
  .floating-circle-order-btn {
    width: 110px;
    height: 110px;
    font-size: 1rem;
  }
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-plans-grid {
    grid-template-columns: 1fr;
  }
  .designer-card-flex {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--coral-main);
    padding: 24px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .daily-grid, .wedding-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .tall-frame {
    height: 340px;
    min-height: auto;
  }

  .floating-circle-order-btn {
    left: 50%;
    top: 70%;
  }

  .hero-badge-pill {
    font-size: 1.8rem;
    padding: 6px 18px;
  }
}
