/* ===== RESET & VARIABLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --gold: #D4A843; --gold-light: #F0D878; --gold-dark: #B8922A; --gold-shine: #FFE5A0;
    --black: #0a0a0a; --dark: #111111; --darker: #0d0d0d; --white: #ffffff;
    --off-white: #fafafa; --gray: #f0f0f0; --text-dark: #1a1a1a; --text-gray: #666;
}
body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ===== KEYFRAMES ===== */
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 20px rgba(212,168,67,0.3); } 50% { box-shadow: 0 0 40px rgba(212,168,67,0.6), 0 0 80px rgba(212,168,67,0.2); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes rotateIn { from { opacity: 0; transform: rotate(-10deg) scale(0.9); } to { opacity: 1; transform: rotate(0deg) scale(1); } }
@keyframes textShine { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== HEADER ===== */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-top {
    background: var(--gold); padding: 8px 5%; text-align: center;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--black);
    position: relative; overflow: hidden;
}
.header-top::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}
.header-main {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 5%; max-width: 1400px; margin: 0 auto;
}
/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Logo Wrapper */
.logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo Image */
.logo-text img {
    width: 55px;
    height: auto;
    display: block;
}

/* RATTO Text */
.logo-content h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #D4AF37; /* Premium Gold */
    line-height: 1;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

/* Registered Symbol */
.logo-content h1 sup {
    font-size: 12px;
    color: #D4AF37;
}

/* Premium Tempered Glass Text */
.logo-content .premium {
    margin: 2px 0 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
}

/* Manufacturer Text */
.logo-content .sub-text {
    margin: 0;
    font-size: 9px;
    color: #ce9f28;
    font-weight: 600;
}

/* ===== NAV ===== */
.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a {
    color: rgba(0,0,0,0.7); text-decoration: none; font-size: 12px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
    transition: all 0.3s; position: relative; padding: 5px 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0;
    height: 2px; background: var(--gold); transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.header-contact { display: flex; align-items: center; gap: 20px; }
.header-contact a {
    color: var(--gold); text-decoration: none; font-weight: 700; font-size: 13px;
    display: flex; align-items: center; gap: 8px; padding: 8px 20px;
    border: 2px solid var(--gold); border-radius: 30px; transition: all 0.3s;
}
.header-contact a:hover {
    background: var(--gold); color: var(--black);
    transform: translateY(-2px); box-shadow: 0 5px 20px rgba(212,168,67,0.4);
}
.menu-toggle {
    display: none; color: var(--gold); font-size: 22px; cursor: pointer;
    width: 42px; height: 42px; border: 2px solid var(--gold); border-radius: 10px;
    align-items: center; justify-content: center; background: transparent;
    transition: all 0.3s;
}
.menu-toggle:hover { background: var(--gold); color: var(--black); }
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }

/* ===== HERO ===== */
.hero {
    background: var(--white); min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 110px;
}
.hero-bg-pattern {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212,168,67,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,168,67,0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(212,168,67,0.06) 0%, transparent 45%);
}
.hero-particles { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.particle {
    position: absolute; width: 4px; height: 4px;
    background: var(--gold); border-radius: 50%; opacity: 0.3;
    animation: float 8s infinite ease-in-out;
}
.hero-container {
    max-width: 1400px; margin: 0 auto; padding: 60px 5%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; width: 100%; position: relative; z-index: 2;
}
.hero-content { animation: slideInUp 1s ease-out; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.3);
    color: var(--gold); padding: 10px 25px; border-radius: 50px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 30px;
}
.hero-badge i { color: var(--gold); font-size: 14px; }
.hero h2 {
    font-family: 'Cinzel', serif; font-size: clamp(32px, 5vw, 58px);
    color: var(--black); line-height: 1.15; margin-bottom: 20px; letter-spacing: 2px;
}
.hero h2 .ratto-text {
    display: block; font-size: 1.3em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-shine), var(--gold));
    background-size: 300% auto; -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    animation: textShine 4s linear infinite;
}
.hero h2 .sub-text {
    display: block; font-size: 0.5em; color: rgba(0,0,0,0.85);
    font-family: 'Montserrat', sans-serif; font-weight: 300;
    letter-spacing: 8px; margin-top: 10px;
    -webkit-text-fill-color: rgba(0,0,0,0.85);
}
.hero p {
    color: rgba(0,0,0,0.8); font-size: clamp(14px, 1.5vw, 17px);
    margin-bottom: 40px; line-height: 1.8; max-width: 480px; font-weight: 300;
}
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    padding: 16px 40px; border-radius: 50px; font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 2px; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1); text-decoration: none;
    display: inline-flex; align-items: center; gap: 12px;
    position: relative; overflow: hidden; border: 2px solid transparent;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); box-shadow: 0 5px 30px rgba(212,168,67,0.4); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 40px rgba(212,168,67,0.5); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,168,67,0.3); }

