/* --- Global Variables --- */
:root {
    --red: #c1131f;
    --red-gradient: linear-gradient(135deg, #c1131f, #e63946);
    --cream: #fdf0d5;
    --navy: #003049;
    --amber: #e19f3e;
    --white: #FFFFFF;
    --text: #003049;
    --text-light: #6B6B6B;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Quicksand', sans-serif; color: var(--text); background: var(--cream); -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Tandelle', 'Quicksand', sans-serif; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.section { padding: 60px 0; }

/* --- Navigation --- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.nav.scrolled { padding: 10px 0; background: rgba(253, 240, 213, 0.9); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(193, 19, 31, 0.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.4rem; font-weight: 700; background: var(--red-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-logo img { display: block; max-height: 36px; width: auto; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a:hover { color: var(--red); }

.nav-hamburger { display: none; flex-direction: column; gap: 4px; border: none; background: none; cursor: pointer; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

.mobile-menu { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 30px; }
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: 'Tandelle', 'Quicksand', sans-serif; font-size: 2rem; }

/* --- Hero --- */
.hero { min-height: auto; display: flex; align-items: center; padding: 100px 0 60px; background: linear-gradient(160deg, #fdf0d5 0%, #fce8c0 100%); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center; }
.hero h1 { font-size: 2.8rem; margin-bottom: 12px; }
.hero h1 span { background: var(--red-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 24px; max-width: 380px; }
.hero-badge { display: inline-block; padding: 4px 10px; background: rgba(193, 19, 31, 0.1); color: var(--red); border-radius: 100px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; margin-bottom: 12px; }
.hero-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--red-gradient); color: white; border-radius: 100px; font-weight: 600; box-shadow: 0 4px 15px rgba(193, 19, 31, 0.2); transition: var(--transition); }

.hero-image-actual { position: relative; width: 100%; max-width: 440px; aspect-ratio: 16/10; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); margin-left: auto; }
.hero-image-file { width: 100%; height: 100%; object-fit: cover; }
.hero-image-branding { position: absolute; bottom: 15px; left: 15px; font-size: 0.75rem; color: white; background: rgba(0,0,0,0.15); padding: 3px 10px; border-radius: 100px; backdrop-filter: blur(4px); }

/* --- Products & Button Alignment Fix --- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-label { color: var(--red); text-transform: uppercase; font-weight: 600; letter-spacing: 2px; font-size: 1.25rem; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; align-items: stretch; }
.product-card { background: white; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; overflow: hidden; transition: var(--transition); height: 100%; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-image-container { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #F5F5F5; }
.image-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; height: 100%; }
.image-slider::-webkit-scrollbar { display: none; }
.image-slider img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: start; }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; opacity: 0; transition: 0.3s; z-index: 5; }
.product-card:hover .slider-btn { opacity: 1; }
.slider-btn.prev { left: 8px; }
.slider-btn.next { right: 8px; }

/* Sticky Footer Logic */
.product-info { padding: 18px; flex-grow: 1; display: flex; flex-direction: column; }
.product-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 12px; }
.product-buttons { margin-top: auto; padding-top: 10px; }

.btn-amazon { display: block; width: 100%; background: #FF9900; color: white; text-align: center; padding: 10px; border-radius: 8px; font-weight: 600; font-size: 0.8rem; }
.product-tag { position: absolute; top: 12px; left: 12px; background: var(--red-gradient); color: white; padding: 4px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; z-index: 6; }

/* --- Trust & Footer --- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card { text-align: center; padding: 30px 20px; background: white; border-radius: 12px; }
.trust-icon { width: 44px; height: 44px; margin: 0 auto 16px; background: rgba(193, 19, 31, 0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); }
.footer { padding: 40px 0 20px; text-align: center; background: white; border-top: 1px solid rgba(0,0,0,0.05); }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { text-align: center; padding: 30px 20px; background: white; border-radius: 12px; }
.contact-card h3 { margin-bottom: 8px; font-size: 1rem; }
.contact-card a { color: var(--red); font-weight: 500; word-break: break-all; }
.contact-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* --- Responsive --- */
@media (max-width: 968px) {
    .nav-logo img { max-height: 28px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-image-actual { margin: 0 auto; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .trust-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}