@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;900&display=swap');

:root {
    --brand-green: #2D483A;
    --neon-green: #39FF14;
    --neon-green-dark: #2ba815; /* Dark neon green for B2B headings */
    --bg-dark: #161616; /* Updated to dark grey */
    --card-bg: #1e1e1e; /* Slightly lighter grey for cards */
    --text-light: #ffffff;
    --text-dim: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; cursor: none; }
body { background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }

/* Cursor Trail */
.cursor-trail {
    position: fixed; width: 12px; height: 12px; background: var(--neon-green);
    border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
    z-index: 9999; transition: left 0.05s ease-out, top 0.05s ease-out;
}
a:hover ~ .cursor-trail, button:hover ~ .cursor-trail { transform: translate(-50%, -50%) scale(2); }

/* Navigation */
nav { padding: 20px 5vw; display: flex; justify-content: space-between; align-items: center; background: var(--bg-dark); border-bottom: 1px solid rgba(255,255,255,0.05); }
.logo-img { height: 75px; transition: height 0.3s ease; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-light); text-decoration: none; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--neon-green-dark); }
.nav-btn { background-color: transparent; color: var(--text-light); border: 1px solid var(--text-light); padding: 10px 20px; text-transform: uppercase; font-weight: 700; font-size: 12px; letter-spacing: 2px; text-decoration: none; transition: all 0.3s ease; }
.nav-btn:hover { background-color: var(--text-light); color: var(--bg-dark); }

/* Globals */
.container { padding: 80px 5vw; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 40px; text-transform: uppercase; text-align: center; }

/* Hero Section with Slider */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; min-height: 70vh; }
.hero-slider-container { position: relative; width: 100%; height: 500px; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%); mask-image: linear-gradient(to right, transparent 0%, black 25%); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease-in-out; }
.slide.active { opacity: 1; }

/* Comparison Table Image - Full Width */
.compare-section { width: 100%; margin: 45px 0; padding: 0; }
.compare-img { width: 90%; margin-left: auto;
  margin-right: auto; height: auto; display: block; border-radius: 0; box-shadow: none; }
/* Tilted Reviews */
.reviews-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.review-card { background: var(--card-bg); padding: 30px; width: 300px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: all 0.4s ease; transform: rotate(var(--tilt)); border: 1px solid rgba(255,255,255,0.05); }
.review-card:hover { transform: rotate(0deg) scale(1.1); z-index: 10; border-color: var(--neon-green-dark); }
.review-name { font-weight: 900; color: var(--neon-green); margin-bottom: 10px; }

/* Products / Buy Now (Updated to EXACTLY 400x717 ratio) */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.product-card { background-color: var(--card-bg); padding: 40px 20px; border-radius: 15px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
/* Updated Product Image for 200x359 aspect ratio */
.product-img { 
    width: 100%; 
    max-width: 200px; 
    aspect-ratio: 200 / 359; 
    object-fit: contain; 
    display: block; 
    margin: 0 auto 20px; 
}.price-qty-box { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding: 15px; background: rgba(0,0,0,0.4); border-radius: 5px; }
.price { font-size: 1.2rem; font-weight: 900; color: var(--neon-green); }
.qty-controls { display: flex; gap: 15px; font-weight: 700; }
.btn-sold-out { background-color: #333; color: #777; border: none; padding: 15px; width: 100%; font-weight: 700; text-transform: uppercase; border-radius: 5px; }

/* B2B Images */
.b2b-card-img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 10px; margin-bottom: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* Forms */
.contact-form { display: flex; flex-direction: column; gap: 20px; background: var(--card-bg); padding: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.02); }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); color: white; border-radius: 5px; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--neon-green); outline: none; }
.contact-form button { background: var(--brand-green); color: white; border: none; padding: 15px; font-weight: 900; cursor: pointer; border-radius: 5px; text-transform: uppercase; transition: background 0.3s; }
.contact-form button:hover { background: var(--neon-green-dark); }

/* Footer */
.site-footer { background: #0f0f0f; padding: 60px 5vw 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; text-align: left; }
.footer-logo-box { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; }
.footer-links a, .footer-contact a { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 10px; transition: color 0.3s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--neon-green-dark); }
.footer-bottom { text-align: center; color: var(--text-dim); font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.insta-icon { width: 28px; height: 28px; fill: var(--text-light); transition: transform 0.3s, fill 0.3s; display: block; margin: 0 auto; }
.insta-icon:hover { fill: var(--neon-green); transform: scale(1.1); }

@media (max-width: 768px) {
    .hero-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-slider-container { -webkit-mask-image: none; mask-image: none; margin-top: 30px; }
    .nav-links { display: none; }
}