  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
    --bg-main: #fff5f8;
    --bg-light: #f4fbf3;
    --white: #ffffff;
    --text-dark: #2a2a2d;
    --text-muted: #6b6b6e;
    --primary-gold: #7bbf8a;
    --primary-rose: #e187a8;
    --primary-blush: #f8d7e4;
    --primary-sage: #a8cfa3;
    --accent-teal: #6ba577;
    --border: #f1e4e9;
    --shadow: rgba(35, 26, 30, 0.12);
    --shadow-lg: rgba(35, 26, 30, 0.18);
  }

  /* Additional Animations */
  @keyframes shimmer {
    0% {
      background-position: -1000px 0;
    }
    100% {
      background-position: 1000px 0;
    }
  }

  @keyframes pulse-glow {
    0%, 100% {
      box-shadow: 0 0 10px rgba(225, 173, 202, 0.5);
    }
    50% {
      box-shadow: 0 0 20px rgba(225, 173, 202, 0.8);
    }
  }

  html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><text x="0" y="24" font-size="26" fill="%23e187a8">🌸</text></svg>') 8 0, auto;
  }

  body {
    background: var(--bg-main);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
  }

  h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-dark);
  }

  h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.1; }
  h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: 1.2; }
  h3 { font-size: 1.5rem; }

  p { font-weight: 300; font-size: 1rem; line-height: 1.85; color: var(--text-muted); }
  a { text-decoration: none; }


  /* .flower-sparkle {
    position: fixed;
    pointer-events: none;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    animation: sparkle-burst 0.8s ease-out forwards;
    z-index: 9999;
    text-shadow: 0 0 10px rgba(225, 173, 202, 0.6);
    will-change: transform, opacity;
  }
  @keyframes sparkle-burst {
    0% {
      opacity: 1;
      transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
      opacity: 0;
      transform: translate(var(--tx), var(--ty)) scale(0) rotate(360deg);
    }
  } */
   .flower-sparkle {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      text-shadow: 0 0 10px rgba(225, 173, 202, 0.6);
      will-change: transform, opacity;
      animation: sparkleBurst 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    @keyframes sparkleBurst {
      0% {
        transform: translate(0, 0) scale(0.6);
        opacity: 1;
      }

      70% {
        opacity: 1;
      }

      100% {
        transform: translate(var(--tx), var(--ty)) scale(1.4) rotate(20deg);
        opacity: 0;
      }
    }

  @keyframes sparkleMove {
    to {
      transform: translate(var(--tx), var(--ty));
      opacity: 0;
    }
  }

  /* ───────────── NAVIGATION ───────────── */
  nav {
    position: fixed;
    top: 0; 
    width: 100%; 
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5rem;
    background: rgba(255, 243, 248, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(225, 173, 202, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 32px rgba(225, 173, 202, 0.1);
  }

   nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 215, 226, 0.3) 0%, rgba(225, 173, 202, 0.15) 100%);
    pointer-events: none;
    border-radius: 0 0 20px 20px;
  }

  nav > * {
    position: relative;
    z-index: 2;
  }

   nav.scrolled {
    background: rgba(255, 243, 248, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 1rem 5rem;
    box-shadow: 0 12px 40px rgba(225, 173, 202, 0.2);
  }

  nav.scrolled::before {
    background: linear-gradient(135deg, rgba(248, 215, 226, 0.4) 0%, rgba(225, 173, 202, 0.25) 100%);
  }

  section {
    scroll-margin-top: 6.5rem;
  }

    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: 0.15em;
        background: linear-gradient(135deg, #ec588e 0%, #5bbc71 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        transition: all 0.3s ease;
    }

    .logo:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 5px 15px rgba(225, 173, 202, 0.3));
    }

    .logo::before {
        content: '🌸';
        font-size: 1.8rem;
        animation: float-rotate 3s ease-in-out infinite;
    }

    .logo-image {
        height: 100px; /* control logo size */
        width: auto;
        display: block;

        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        animation: floatLogo 4s ease-in-out infinite;

        /* subtle glow */
        filter: drop-shadow(0 4px 12px rgba(225, 173, 202, 0.25));
    }

    /* ✨ Hover effect */
    .logo-image:hover {
        transform: scale(1.08) rotate(-2deg);

        /* stronger glow on hover */
        filter: drop-shadow(0 8px 25px rgba(225, 173, 202, 0.4));
    }
    nav .logo-image {
        mix-blend-mode: multiply; /* blends nicely with glass bg */
    }

    @keyframes floatLogo {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
    }

  @keyframes float-rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
  }

  .nav-menu {
    display: flex;
    gap: 3.0rem;
    list-style: none;
    align-items: center;
  }

  .nav-menu a {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
  }

  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-rose), var(--primary-gold));
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .nav-menu a:hover { color: var(--primary-rose);
    transform: translateY(-2px); }
  .nav-menu a:hover::after { width: 100%; }

  .cta-btn {
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, #ec588e 0%, #5bbc71 100%);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px rgba(225, 173, 202, 0.3);
    border: none;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><text x="0" y="24" font-size="26" fill="%23ffffff">🌸</text></svg>') 8 0, pointer;
    position: relative;
    overflow: hidden;
  }

   .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(225, 173, 202, 0.4);
  }

  .cta-btn:hover::before {
    left: 100%;
  }

  /* ───────────── VIDEO HERO BANNER ───────────── */
  .video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
  }

  .video-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
      135deg,
      rgba(255, 239, 247, 0.80),
      rgba(123, 191, 138, 0.52)
    ); */
    background: linear-gradient(135deg, rgb(82 9 45 / 80%), rgb(6 106 28 / 52%));
    z-index: 2;
  }

  .video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: slideInDown 1.2s cubic-bezier(0.23, 1, 0.32, 1) backwards;
  }

  @keyframes slideInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .video-content h1 {
    margin-bottom: 1.8rem;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
    color: #ffffff;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
  }

  .video-content .accent {
    background: linear-gradient(135deg, #ec588e 0%, #5bbc71 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .video-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
  }

  .video-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) backwards 0.2s both;
  }

  @keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .btn-primary {
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #ec588e 0%, #5bbc71 100%);;
    color: white;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 45px rgba(123, 191, 138, 0.28);
  }

  .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(123, 191, 138, 0.35);
  }

  .btn-ghost {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><text x="0" y="24" font-size="26" fill="%23ffffff">🌸</text></svg>') 8 0, pointer;
    background: rgba(225, 173, 202, 0.16);
    border: 2px solid var(--primary-rose);
    padding: 1.2rem 3rem;
    border-radius: 50px;
  }

  .btn-ghost:hover {
    background: rgba(225, 173, 202, 0.28);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
  }

  .btn-ghost:hover .arrow { transform: translateX(10px); }

  .arrow {
    width: 22px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: transform 0.3s ease;
  }

  .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
  }

  /* ───────────── HAMBURGER MENU ───────────── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><text x="0" y="24" font-size="26" fill="%23e187a8">🌸</text></svg>') 8 0, pointer;
    background: none;
    border: none;
    padding: 0;
  }

  .hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInScale 1s ease backwards 1s;
    z-index: 4;
  }

  @keyframes fadeInScale {
    from { opacity: 0; transform: translateX(-50%) scale(0.8); }
    to { opacity: 1; transform: translateX(-50%) scale(1); }
  }

  .scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
  }

  .scroll-mouse {
    width: 30px;
    height: 48px;
    border: 2.5px solid var(--primary-gold);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
  }

  .scroll-wheel {
    width: 2.5px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    animation: scroll 2.5s ease-in-out infinite;
  }

  @keyframes scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
  }

  /* ───────────── ABOUT SECTION ───────────── */
  .about {
    padding: 10rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 7rem;
    align-items: center;
    border-bottom: 2px solid var(--border);
    background: linear-gradient(135deg, rgba(225, 173, 202, 0.12) 0%, transparent 100%);
  }

  .about-image {
    position: relative;
    height: 550px;
    animation: slideInLeft 1s ease backwards 0.2s;
  }

  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid var(--border);
    box-shadow: 0 25px 60px var(--shadow-lg);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><text x="0" y="24" font-size="26" fill="%23e187a8">🌸</text></svg>') 8 0, pointer;
  }

  .section-label {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    color: var(--primary-rose);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 700;
  }

  .about h2 {
    margin-bottom: 2.5rem;
    color: var(--text-dark);
  }

  .about p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border);
  }

  .feature {
    padding: 1.5rem 0;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(123, 191, 138, 0.15), rgba(225, 173, 202, 0.15));
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }

  .feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 700;
  }

  .feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
  }

  /* ───────────── FLOWERS COLLECTION ───────────── */
  .flowers {
    padding: 10rem 5rem;
    background: var(--white);
    border-bottom: 2px solid var(--border);
  }

  .section-header {
    margin-bottom: 6rem;
    text-align: center;
  }

  .section-header h2 {
    margin-bottom: 1.5rem;
  }

  .flowers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }

  .flower-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid var(--border);
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><text x="0" y="24" font-size="26" fill="%23e187a8">🌸</text></svg>') 8 0, pointer;
    box-shadow: 0 10px 30px var(--shadow);
    background: var(--white);
  }

  .flower-card:hover {
    border-color: var(--primary-rose);
    transform: translateY(-18px) scale(1.02);
    box-shadow: 0 30px 70px var(--shadow-lg);
  }

  .flower-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .flower-card:hover img {
    transform: scale(1.15);
  }

  .flower-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.9) 40%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .flower-card:hover .flower-overlay {
    opacity: 1;
  }

  .flower-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.6rem;
  }

  .flower-tag {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-weight: 700;
  }

  .flower-badge {
    display: inline-block;
    background: rgba(123, 191, 138, 0.18);
    border: 1.5px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 600;
  }

  /* ───────────── VARIETIES SECTION ───────────── */
  .varieties {
    padding: 10rem 5rem;
    background: linear-gradient(135deg, rgba(248, 215, 226, 0.15) 0%, var(--bg-light) 100%);
  }

  .variety-section {
    margin-bottom: 10rem;
    animation: fadeInUp 0.8s ease;
  }

  .variety-header {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
  }

  .variety-icon-large {
    font-size: 5rem;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(123, 191, 138, 0.15), rgba(225, 173, 202, 0.15));
    border: 2px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .variety-title h2 {
    margin-bottom: 1rem;
  }

  .variety-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
  }

  .variety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-bottom: 5rem;
  }

  .variety-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .variety-card:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-12px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  }

  .variety-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    position: relative;
    background: rgba(255, 255, 255, 0.12);
  }

  .variety-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .variety-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .variety-card:hover .variety-card-image img {
    transform: scale(1.14);
  }

  .variety-card-content {
    padding: 2.5rem;
  }

  .variety-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .variety-meta .meta-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
    color: var(--text-muted);
  }

  .variety-meta .meta-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
  }

  .variety-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.3rem;
    font-size: 1.4rem;
    font-weight: 700;
  }

  .color-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .color-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem;
    background: linear-gradient(135deg, rgba(123, 191, 138, 0.06), rgba(225, 173, 202, 0.06));
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
  }

  .color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
  }

  .variety-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
  }

  .spec {
    background: linear-gradient(135deg, rgba(123, 191, 138, 0.08), rgba(225, 173, 202, 0.08));
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
  }

  .spec-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--primary-rose);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    font-weight: 700;
  }

  .spec-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
  }

  .variety-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .order-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--primary-rose);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .order-link:hover {
    gap: 1.2rem;
    color: var(--primary-gold);
  }

  /* ───────────── PROCESS SECTION ───────────── */
  .process {
    padding: 10rem 5rem;
    background: var(--white);
    border-bottom: 2px solid var(--border);
  }

  .process-header {
    text-align: center;
    margin-bottom: 7rem;
  }

  .process-header h2 {
    margin-bottom: 1.5rem;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .step {
    position: relative;
    text-align: center;
  }

  .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec588e 0%, #5bbc71 100%);;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.8rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 12px 40px rgba(123, 191, 138, 0.25);
  }

  .step:hover .step-number {
    transform: scale(1.18) rotateZ(5deg);
    box-shadow: 0 18px 55px rgba(123, 191, 138, 0.35);
  }

  .step h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 700;
  }

  .step p {
    color: var(--text-muted);
    font-size: 0.98rem;
  }

  .step::after {
    content: '→';
    position: absolute;
    right: -1.8rem;
    top: 32px;
    font-size: 2rem;
    color: var(--primary-gold);
    opacity: 0.4;
  }

  .step:last-child::after { display: none; }

  /* ───────────── TESTIMONIAL ───────────── */
  .testimonial {
    padding: 8rem 5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(248, 217, 226, 0.35) 0%, rgba(210, 241, 228, 0.30) 100%);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
  }

  .testimonial-text {
    font-family: 'Cormorant', serif;
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    font-style: italic;
  }

  .testimonial-author {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--primary-rose);
    text-transform: uppercase;
    font-weight: 700;
  }

  /* ───────────── GALLERY ───────────── */
  .gallery {
    padding: 10rem 5rem;
    background: var(--white);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--border);
    aspect-ratio: 1;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><text x="0" y="24" font-size="26" fill="%23e187a8">🌸</text></svg>') 8 0, pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px var(--shadow);
  }

  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2; }

  .gallery-item:hover {
    border-color: var(--primary-rose);
    transform: translateY(-15px);
    box-shadow: 0 28px 65px var(--shadow-lg);
  }

  .gallery-item img,
  .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .gallery-item:hover img,
  .gallery-item:hover video,
  .gallery-item:active img,
  .gallery-item:active video {
    transform: scale(1.08);
  }

  .gallery-item:active .gallery-item-video-icon {
    transform: translate(-50%, -50%) scale(1.12);
  }

  .gallery-item-video {
    position: relative;
  }

  .gallery-item-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(225, 173, 202, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }

  .gallery-item:hover .gallery-item-video-icon {
    background: rgba(225, 173, 202, 1);
    transform: translate(-50%, -50%) scale(1.15);
  }

  .media-viewer {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(10, 14, 22, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1100;
  }

  .media-viewer.open {
    opacity: 1;
    pointer-events: auto;
  }

  .viewer-shell {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .viewer-frame {
    background: rgba(9, 14, 23, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    width: 100%;
  }

  .viewer-image,
  .viewer-video {
    width: 100%;
    max-height: calc(100vh - 9rem);
    object-fit: contain;
    display: block;
    background: #070b11;
  }

  .viewer-video {
    background: #070b11;
  }

  .viewer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: white;
    font-size: 1.8rem;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><text x="0" y="24" font-size="26" fill="%23ffffff">🌸</text></svg>') 8 0, pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2002;
  }

  .viewer-close:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.22);
  }

  .viewer-meta {
    color: #f6f7fb;
    padding: 0.75rem 1rem;
    background: rgba(15, 22, 39, 0.85);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .viewer-caption {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* ───────────── CTA SECTION ───────────── */
  .cta-section {
    padding: 10rem 5rem;
    background: linear-gradient(135deg, rgba(225, 173, 202, 0.10) 0%, rgba(123, 191, 138, 0.10) 100%);
    border-top: 2px solid var(--border);
    text-align: center;
  }

  .cta-section h2 {
    margin-bottom: 1.8rem;
    color: var(--text-dark);
  }

  .cta-section p {
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.08rem;
  }

  .contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-btn {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.2rem 2.8rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
    box-shadow: 0 8px 25px var(--shadow);
    cursor: pointer;
  }

  .contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1ba85f 100%);
    border-color: #25d366;
    color: white;
  }

  .contact-btn.whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.35);
  }

  .contact-btn.phone,
  .contact-btn.email {
    background: rgba(123, 191, 138, 0.12);
    border-color: var(--primary-gold);
    color: var(--text-dark);
  }

  .contact-btn.phone:hover,
  .contact-btn.email:hover {
    background: rgba(225, 173, 202, 0.2);
    transform: translateY(-5px);
    color: var(--primary-rose);
    border-color: var(--primary-rose);
  }

  .contact-btn svg {
    width: 22px;
    height: 22px;
  }

  /* ───────────── FLOATING WA ───────────── */
  .floating-wa {
    position: fixed;
    bottom: 3.5rem;
    right: 3.5rem;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #25d366 0%, #1ba85f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
    animation: float 3.5s ease-in-out infinite;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.4);
  }

  .floating-wa:hover {
    transform: scale(1.18);
    box-shadow: 0 18px 60px rgba(37, 211, 102, 0.45);
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
  }

  .floating-wa svg {
    width: 40px;
    height: 40px;
    fill: white;
  }

  /* ───────────── FOOTER ───────────── */
  footer {
    padding: 7rem 5rem 2rem;
    border-top: 2px solid rgba(171, 188, 175, 0.25);
    background: linear-gradient(180deg, rgba(255, 245, 249, 0.98), rgba(244, 251, 243, 0.98));
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr 1.2fr 1.2fr;
    gap: 4.5rem;
    margin-bottom: 4rem;
  }

  .footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--primary-rose);
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 800;
  }

  .footer-col p {
    color: #58585c;
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col li {
    margin-bottom: 1rem;
  }

  .footer-col a {
    color: #4f4f55;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><text x="0" y="24" font-size="26" fill="%23e187a8">🌸</text></svg>') 8 0, pointer;
  }

  .footer-col a:hover {
    color: var(--primary-rose);
  }

  .location-info {
    background: linear-gradient(135deg, rgba(123, 191, 138, 0.18), rgba(225, 173, 202, 0.16));
    border: 2px solid rgba(171, 188, 175, 0.4);
    border-radius: 12px;
    padding: 1.8rem;
    margin-top: 2rem;
  }

  .location-info p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-weight: 500;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ───────────── TABLET (1200px) ───────────── */
  @media (max-width: 1200px) {
    nav { padding: 1.5rem 3rem; }
    nav.scrolled { padding: 1rem 3rem; }
    
    .about { grid-template-columns: 1fr; gap: 4rem; padding: 7rem 3rem; }
    .about-image { height: 450px; }
    .about-features { grid-template-columns: 1fr 1fr; }
    
    .flowers { padding: 7rem 3rem; }
    .flowers-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
    
    .variety-header { gap: 3rem; }
    .variety-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .step::after { display: none; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 1; }
    
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
  }

  /* ───────────── LANDSCAPE TABLET (1024px) ───────────── */
  @media (max-width: 1024px) {
    h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
    h2 { font-size: clamp(1.5rem, 4vw, 2.8rem); }
    h3 { font-size: 1.2rem; }
    
    nav { padding: 1.2rem 2.5rem; }
    .nav-menu { gap: 2rem; }
    .nav-menu a { font-size: 0.8rem; }
    .cta-btn { padding: 0.75rem 1.8rem; font-size: 0.7rem; }
    
    .video-hero { margin-top: 50px; }
    
    .about { padding: 6rem 2.5rem; gap: 3rem; }
    .about-image { height: 400px; }
    
    .flowers { padding: 6rem 2.5rem; }
    .section-header { margin-bottom: 4rem; }
    
    .varieties { padding: 6rem 2.5rem; }
    .variety-section { margin-bottom: 8rem; }
    
    .process { padding: 6rem 2.5rem; }
    .process-header { margin-bottom: 5rem; }
    
    .gallery { padding: 6rem 2.5rem; }
    .cta-section { padding: 6rem 2.5rem; }
    
    footer { padding: 5rem 2.5rem 2rem; }
  }

  /* ───────────── PORTRAIT TABLET (768px) ───────────── */
  @media (max-width: 768px) {
    :root { --shadow: rgba(26, 26, 26, 0.08); --shadow-lg: rgba(26, 26, 26, 0.12); }
    
    html { font-size: 15px; }
    
    nav {
      padding: 1rem 2rem;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    nav.scrolled {
      padding: 1rem 2rem;
      box-shadow: 0 16px 45px rgba(225, 173, 202, 0.18);
    }

    .hamburger { display: flex; }
    
    .logo {
      font-size: 1.3rem;
      letter-spacing: 0.08em;
      flex: 1 1 auto;
      min-width: 0;
    }

    .hamburger {
      flex-shrink: 0;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 1001;
      max-height: calc(100vh - 6.5rem);
      overflow-y: auto;
      background: rgba(250, 247, 243, 0.98);
      flex-direction: column;
      gap: 0;
      padding: 2rem 2rem;
      border-bottom: 2px solid var(--border);
    }
    
    .nav-menu.active { display: flex; }
    
    .nav-menu li {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border);
    }
    
    .nav-menu li:last-child { border-bottom: none; }
    
    .nav-menu a {
      font-size: 0.95rem;
      display: block;
      padding: 0.75rem 0;
    }
    
    .nav-menu .cta-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.9rem 1.2rem;
      font-size: 0.85rem;
      border-radius: 35px;
      margin-top: 0.5rem;
    }

    .cta-btn { padding: 0.7rem 1.5rem; font-size: 0.65rem; }

    section {
      scroll-margin-top: 5.8rem;
    }

    .flower-overlay {
      opacity: 1;
      background: linear-gradient(180deg, rgba(18, 18, 18, 0.08) 0%, rgba(26, 26, 26, 0.92) 65%);
    }
    
    .flower-card:hover .flower-overlay {
      opacity: 1;
    }
    
    h1 { font-size: clamp(2rem, 6vw, 3rem); }
    h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
    h3 { font-size: 1rem; }
    
    .video-hero { margin-top: 45px; height: 80vh; }
    
    .video-content h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); margin-bottom: 1.2rem; }
    .video-content p { font-size: 0.95rem; margin-bottom: 2rem; }
    
    .video-buttons {
      gap: 1rem;
      padding: 0 2rem;
      flex-direction: column;
    }
    
    .btn-primary { padding: 1rem 2rem; font-size: 0.8rem; width: 100%; }
    .btn-ghost { padding: 1rem 2rem; font-size: 0.8rem; width: 100%; }
    
    .scroll-indicator { bottom: 1.5rem; }
    
    .about { padding: 4rem 2rem; gap: 2.5rem; }
    .about-image { height: 300px; }
    
    .section-label { font-size: 0.75rem; margin-bottom: 1rem; }
    .about h2 { margin-bottom: 1.5rem; }
    .about p { font-size: 0.95rem; margin-bottom: 1.2rem; }
    
    .about-features { grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; padding-top: 2rem; }
    
    .feature-icon { width: 50px; height: 50px; font-size: 1.5rem; margin-bottom: 1rem; }
    .feature h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
    .feature p { font-size: 0.9rem; }
    
    .flowers { padding: 4rem 2rem; }
    .section-header { margin-bottom: 3rem; }
    .flowers-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .flower-card { aspect-ratio: 3/4; }
    .flower-name { font-size: 1.4rem; }
    .flower-overlay { padding: 2rem; }
    
    .varieties { padding: 4rem 2rem; }
    .variety-section { margin-bottom: 5rem; }
    
    .variety-header { 
      grid-template-columns: 100px 1fr;
      gap: 2rem;
      margin-bottom: 3rem;
      align-items: start;
    }
    
    .variety-icon-large { 
      font-size: 3rem;
      width: 100px;
      height: 100px;
    }
    
    .variety-title h2 { margin-bottom: 0.5rem; font-size: 1.5rem; }
    .variety-title p { font-size: 0.9rem; }
    
    .variety-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
    
    .variety-card-image { height: 250px; }
    .variety-card-content { padding: 1.5rem; }
    
    .variety-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
    
    .color-options { grid-template-columns: 1fr; gap: 0.8rem; margin-bottom: 1rem; }
    .color-option { padding: 0.7rem; font-size: 0.8rem; }
    .color-dot { width: 16px; height: 16px; }
    
    .variety-specs { grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .spec { padding: 0.8rem; border-radius: 8px; }
    .spec-label { font-size: 0.65rem; margin-bottom: 0.3rem; }
    .spec-value { font-size: 0.9rem; }
    
    .variety-desc { font-size: 0.9rem; margin-bottom: 1.2rem; }
    .order-link { font-size: 0.8rem; }
    
    .process { padding: 4rem 2rem; }
    .process-header { margin-bottom: 4rem; }
    .process-header h2 { margin-bottom: 1rem; }
    
    .process-steps { grid-template-columns: 1fr; gap: 2rem; }
    .step-number { width: 70px; height: 70px; font-size: 2rem; margin-bottom: 1.5rem; }
    .step h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
    .step p { font-size: 0.9rem; }
    
    .testimonial { padding: 5rem 2rem; }
    .testimonial-text { font-size: 1.6rem; margin-bottom: 1.5rem; }
    
    .gallery { padding: 4rem 2rem; }
    .gallery-grid { grid-template-columns: 1fr; gap: 2rem; }

    .viewer-shell {
      width: 95%;
      max-height: calc(100vh - 2rem);
      padding: 0.5rem;
    }

    .viewer-frame {
      border-radius: 16px;
    }

    .viewer-image,
    .viewer-video {
      max-height: calc(100vh - 6rem);
    }

    .viewer-close {
      width: 2.5rem;
      height: 2.5rem;
      font-size: 1.5rem;
    }

    .gallery-item-video-icon {
      width: 2.4rem;
      height: 2.4rem;
      font-size: 0.9rem;
    }
    
    .cta-section { padding: 4rem 2rem; }
    .cta-section h2 { margin-bottom: 1.2rem; }
    .cta-section p { margin-bottom: 2.5rem; font-size: 1rem; }
    
    .contact-buttons { gap: 1rem; flex-direction: column; }
    .contact-btn { width: 100%; justify-content: center; padding: 1rem; font-size: 0.8rem; }
    
    .floating-wa { bottom: 2rem; right: 2rem; width: 60px; height: 60px; }
    .floating-wa svg { width: 32px; height: 32px; }
    
    footer { padding: 4rem 2rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
    
    .footer-col h4 { font-size: 0.8rem; margin-bottom: 1.2rem; }
    .footer-col p { font-size: 0.9rem; }
    .footer-col a { font-size: 0.9rem; }
    
    .footer-bottom { flex-direction: column; gap: 1rem; padding-top: 2rem; }
  }

  /* ───────────── SMALL PHONE (480px) ───────────── */
  @media (max-width: 480px) {
    html { font-size: 14px; }
    
    nav { padding: 0.9rem 1.5rem; }
    .logo { font-size: 1.1rem; }
    
    h1 { font-size: clamp(1.8rem, 4.5vw, 2.3rem); }
    h2 { font-size: clamp(1.2rem, 3.2vw, 1.8rem); }
    
    .video-hero { margin-top: 40px; height: 70vh; }
    .video-content h1 { font-size: 1.5rem; }
    .video-content p { font-size: 0.9rem; }
    
    .video-buttons {
      gap: 0.8rem;
      padding: 0 1.5rem;
    }
    
    .btn-primary { padding: 0.9rem 1.8rem; font-size: 0.75rem; }
    .btn-ghost { padding: 0.9rem 1.8rem; font-size: 0.75rem; }
    
    .about { padding: 3rem 1.5rem; gap: 2rem; }
    .about-image { height: 250px; }
    
    .flowers { padding: 3rem 1.5rem; }
    .section-header { margin-bottom: 2rem; }
    
    .flower-overlay { padding: 1.5rem; opacity: 1; background: linear-gradient(180deg, rgba(18, 18, 18, 0.08) 0%, rgba(26, 26, 26, 0.92) 65%); }
    .flower-name { font-size: 1.2rem; }
    
    .varieties { padding: 3rem 1.5rem; }
    .variety-section { margin-bottom: 4rem; }
    
    .variety-header { grid-template-columns: 80px 1fr; gap: 1.5rem; margin-bottom: 2rem; }
    .variety-icon-large { font-size: 2.5rem; width: 80px; height: 80px; }
    .variety-title h2 { font-size: 1.3rem; }
    .variety-title p { font-size: 0.85rem; }
    
    .variety-grid { margin-bottom: 2.5rem; }
    .variety-card-image { height: 200px; }
    .variety-card-content { padding: 1.2rem; }
    .variety-card h3 { font-size: 1rem; margin-bottom: 0.8rem; }
    
    .color-options { margin-bottom: 0.8rem; }
    .color-option { padding: 0.6rem; font-size: 0.75rem; }
    
    .variety-specs { margin-bottom: 0.8rem; }
    .spec { padding: 0.7rem; }
    .spec-label { font-size: 0.6rem; }
    .spec-value { font-size: 0.85rem; }
    
    .variety-desc { font-size: 0.85rem; margin-bottom: 1rem; }
    
    .process { padding: 3rem 1.5rem; }
    .process-header { margin-bottom: 3rem; }
    .process-steps { gap: 1.5rem; }
    .step-number { width: 60px; height: 60px; font-size: 1.8rem; margin-bottom: 1rem; }
    .step h3 { font-size: 1rem; }
    .step p { font-size: 0.85rem; }
    
    .testimonial { padding: 3rem 1.5rem; }
    .testimonial-text { font-size: 1.3rem; }
    
    .gallery { padding: 3rem 1.5rem; }
    .cta-section { padding: 3rem 1.5rem; }
    .contact-btn { padding: 0.9rem; font-size: 0.75rem; }
    
    .floating-wa { bottom: 1.5rem; right: 1.5rem; width: 55px; height: 55px; }
    .floating-wa svg { width: 28px; height: 28px; }
    
    footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-grid { gap: 2rem; }
    .footer-col h4 { font-size: 0.75rem; margin-bottom: 1rem; }
  }

  /* ───────────── EXTRA SMALL (400px) ───────────── */
  @media (max-width: 400px) {
    html { font-size: 13px; }
    
    nav { padding: 0.7rem 1rem; }
    .logo { font-size: 0.9rem; }
    
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1rem; }
    
    .video-hero { margin-top: 38px; height: 60vh; }
    .video-content { animation: none; }
    
    .about { padding: 2.5rem 1.2rem; }
    .about-image { height: 220px; }
    
    .flowers { padding: 2.5rem 1.2rem; }
    
    .varieties { padding: 2.5rem 1.2rem; }
    .variety-section { margin-bottom: 3rem; }
    .variety-header { grid-template-columns: 70px 1fr; gap: 1.2rem; }
    .variety-icon-large { font-size: 2rem; width: 70px; height: 70px; }
    
    .process { padding: 2.5rem 1.2rem; }
    .process-steps { gap: 1.2rem; }
    
    .gallery { padding: 2.5rem 1.2rem; }
    .cta-section { padding: 2.5rem 1.2rem; }
    
    footer { padding: 2.5rem 1.2rem 1.2rem; }
  }