/* ===== HERO IMAGE ===== */
.hero-image-container {
    position: relative; display: flex; justify-content: center;
    align-items: center; animation: rotateIn 1.2s ease-out;
}
.hero-image-wrapper { position: relative; width: 100%; max-width: 520px; }
.hero-image {
    width: 100%; height: auto; border-radius: 30px;
    box-shadow: 0 30px 80px rgba(212,168,67,0.2), 0 0 0 1px rgba(212,168,67,0.1);
    animation: float 6s ease-in-out infinite; position: relative; z-index: 2;
}
.hero-glow-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 120%; height: 120%; border: 2px solid rgba(212,168,67,0.15);
    border-radius: 50%; animation: spin-slow 20s linear infinite;
}
.hero-glow-ring::before {
    content: ''; position: absolute; top: 10%; left: 10%; right: 10%; bottom: 10%;
    border: 1px solid rgba(212,168,67,0.1); border-radius: 50%;
    animation: spin-slow 15s linear infinite reverse;
}
.hero-glow-bg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
    border-radius: 50%; z-index: 1; animation: pulse-glow 4s ease-in-out infinite;
}
.hero-floating-card {
    position: absolute; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); border: 1px solid rgba(212,168,67,0.25);
    border-radius: 16px; padding: 14px 20px; color: var(--black);
    font-size: 12px; font-weight: 600; z-index: 3;
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.hero-floating-card.card-1 { top: 10%; right: -8%; animation-delay: 0s; }
.hero-floating-card.card-2 { bottom: 15%; left: -8%; animation-delay: 2.5s; }
.hero-floating-card i { color: var(--gold); margin-right: 8px; }

