/* ===== CSS VARIABLES ===== */
:root {
--jupiter: #C8922A;
--jupiter-light: #F5D78E;
--jupiter-dark: #7A5510;
--pluton: #2A2A3A;
--pluton-silver: #9BA0B0;
--pluton-light: #D0D4E0;
--cream: #FAF6EE;
--cream-dark: #EDE8DC;
--ink: #1A1A24;
--serif: 'Playfair Display', Georgia, serif;
--sans: 'DM Sans', sans-serif;
--display: 'Bebas Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); font-weight: 400; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 9999; opacity: 0.4; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--jupiter); border-radius: 3px; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 3rem; background: rgba(250, 246, 238, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200, 146, 42, 0.2); transition: all 0.3s ease; }
.nav-logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.02em; color: var(--jupiter); }
.nav-logo .amp { color: var(--pluton-silver); margin: 0 0.3rem; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); transition: color 0.2s; }
.nav-links a:hover { color: var(--jupiter); }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--jupiter); border-radius: 2rem; padding: 5px 12px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; color: var(--jupiter); }

#hero { min-height: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 5rem 2rem 4rem; position: relative; overflow: visible; border: 3px solid transparent; background: linear-gradient(#FAF6EE, #FAF6EE) padding-box, linear-gradient(135deg, #C8922A 0%, #C8922A 40%, #2A2A3A 100%) border-box; margin: 8px; border-radius: 1rem; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(200, 146, 42, 0.12) 0%, transparent 70%), radial-gradient(ellipse 60% 50% at 80% 50%, rgba(42, 42, 58, 0.1) 0%, transparent 70%), var(--cream); z-index: 0; overflow: hidden; border-radius: 1rem; }
.hero-bg::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; border: 1px solid rgba(200, 146, 42, 0.1); border-radius: 50%; }
.hero-bg::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; border: 1px solid rgba(200, 146, 42, 0.08); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-logo { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; margin-top: 0; animation: fadeInUp 1s ease both; width: 100%; padding: 0 1rem; overflow: hidden; }
.hero-logo img { width: 45%; max-width: 240px; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }
.hero-dog-img { width: 240px; height: 240px; object-fit: cover; border-radius: 16px; max-width: 42vw; max-height: 42vw; }
.hero-title { font-family: var(--serif); font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 900; line-height: 0.9; margin-bottom: 0.5rem; animation: fadeInUp 1s 0.2s ease both; }
.hero-title .j { color: var(--jupiter); }
.hero-title .amp { color: var(--pluton-silver); font-family: 'Cormorant Garamond', serif; font-size: 0.5em; font-style: italic; font-weight: 300; letter-spacing: 0.2em; }
.hero-title .p { color: var(--pluton); }
.hero-tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1rem, 2.5vw, 1.4rem); color: var(--ink); opacity: 0.7; margin-bottom: 3rem; letter-spacing: 0.02em; animation: fadeInUp 1s 0.4s ease both; }
.filter-group { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; animation: fadeInUp 1s 0.6s ease both; }
.filter-btn { padding: 0.8rem 2rem; border-radius: 2rem; border: 1.5px solid; font-family: var(--sans); font-size: 1rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.25s ease; background: transparent; }
.filter-btn.all { border-color: var(--ink); color: var(--ink); }
.filter-btn.all:hover, .filter-btn.all.active { background: var(--ink); color: var(--cream); }
.filter-btn.jupiter-btn { border-color: var(--jupiter); color: var(--jupiter-dark); }
.filter-btn.jupiter-btn:hover, .filter-btn.jupiter-btn.active { background: var(--jupiter); color: var(--ink); }
.filter-btn.pluton-btn { border-color: var(--pluton); color: var(--pluton); }
.filter-btn.pluton-btn:hover, .filter-btn.pluton-btn.active { background: var(--pluton); color: var(--cream); }
.filter-btn.juntos-btn { border-color: var(--pluton-silver); color: var(--ink); }
.filter-btn.juntos-btn:hover, .filter-btn.juntos-btn.active { background: linear-gradient(90deg, var(--jupiter), var(--pluton)); border-color: transparent; color: var(--cream); }
.hero-social { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; margin-bottom: 2rem; animation: fadeInUp 1s 0.8s ease both; }
.hero-social-link { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pluton-silver); transition: color 0.2s; }
.hero-social-link:hover { color: var(--jupiter); }
.hero-quote { padding: 0.8rem 1rem; border-left: 3px solid var(--jupiter); background: rgba(200,146,42,0.06); border-radius: 0 8px 8px 0; margin: 0 1rem 1.5rem; text-align: left; animation: fadeInUp 1s 1s ease both; }
.hero-quote p { font-family: var(--serif); font-style: italic; font-size: 0.88rem; color: var(--ink); opacity: 0.75; line-height: 1.5; margin-bottom: 4px; }
.hero-quote span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--jupiter); }
.scroll-hint { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pluton-silver); animation: bounceY 2s infinite; text-decoration: none; z-index: 2; margin: 1.5rem auto 0; width: 100%; position: relative; }
.scroll-hint::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, var(--pluton-silver), transparent); }

