/* ===== CSS VARIABLES ===== */
  :root {
    --blue: #00aeef;
    --pink: #ed3093;
    --yellow: #ffcb04;
    --dark: #4b4b4b;
    --green: #3cb54a;
    --white: #ffffff;
    --light-bg: #f8f9ff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ===== DISPLAY FONT SIMULATION (Sugo Display style) ===== */
  .display-font {
    font-family: 'Fredoka One', cursive;
    letter-spacing: 0.5px;
  }

  /* ===== NAVBAR ===== */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .navbar-logo img {
    height: 52px;
    width: auto;
  }

  .navbar-logo .logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    display: flex;
    gap: 0;
  }
  .navbar-logo .logo-text span:nth-child(1) { color: var(--pink); }
  .navbar-logo .logo-text span:nth-child(2) { color: var(--green); }
  .navbar-logo .logo-text span:nth-child(3) { color: var(--blue); }
  .navbar-logo .logo-text span:nth-child(4) { color: var(--green); }
  .navbar-logo .logo-text span:nth-child(5) { color: var(--yellow); }
  .navbar-logo .logo-sub {
    font-family: 'Fredoka One', cursive;
    font-size: 0.75rem;
    color: var(--pink);
    display: block;
    text-align: center;
    margin-top: -4px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 3px;
    background: var(--pink);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.2s;
  }

  .nav-links a:hover { color: var(--pink); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .btn-whatsapp-nav {
    background: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s !important;
    white-space: nowrap;
  }

  .btn-whatsapp-nav::after { display: none !important; }
  .btn-whatsapp-nav:hover { background: #1ebe57 !important; transform: scale(1.05); color: white !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }
  .hamburger span {
    width: 26px; height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 20px 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 999;
    flex-direction: column;
    gap: 16px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 2px solid #f0f0f0;
  }
  .mobile-menu .btn-whatsapp-nav {
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e8f8ff 0%, #fff0f7 50%, #fffde8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
  }

  .hero-blob-1 {
    position: absolute;
    top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: var(--blue);
    border-radius: 50%;
    opacity: 0.15;
  }

  .hero-blob-2 {
    position: absolute;
    bottom: -100px; right: -60px;
    width: 350px; height: 350px;
    background: var(--pink);
    border-radius: 50%;
    opacity: 0.15;
  }

  .hero-blob-3 {
    position: absolute;
    top: 40%; right: 15%;
    width: 200px; height: 200px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.2;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }

  .hero-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
  }

  .hero h1 .highlight-blue { color: var(--blue); }
  .hero h1 .highlight-pink { color: var(--pink); }
  .hero h1 .highlight-yellow { color: var(--yellow); }

  .hero p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 600;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--pink);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    box-shadow: 0 8px 25px rgba(237,48,147,0.4);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(237,48,147,0.5); }

  .btn-secondary {
    background: var(--blue);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
    box-shadow: 0 8px 25px rgba(0,174,239,0.4);
  }
  .btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,174,239,0.5); }

  .hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .stat:nth-child(1) .stat-number { color: var(--blue); }
  .stat:nth-child(2) .stat-number { color: var(--pink); }
  .stat:nth-child(3) .stat-number { color: var(--yellow); }

  .hero-image-area {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
  }

  .hero-floating-card {
    position: absolute;
    bottom: 12%; left: 5%;
    background: white;
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .hero-floating-card .icon {
    width: 48px; height: 48px;
    background: var(--yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

  .hero-floating-card .card-text strong {
    display: block;
    font-weight: 800;
    color: var(--dark);
    font-size: 0.9rem;
  }

  .hero-floating-card .card-text span {
    font-size: 0.78rem;
    color: #888;
    font-weight: 600;
  }

  /* ===== SECTION COMMON ===== */
  section { padding: 80px 5%; }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }

  .section-tag.blue { background: #e0f5ff; color: var(--blue); }
  .section-tag.pink { background: #ffe0f0; color: var(--pink); }
  .section-tag.yellow { background: #fff9d6; color: #c49a00; }

  .section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 1rem;
    color: #777;
    font-weight: 600;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ===== WAVE DIVIDERS ===== */
  .wave-top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px;
  }
  .wave-top svg { display: block; }

  /* ===== CATALOG ===== */
  .catalog-section {
    background: var(--light-bg);
    padding: 80px 5%;
  }

  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }

  .product-card-badge {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product-img-wrap {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f5ff, #ffe0f5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
  }

  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
  }

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

  .product-img-wrap .emoji-placeholder {
    font-size: 5rem;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
  }

  .product-info {
    padding: 22px;
  }

  .product-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 14px;
  }

  .product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
  }

  .spec-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .spec-icon.blue { background: #e0f5ff; }
  .spec-icon.pink { background: #ffe0f0; }
  .spec-icon.yellow { background: #fff9d6; }

  .card-more-hint {
    font-size: 0.90rem;
    font-weight: 600;
    color: #aaa;
    text-align: center;
    margin-bottom: 12px;
  }

  .btn-wpp-card {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s;
    text-decoration: none;
  }

  .btn-wpp-card:hover { background: #1ebe57; transform: scale(1.02); }

  /* ===== MODAL ===== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .modal-box {
    background: white;
    border-radius: 28px;
    max-width: 750px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.85) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  }

  .modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
  }

  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    background: var(--pink);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .modal-close:hover { background: #c0207a; }

  .modal-img {
    width: 100%;
    height: 320px;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(135deg, #e0f5ff, #ffe0f5);
    overflow: hidden;
    position: relative;
  }

  .modal-img .emoji-big {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    position: relative;
    z-index: 1;
  }

  .modal-body {
    padding: 30px;
  }

  .modal-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  .modal-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
  }

  .modal-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 24px;
  }

  .modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 28px;
  }

  .modal-spec-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .modal-spec-card .spec-ico { font-size: 1.6rem; }
  .modal-spec-card .spec-label { font-size: 0.73rem; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; }
  .modal-spec-card .spec-value { font-family: 'Fredoka One', cursive; font-size: 1rem; color: var(--dark); }

  .modal-spec-card.blue-card { background: #e0f5ff; }
  .modal-spec-card.pink-card { background: #ffe0f0; }
  .modal-spec-card.yellow-card { background: #fff9d6; }
  .modal-spec-card.green-card { background: #e0f5e5; }

  .btn-wpp-modal {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 18px;
    padding: 18px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  }

  .btn-wpp-modal:hover { background: #1ebe57; box-shadow: 0 12px 35px rgba(37,211,102,0.5); transform: translateY(-2px); }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    background: linear-gradient(135deg, var(--pink) 0%, #ff6bb8 50%, var(--blue) 100%);
    padding: 70px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: '🎪';
    position: absolute;
    font-size: 15rem;
    opacity: 0.07;
    top: -30px; left: -30px;
  }

  .cta-banner::after {
    content: '🎠';
    position: absolute;
    font-size: 12rem;
    opacity: 0.07;
    bottom: -30px; right: -30px;
  }

  .cta-banner h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 14px;
    position: relative;
  }

  .cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 36px;
    position: relative;
  }

  .btn-cta-white {
    background: white;
    color: var(--pink);
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    position: relative;
  }

  .btn-cta-white:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }

  /* ===== WHY US ===== */
  .why-section {
    background: white;
    padding: 80px 5%;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .feature-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 24px;
    transition: transform 0.25s;
  }

  .feature-card:hover { transform: translateY(-6px); }
  .feature-card:nth-child(1) { background: #e0f5ff; }
  .feature-card:nth-child(2) { background: #ffe0f0; }
  .feature-card:nth-child(3) { background: #fff9d6; }
  .feature-card:nth-child(4) { background: #e0f5e5; }

  .feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
  }

  .feature-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .feature-desc {
    font-size: 0.88rem;
    color: #777;
    font-weight: 600;
    line-height: 1.6;
  }

  /* ===== CONTACT ===== */
  .contact-section {
    background: var(--light-bg);
    padding: 80px 5%;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 24px;
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .contact-item-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  .contact-item-icon.blue { background: var(--blue); }
  .contact-item-icon.pink { background: var(--pink); }
  .contact-item-icon.yellow { background: var(--yellow); }

  .contact-item-text strong {
    display: block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .contact-item-text span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
  }

  .btn-wpp-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 36px;
    border-radius: 16px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    width: 100%;
  }

  .btn-wpp-contact:hover { background: #1ebe57; transform: translateY(-3px); }

  .map-area {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    height: 450px;
  }

  .map-area iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark);
    color: white;
    padding: 50px 5% 30px;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }

  .footer-brand .logo-wrap {
    margin-bottom: 16px;
  }

  .footer-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
  }

  .footer-logo span:nth-child(1) { color: var(--pink); }
  .footer-logo span:nth-child(2) { color: var(--green); }
  .footer-logo span:nth-child(3) { color: var(--blue); }
  .footer-logo span:nth-child(4) { color: var(--green); }
  .footer-logo span:nth-child(5) { color: var(--yellow); }
  .footer-logo-sub {
    font-family: 'Fredoka One', cursive;
    font-size: 0.8rem;
    color: var(--pink);
    display: block;
    margin-top: -8px;
    margin-left: 4px;
    margin-bottom: 12px;
  }

  .footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-weight: 600;
  }

  .footer-col h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--yellow);
  }

  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: white; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
  }

  .footer-bottom a { color: var(--blue); text-decoration: none; }
  .footer-bottom a:hover { text-decoration: underline; }

  .magnatto-link {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
  }

  .magnatto-link a { color: var(--yellow); text-decoration: none; }
  .magnatto-link a:hover { text-decoration: underline; }

  /* ===== WHATSAPP FLOAT ===== */
  .wpp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 1500;
    background: #25D366;
    color: white;
    width: 62px; height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    text-decoration: none;
    transition: all 0.25s;
    animation: pulse-wpp 2.5s ease-in-out infinite;
  }

  .wpp-float:hover { transform: scale(1.12); }

  @keyframes pulse-wpp {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero-image-area { display: none; }
    .hero-content { max-width: 100%; }

    .contact-grid { grid-template-columns: 1fr; }
    .map-area { height: 360px; }

    .footer-content { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .navbar { padding: 0 4%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    section { padding: 60px 4%; }
    .catalog-section { padding: 60px 4%; }
    .contact-section { padding: 60px 4%; }
    .cta-banner { padding: 50px 4%; }
    .why-section { padding: 60px 4%; }
    footer { padding: 40px 4% 24px; }

    .hero { padding: 90px 4% 50px; min-height: auto; }

    .hero-floating-card { left: 4%; }

    .catalog-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

    .footer-content { grid-template-columns: 1fr; gap: 30px; }

    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 520px) {
    .catalog-grid { grid-template-columns: 1fr; }

    .hero-stats { gap: 20px; }

    .modal-specs-grid { grid-template-columns: 1fr 1fr; }

    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  }

  /* Scroll animation */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
/* ===== CATEGORY FILTERS ===== */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 40px;
  padding: 0 20px;
  max-width: 900px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237,48,147,0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--pink), #ff6bb3);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(237,48,147,0.35);
  transform: translateY(-2px);
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font-size: 1.1rem;
  color: #999;
  font-weight: 600;
}

@media (max-width: 600px) {
  .category-filters {
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 28px;
  }
  .filter-btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}

/* ===== CAROUSEL ===== */

/* Foto vertical: card mais alto para não cortar a imagem */
.product-img-wrap.vertical-photo {
  height: 340px;
}

.product-img-wrap.vertical-photo .carousel-slide img {
  object-fit: contain;
  background: #f5f5f5;
}

/* Modal mais alto quando produto tem foto vertical */
.modal-img.vertical-photo {
  height: 460px !important;
}

.modal-img.vertical-photo .carousel-wrap,
.modal-img.vertical-photo .carousel-track,
.modal-img.vertical-photo .carousel-slide {
  height: 460px !important;
}

/* O product-img-wrap já tem height:220px definido acima — não redefinir aqui */
/* Apenas garantir que o carrossel ocupe 100% do wrapper */
.product-img-wrap .carousel-wrap,
.product-img-wrap .carousel-track,
.product-img-wrap .carousel-slide {
  height: 100%;
}

.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Modal: carrossel com altura fixa para não depender de cadeia de 100% */
.modal-img .carousel-wrap {
  height: 320px;
  width: 100%;
}
.modal-img .carousel-track {
  height: 320px;
  width: 100%;
}
.modal-img .carousel-slide {
  height: 320px;
  width: 100%;
}

/* No modal, mostrar imagem inteira sem cortar */
.modal-img .carousel-slide img {
  object-fit: contain;
  background: #f0f0f0;
}

/* Botões prev/next */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: all 0.2s;
  color: var(--dark);
  padding: 0;
}

.carousel-btn:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

/* Bolinhas de navegação */
.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.25s;
  border: 1.5px solid rgba(255,255,255,0.7);
}

.carousel-dot.active {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.25);
}

/* No modal, botões maiores */
.modal-img .carousel-btn {
  width: 42px;
  height: 42px;
  font-size: 1.7rem;
}

.modal-img .carousel-dots {
  bottom: 12px;
}

.modal-img .carousel-dot {
  width: 10px;
  height: 10px;
}