/* ===== FEATURES BAR ===== */
.features-bar {
    background: var(--dark); padding: 40px 5%;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 30px; max-width: 1300px; margin: -6px auto 0;
    position: relative; z-index: 10; border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(212,168,67,0.1);
}
.feature-item {
    text-align: center; color: var(--white);
    padding: 20px; position: relative;
}
.feature-item::after {
    content: ''; position: absolute; right: 0; top: 20%;
    height: 60%; width: 1px; background: rgba(212,168,67,0.15);
}
.feature-item:last-child::after { display: none; }
.feature-icon-wrap {
    width: 70px; height: 70px; background: rgba(212,168,67,0.1);
    border: 2px solid rgba(212,168,67,0.3); border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; transition: all 0.4s;
}
.feature-item:hover .feature-icon-wrap {
    background: var(--gold); border-color: var(--gold);
    transform: translateY(-5px) rotate(5deg);
}
.feature-item:hover .feature-icon-wrap i { color: var(--black); }
.feature-icon-wrap i { font-size: 28px; color: var(--gold); transition: color 0.4s; }
.feature-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.feature-item p { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 300; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 {
    font-family: 'Cinzel', serif; font-size: clamp(26px, 4vw, 40px);
    color: var(--text-dark); margin-bottom: 15px; position: relative;
    display: inline-block; letter-spacing: 2px;
}
.section-header h2::after {
    content: ''; position: absolute; bottom: -15px; left: 50%;
    transform: translateX(-50%); width: 80px; height: 4px;
    background: var(--gold); border-radius: 2px;
}
.section-header p {
    color: var(--text-gray); font-size: 15px; margin-top: 30px;
    max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 90px 3%; background: #ffffff; }
.products-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 22px; max-width: 1700px; margin: auto;
}
.product-card {
    position: relative; background: #fff; border-radius: 22px; overflow: hidden;
    transition: 0.45s ease; border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 18px 45px rgba(0,0,0,0.14); }
.product-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 0%; height: 4px;
    background: linear-gradient(90deg,#d4a843,#f7d26a); transition: 0.5s ease; z-index: 10;
}
.product-card:hover::before { width: 100%; }
.product-image-wrapper {
    position: relative; height: 220px;
    background: linear-gradient(135deg,#111,#1f1f1f);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-image-bg {
    position: absolute; width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(212,168,67,0.35) 0%, rgba(212,168,67,0.02) 70%);
    border-radius: 50%; transition: 0.5s ease;
}
.product-card:hover .product-image-bg { transform: scale(1.4); }
.product-img {
    width: 80%; height: 80%; object-fit: contain; position: relative; z-index: 2;
    transition: 0.5s ease; filter: drop-shadow(0 12px 25px rgba(0,0,0,0.35));
}
.product-card:hover .product-img { transform: scale(1.08) translateY(-6px); }
.product-badge {
    position: absolute; top: 14px; right: 14px;
    background: linear-gradient(135deg,#f7d26a,#d4a843);
    color: #111; font-size: 10px; font-weight: 800; padding: 7px 14px;
    border-radius: 50px; letter-spacing: 1px; z-index: 5; text-transform: uppercase;
}
.product-quick-view {
    position: absolute; bottom: 18px; left: 50%;
    transform: translateX(-50%) translateY(20px); background: #fff; color: #111;
    border: none; padding: 10px 22px; border-radius: 40px; font-size: 11px;
    font-weight: 700; letter-spacing: 1px; cursor: pointer; opacity: 0;
    transition: 0.4s ease; z-index: 5; white-space: nowrap;
}
.product-card:hover .product-quick-view { opacity: 1; transform: translateX(-50%) translateY(0); }
.product-info { padding: 22px 16px 24px; text-align: center; }
.product-info h3 { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 8px; line-height: 1.4; }
.product-info p { font-size: 12px; color: #777; margin-bottom: 15px; line-height: 1.5; }
.product-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; background: rgba(212,168,67,0.12); color: #b88a1b;
    border-radius: 30px; font-size: 10px; font-weight: 700; letter-spacing: 1px;
    border: 1px solid rgba(212,168,67,0.2); text-transform: uppercase;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: var(--black); padding: 90px 4%;
    position: relative; overflow: hidden;
}
.why-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(212,168,67,0.04) 0%, transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(212,168,67,0.04) 0%, transparent 35%);
}
.why-container { max-width: 1350px; margin: 0 auto; position: relative; z-index: 2; }
.why-section .section-header { margin-bottom: 50px; }
.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,0.6); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(212,168,67,0.18);
    border-radius: 22px; padding: 35px 25px; text-align: center;
    transition: all 0.45s ease; position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 0; background: var(--gold); transition: height 0.45s ease; z-index: 0;
}
.why-card:hover::before { height: 100%; }
.why-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.why-card:hover .why-icon { background: var(--black); border-color: var(--black); }
.why-card:hover .why-icon i { color: var(--gold); }
.why-card:hover h3, .why-card:hover p { color: var(--black); }
.why-icon {
    width: 62px; height: 62px; background: rgba(212,168,67,0.12);
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; border: 2px solid var(--gold);
    transition: all 0.45s ease; position: relative; z-index: 1;
}
.why-icon i { font-size: 26px; color: var(--gold); transition: 0.45s; }
.why-card h3 { color: var(--white); font-size: 18px; margin-bottom: 12px; font-weight: 700; transition: 0.45s; position: relative; z-index: 1; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; transition: 0.45s; position: relative; z-index: 1; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 100px 5%; text-align: center; background: var(--white); position: relative; }
.cta-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 5px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-box {
    max-width: 800px; margin: 0 auto; padding: 70px 50px;
    background: var(--black); border-radius: 40px; position: relative;
    overflow: hidden; border: 1px solid rgba(212,168,67,0.2);
}
.cta-box::after {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box::before {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.3);
    color: var(--gold); padding: 8px 20px; border-radius: 30px;
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 25px; position: relative; z-index: 2;
}
.cta-box h2 {
    font-family: 'Cinzel', serif; font-size: clamp(24px, 4vw, 36px);
    color: var(--white); margin-bottom: 20px; position: relative; z-index: 2; letter-spacing: 2px;
}
.cta-box p {
    color: rgba(255,255,255,0.6); margin-bottom: 35px; position: relative; z-index: 2;
    font-size: 15px; line-height: 1.7; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ===== FOOTER ===== */
footer { background: var(--darker); color: var(--white); padding: 80px 5% 30px; position: relative; overflow: hidden; }
footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-container {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px; position: relative; z-index: 2;
}
.footer-brand { display: flex; flex-direction: column; gap: 25px; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo h3 { font-family: 'Cinzel', serif; font-size: 24px; color: var(--gold); letter-spacing: 2px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.9; max-width: 300px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a {
    width: 45px; height: 45px; border-radius: 14px;
    background: rgba(255,255,255,0.05); display: flex; align-items: center;
    justify-content: center; color: var(--gold); text-decoration: none;
    transition: all 0.4s; border: 1px solid rgba(212,168,67,0.2); font-size: 16px;
}
.footer-social a:hover {
    background: var(--gold); color: var(--black);
    transform: translateY(-5px) rotate(5deg); border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212,168,67,0.3);
}
.footer-links h4, .footer-contact h4 {
    color: var(--gold); font-size: 14px; margin-bottom: 30px;
    text-transform: uppercase; letter-spacing: 3px; font-weight: 700;
    position: relative; padding-bottom: 15px;
}
.footer-links h4::after, .footer-contact h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 40px; height: 3px; background: var(--gold); border-radius: 2px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px;
    transition: all 0.3s; display: flex; align-items: center; gap: 10px; font-weight: 500;
}
.footer-links a:hover { color: var(--gold); transform: translateX(5px); }
.footer-links a i { font-size: 10px; color: var(--gold); transition: transform 0.3s; }
.footer-links a:hover i { transform: translateX(5px); }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 15px;
    color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.8;
    transition: all 0.3s; padding: 8px; border-radius: 12px; margin-bottom: 10px;
}
.footer-contact-item:hover { background: rgba(212,168,67,0.05); transform: translateX(5px); }
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 18px; width: 20px; text-align: center; }
.footer-bottom {
    max-width: 1400px; margin: 50px auto 0; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06); text-align: center;
    color: rgba(255,255,255,0.3); font-size: 12px; letter-spacing: 1px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px;
    background: #25D366; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: white; font-size: 30px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4); z-index: 999;
    animation: bounce 2s infinite; text-decoration: none; transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.5); }