section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label { font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--jupiter); margin-bottom: 0.75rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: rgba(26, 26, 36, 0.6); max-width: 500px; }
.section-header { margin-bottom: 3.5rem; }

#quienes { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
#quienes::before { content: 'VS'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--display); font-size: clamp(8rem, 20vw, 18rem); color: rgba(255,255,255,0.025); pointer-events: none; letter-spacing: -0.05em; z-index: 0; }
#quienes .section-label { color: var(--jupiter-light); }
#quienes .section-title { color: var(--cream); }
#quienes .section-subtitle { color: rgba(250,246,238,0.5); }
.versus-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: start; position: relative; z-index: 1; }
.versus-divider { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 2rem; gap: 1rem; }
.vs-badge { font-family: var(--display); font-size: 2.5rem; color: var(--pluton-silver); letter-spacing: 0.1em; }
.vs-line { width: 1px; height: 200px; background: linear-gradient(to bottom, transparent, var(--pluton-silver), transparent); }
.dog-card { padding: 2.5rem; border-radius: 1.5rem; position: relative; overflow: hidden; transition: transform 0.3s ease; }
.dog-card:hover { transform: translateY(-6px); }
.dog-card.jupiter-card { background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.05)); border: 1px solid rgba(200, 146, 42, 0.3); }
.dog-card.pluton-card { background: linear-gradient(135deg, rgba(155, 160, 176, 0.15), rgba(155, 160, 176, 0.05)); border: 1px solid rgba(155, 160, 176, 0.2); }
.dog-photo { width: 100%; aspect-ratio: 4/3; border-radius: 1rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 5rem; position: relative; overflow: hidden; }
.dog-photo.j-photo { background: linear-gradient(135deg, #3D2A08, #7A5510); }
.dog-photo.p-photo { background: linear-gradient(135deg, #1A1A2E, #2A2A4A); }
.dog-photo img { width: 100%; height: 100%; object-fit: contain; border-radius: 1rem; }
.dog-name { font-family: var(--serif); font-size: 2.2rem; font-weight: 900; margin-bottom: 0.25rem; }
.jupiter-card .dog-name { color: var(--jupiter-light); }
.pluton-card .dog-name { color: var(--pluton-light); }
.dog-age { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pluton-silver); margin-bottom: 1rem; }
.dog-desc { font-size: 0.95rem; line-height: 1.7; color: rgba(250,246,238,0.75); margin-bottom: 1.5rem; }
.dog-traits { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.trait { padding: 0.3rem 0.8rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }
.jupiter-card .trait { background: rgba(200, 146, 42, 0.2); color: var(--jupiter-light); border: 1px solid rgba(200, 146, 42, 0.3); }
.pluton-card .trait { background: rgba(155, 160, 176, 0.15); color: var(--pluton-light); border: 1px solid rgba(155, 160, 176, 0.2); }
.dog-facts { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; }
.dog-fact { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.88rem; color: rgba(250,246,238,0.65); }
.dog-fact span:first-child { font-size: 1rem; flex-shrink: 0; }

#blog { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.post-card { background: white; border-radius: 1.2rem; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease; cursor: pointer; }
.post-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.post-image { width: 100%; height: 280px; overflow: hidden; border-radius: 10px 10px 0 0; position: relative; }
.post-image.j-bg { background: linear-gradient(135deg, #F5D78E, #C8922A); }
.post-image.p-bg { background: linear-gradient(135deg, #3A3A5A, #1A1A2E); }
.post-image.both-bg { background: linear-gradient(135deg, #C8922A, #2A2A3A); }
.post-img { width: 100%; height: auto; display: block; }
.post-tag { position: absolute; bottom: 0.8rem; left: 1rem; padding: 0.3rem 0.9rem; border-radius: 2rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.tag-jupiter { background: var(--jupiter); color: var(--ink); }
.tag-pluton { background: var(--pluton); color: var(--cream); }
.tag-juntos { background: linear-gradient(90deg, var(--jupiter), var(--pluton)); color: var(--cream); }
.post-body { padding: 1.5rem; }
.post-meta { font-size: 0.75rem; color: var(--pluton-silver); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.75rem; }
.post-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.75rem; color: var(--ink); }
.post-excerpt { font-size: 0.875rem; color: rgba(26,26,36,0.65); line-height: 1.6; margin-bottom: 1.25rem; }
.post-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.06); }
.post-author { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 600; }
.author-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-j { background: var(--jupiter); }
.dot-p { background: var(--pluton); }
.dot-both { background: linear-gradient(135deg, var(--jupiter), var(--pluton)); }
.post-card.hidden { display: none; }
.read-link { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--jupiter); border-bottom: 2px solid transparent; transition: all 0.2s; }
.read-link:hover { color: var(--jupiter-dark); border-bottom-color: var(--jupiter); }

#productos { background: var(--cream-dark); position: relative; overflow: hidden; }
#productos::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,146,42,0.1) 0%, transparent 70%); pointer-events: none; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.product-card { background: white; border-radius: 1.2rem; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
.product-image { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: var(--cream); border-bottom: 1px solid rgba(0,0,0,0.05); }
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-recommended { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.25rem 0.75rem; border-radius: 2rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; width: fit-content; }
.rec-jupiter { background: rgba(200,146,42,0.15); color: var(--jupiter-dark); border: 1px solid rgba(200,146,42,0.3); }
.rec-pluton { background: rgba(42,42,58,0.1); color: var(--pluton); border: 1px solid rgba(42,42,58,0.2); }
.product-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.3; }
.product-review { font-size: 0.82rem; color: rgba(26,26,36,0.6); font-style: italic; line-height: 1.5; margin-bottom: 1rem; flex: 1; }
.product-stars { font-size: 0.85rem; color: var(--jupiter); margin-bottom: 1rem; letter-spacing: 0.05em; }
.amazon-btn { display: block; background: #FF9900; color: var(--ink); text-align: center; padding: 0.65rem 1rem; border-radius: 0.6rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; transition: all 0.2s; margin-top: auto; }
.amazon-btn:hover { background: #E88800; transform: scale(1.02); }
.category-block { margin-bottom: 3rem; }
.category-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--jupiter); }

#galeria { background: var(--ink); color: var(--cream); }
#galeria .section-label { color: var(--jupiter-light); }
#galeria .section-title { color: var(--cream); }
#galeria .section-subtitle { color: rgba(250,246,238,0.5); }
.gallery-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-filter { padding: 0.4rem 1.2rem; border-radius: 2rem; border: 1.5px solid rgba(255,255,255,0.2); background: transparent; color: rgba(250,246,238,0.7); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.gallery-filter:hover, .gallery-filter.active { border-color: var(--jupiter); color: var(--jupiter-light); background: rgba(200,146,42,0.1); }
.gallery-masonry { columns: 4; column-gap: 1rem; }
@media (max-width: 1000px) { .gallery-masonry { columns: 3; } }
@media (max-width: 700px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 0.8rem; overflow: hidden; position: relative; cursor: pointer; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: flex-end; padding: 1rem; transition: background 0.3s; }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.4); }
.gallery-caption { opacity: 0; color: white; font-size: 0.8rem; font-weight: 600; transition: opacity 0.3s; }
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-item.hidden { display: none; }

footer { background: var(--ink); color: rgba(250,246,238,0.6); padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-tagline { font-style: italic; font-family: var(--serif); font-size: 0.95rem; margin-bottom: 1.5rem; color: rgba(250,246,238,0.5); }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.2s; }
.social-link:hover { background: var(--jupiter); }
.footer-col h4 { font-family: var(--sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--jupiter-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.amazon-disclaimer { flex: 1; font-size: 0.75rem; line-height: 1.6; color: rgba(250,246,238,0.35); }
.amazon-badge { display: flex; align-items: center; gap: 0.5rem; background: rgba(255, 153, 0, 0.1); border: 1px solid rgba(255, 153, 0, 0.2); padding: 0.5rem 1rem; border-radius: 0.5rem; font-size: 0.75rem; font-weight: 600; color: #FF9900; white-space: nowrap; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounceY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.newsletter-strip { background: var(--cream-dark); padding: 3rem 2rem; text-align: center; }
.newsletter-strip h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
.newsletter-strip p { font-size: 0.9rem; color: rgba(26,26,36,0.6); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.newsletter-input { padding: 0.75rem 1.5rem; border-radius: 2rem; border: none; font-family: var(--sans); font-size: 0.9rem; min-width: 260px; outline: none; background: rgba(255,255,255,0.95); }
.newsletter-submit { padding: 0.75rem 2rem; border-radius: 2rem; border: none; background: var(--ink); color: var(--cream); font-family: var(--sans); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s; }
.newsletter-submit:hover { background: var(--pluton); }

/* ===== DRAWER ===== */
.drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; }
.drawer-overlay.open { display: block; }
.drawer { position: fixed; top: 0; left: -100vw; width: 80vw; max-width: 300px; height: 100vh; height: 100dvh; background: var(--ink); z-index: 300; padding: 1.25rem 1.5rem; transition: left 0.3s ease; box-shadow: 4px 0 30px rgba(0,0,0,0.3); display: flex; flex-direction: column; }
.drawer.open { left: 0; }
.drawer-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--cream); align-self: flex-end; margin-bottom: 0.75rem; flex-shrink: 0; }
.drawer-logo { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--jupiter); margin-bottom: 0.25rem; flex-shrink: 0; }
.drawer-tagline { font-family: var(--serif); font-style: italic; font-size: 0.78rem; color: var(--pluton-silver); margin-bottom: 0.75rem; flex-shrink: 0; }
.drawer-hr { border: none; border-top: 0.5px solid rgba(200,146,42,0.2); margin: 0.5rem 0; flex-shrink: 0; }
.drawer-links { list-style: none; display: flex; flex-direction: column; flex: 1; }
.drawer-links li { flex: 1; display: flex; }
.drawer-links a { display: flex; align-items: center; width: 100%; padding: 0 1rem; font-size: 1rem; font-weight: 600; color: var(--cream); border-radius: 0.8rem; transition: background 0.2s; letter-spacing: 0.05em; border-bottom: 0.5px solid rgba(255,255,255,0.05); }
.drawer-links a:hover { background: rgba(255,255,255,0.06); color: var(--jupiter-light); }
.drawer-social-row { display: flex; gap: 10px; justify-content: center; padding: 0.75rem 0; flex-shrink: 0; }
.drawer-social { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; text-decoration: none; transition: background 0.2s; }
.drawer-social:hover { background: rgba(200,146,42,0.2); }
.drawer-cta { display: block; background: var(--jupiter); color: var(--ink); text-align: center; padding: 13px; border-radius: 10px; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; flex-shrink: 0; transition: background 0.2s; }
.drawer-cta:hover { background: var(--jupiter-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; position: fixed; flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; width: 100%; background: rgba(250, 246, 238, 0.98); padding: 1rem 0 1.5rem; gap: 0.5rem; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 0.5rem 0; }
  .versus-grid { grid-template-columns: 1fr; gap: 2rem; }
  .versus-divider { flex-direction: row; padding: 1rem 0; }
  .vs-line { width: 100px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #hero { padding: 2rem 2rem 4rem; min-height: 100vh; }
  .dog-card { padding: 1.5rem; }
}

@media (max-width: 600px) {
  section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .dog-name { font-size: 1.8rem; }
  .hero-title { font-size: clamp(1.8rem, 10vw, 2.5rem); }
  .hero-tagline { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .filter-group { gap: 0.4rem; flex-wrap: nowrap; justify-content: center; }
  .filter-btn { padding: 0.5rem 0.7rem; font-size: 0.72rem; letter-spacing: 0.03em; }
  .hero-dog-img { width: 130px; height: 130px; }
  .hero-logo { margin-top: 0; gap: 0.75rem; margin-bottom: 1rem; }
  #hero { padding: 5rem 1rem 4rem; min-height: auto; justify-content: flex-start; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-body { padding: 0.6rem; }
  .product-name { font-size: 0.78rem; line-height: 1.2; }
  .product-review { font-size: 0.7rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .product-recommended { font-size: 0.62rem; padding: 0.2rem 0.5rem; }
  .product-stars { font-size: 0.75rem; margin-bottom: 0.5rem; }
  .amazon-btn { font-size: 0.72rem; padding: 0.5rem 0.5rem; }
}