.whatsapp-float::before {
    content: ''; position: absolute; width: 100%; height: 100%;
    border-radius: 50%; border: 2px solid #25D366; animation: pulse-glow 2s infinite;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,0.98); z-index: 2000; flex-direction: column;
    align-items: center; justify-content: center; gap: 35px; backdrop-filter: blur(20px);
}
.mobile-menu.active { display: flex; animation: scaleIn 0.4s ease-out; }
.mobile-menu a {
    color: var(--white); text-decoration: none; font-size: 22px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 4px; transition: all 0.3s;
    padding: 10px 30px; border: 2px solid transparent; border-radius: 50px;
}
.mobile-menu a:hover { color: var(--gold); border-color: var(--gold); }
.close-menu {
    position: absolute; top: 25px; right: 25px; color: var(--gold);
    font-size: 28px; cursor: pointer; width: 50px; height: 50px;
    border: 2px solid var(--gold); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; transition: all 0.3s;
}
.close-menu:hover { background: var(--gold); color: var(--black); transform: rotate(90deg); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large desktop — 4 product columns */
@media (max-width: 1400px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Tablet / small desktop */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .product-image-wrapper { height: 200px; }
}

/* iPad / tablet landscape */
@media (max-width: 1024px) {
    .nav-links, .header-contact { display: none; }
    .menu-toggle { display: flex; }

    .hero { padding-top: 100px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 40px 5%; }
    .hero-content { text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-image-container { order: -1; }
    .hero-image-wrapper { max-width: 420px; margin: 0 auto; }
    .hero-floating-card { display: none; }
    .hero-glow-bg { width: 360px; height: 360px; }

    .features-bar {
        grid-template-columns: repeat(2, 1fr);
        margin: 0; border-radius: 0; gap: 0; padding: 30px 5%;
    }
    .feature-item::after { display: none; }
    .feature-item { border-bottom: 1px solid rgba(212,168,67,0.1); }
    .feature-item:nth-child(3), .feature-item:nth-child(4) { border-bottom: none; }

    .why-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .hero { min-height: auto; padding-top: 90px; padding-bottom: 40px; }
    .hero-container { padding: 30px 4%; gap: 30px; }
    .hero-badge { font-size: 10px; padding: 8px 18px; letter-spacing: 2px; }
    .hero h2 { font-size: 30px; }
    .hero h2 .ratto-text { font-size: 1.2em; }
    .hero h2 .sub-text { letter-spacing: 4px; font-size: 0.45em; }
    .hero p { font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
    .hero-buttons { justify-content: center; gap: 12px; }
    .hero-image-wrapper { max-width: 300px; }
    .hero-glow-ring { display: none; }
    .hero-glow-bg { width: 260px; height: 260px; }

    .btn { padding: 14px 26px; font-size: 12px; gap: 8px; }

    .features-bar { padding: 20px 4%; gap: 0; }
    .feature-icon-wrap { width: 55px; height: 55px; }
    .feature-icon-wrap i { font-size: 22px; }
    .feature-item h4 { font-size: 13px; }
    .feature-item p { font-size: 11px; }

    .products-section { padding: 60px 3%; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-image-wrapper { height: 150px; }
    .product-info { padding: 14px 10px 16px; }
    .product-info h3 { font-size: 12px; }
    .product-info p { font-size: 11px; margin-bottom: 10px; }
    .product-tag { font-size: 9px; padding: 5px 10px; gap: 4px; }
    .product-badge { font-size: 8px; padding: 5px 10px; top: 8px; right: 8px; }
    .product-quick-view { display: none; }

    .why-section { padding: 60px 4%; }
    .why-section .section-header h2 { font-size: 26px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .why-card { padding: 25px 16px; }

    .cta-section { padding: 60px 4%; }
    .cta-box { padding: 45px 25px; border-radius: 28px; }

    .footer-container { grid-template-columns: 1fr; gap: 35px; }
    .footer-brand p { max-width: 100%; }

    .section-header { margin-bottom: 50px; }
    .section-header p { font-size: 13px; }
}

/* Small mobile portrait */
@media (max-width: 480px) {
    .header-top { font-size: 9px; letter-spacing: 1px; padding: 7px 4%; }
    .logo-text img { width: 42px; }
    .logo-content h1 { font-size: 20px; }
    .logo-content .premium { font-size: 8px; }
    .logo-content .sub-text { font-size: 8px; }
    .menu-toggle { width: 38px; height: 38px; font-size: 18px; }

    .hero { padding-top: 82px; }
    .hero-container { padding: 20px 4%; }
    .hero h2 { font-size: 26px; }
    .hero p { font-size: 13px; }
    .hero-image-wrapper { max-width: 260px; }

    .features-bar { padding: 15px 3%; }
    .feature-item { padding: 15px 10px; }
    .feature-icon-wrap { width: 48px; height: 48px; margin-bottom: 12px; }
    .feature-icon-wrap i { font-size: 20px; }
    .feature-item h4 { font-size: 11px; }
    .feature-item p { font-size: 10px; }

    .products-section { padding: 50px 2%; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .product-image-wrapper { height: 120px; }
    .product-info { padding: 10px 8px 12px; }
    .product-info h3 { font-size: 11px; }
    .product-info p { font-size: 9px; }
    .product-tag { font-size: 8px; padding: 4px 8px; }

    .why-grid { gap: 10px; }
    .why-card { padding: 20px 14px; }
    .why-icon { width: 50px; height: 50px; }
    .why-icon i { font-size: 20px; }
    .why-card h3 { font-size: 15px; }
    .why-card p { font-size: 12px; }

    .cta-box { padding: 35px 18px; }
    .cta-box h2 { font-size: 22px; }
    .cta-box p { font-size: 13px; }

    .footer-container { gap: 28px; }
    .footer-logo h3 { font-size: 20px; }

    .whatsapp-float { width: 55px; height: 55px; font-size: 24px; bottom: 20px; right: 18px; }
    .section-header h2 { font-size: 22px; }
}
