:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --muted-color: #888888;
    --font-main: 'Inter', sans-serif;
    --border-color: #111111;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    zoom: 0.8; /* This zooms out the whole page to 80% as requested */
}

/* Navigation */
header {
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-color);
}

.eagle-logo {
    width: 90px;
    height: 90px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 0.5;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
    stroke: white;
    fill: none;
    transition: transform 0.3s;
}

.nav-icons svg:hover {
    transform: translateY(-2px);
}

/* Auth UI */
.nav-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #3d1f00; /* Matching the screenshot's 'K' avatar color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.profile-popover {
    position: fixed;
    top: 80px;
    right: 5%;
    background: white;
    color: black;
    width: 320px;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s var(--transition);
}

.profile-popover.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popover-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.user-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.user-info p {
    font-size: 0.85rem;
    color: #666;
}

.close-popover {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.popover-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.popover-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.popover-btn:hover {
    background: #f9f9f9;
}

.popover-btn svg {
    width: 20px;
    height: 20px;
    stroke: black;
}

.sign-out-link {
    width: 100%;
    background: none;
    border: none;
    color: #ff4444;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    padding: 0.5rem 0;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Search UI */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2500;
    display: flex;
    flex-direction: column;
    padding: 2rem 5%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.search-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 4rem;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    border-bottom: 2px solid #222;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.search-input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    font-family: inherit;
    text-transform: uppercase;
    outline: none;
}

.search-suggestions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: white;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background 0.3s;
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.suggestion-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.suggestion-item .info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.suggestion-item .info p {
    font-size: 0.8rem;
    color: var(--muted-color);
}

/* Common UI Components */
.cta-pill {
    background: white;
    color: black;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s, background 0.3s;
}

.cta-pill:hover {
    transform: scale(1.03);
    background: #eeeeee;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Sections */
.hero, .about-hero, .contact-hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('background.jpeg') center/cover no-repeat;
}

.tagline {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--muted-color);
    margin-bottom: 1.5rem;
    display: block;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

/* Products Section */
.products {
    padding: 10rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 5rem;
    text-align: left;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--muted-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem 2rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-container {
    position: relative;
    aspect-ratio: 3/4;
    background-color: #0a0a0a;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s var(--transition), transform 0.8s var(--transition);
}

.product-image-container img.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-image-container img.main-img {
    opacity: 0;
}

.product-card:hover .product-image-container img.hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    color: black;
    padding: 5px 15px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 1px;
}

.product-info h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

/* Recently Bought Badge */
.bought-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    color: #ff3e3e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: hot-pulse 2s infinite;
}

@keyframes hot-pulse {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.7; transform: scale(1); }
}

.fire-emoji {
    font-size: 0.9rem;
}

.price {
    font-size: 0.9rem;
    display: flex;
    gap: 12px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.price .old-price {
    color: #444;
    text-decoration: line-through;
}

.add-to-bin-btn {
    background: transparent;
    border: 1px solid #333;
    color: white;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
    width: 100%;
}

.add-to-bin-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Product Detail Page Styling */
.product-detail {
    padding: 15rem 5% 10rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-main-image {
    aspect-ratio: 3/4;
    background: #0a0a0a;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-meta h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1;
}

.product-meta .detail-price {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.product-description {
    color: var(--muted-color);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.8;
}

.product-options {
    margin-bottom: 4rem;
}

.option-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--muted-color);
    font-weight: 700;
}

.size-grid {
    display: flex;
    gap: 1rem;
}

.size-btn {
    width: 60px;
    height: 60px;
    border: 1px solid #222;
    background: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s var(--transition);
}

.size-btn:hover, .size-btn.active {
    border-color: white;
    background: white;
    color: black;
}

/* Out of Stock Styling */
.size-btn.out-of-stock {
    color: #444;
    border-color: #111;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.size-btn.out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 1px;
    background: #444;
    transform: rotate(-45deg);
}

/* Measurements Table Styling */
.size-guide {
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.measurements-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.measurements-table th {
    text-align: left;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted-color);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.measurements-table td {
    padding: 1rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
    color: #ccc;
}

.measurements-table tr:last-child td {
    border-bottom: none;
}

.measurements-table td:first-child {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.measurements-table tr.dimmed td {
    color: #333;
}

.measurements-table tr.highlight td {
    color: white;
    background: rgba(255,255,255,0.05);
}

/* About Content */
.about-content, .contact-content {
    padding: 4rem 5% 10rem;
}

.editorial-row {
    display: flex;
    align-items: center;
    gap: 10%;
    margin-bottom: 15rem;
}

.editorial-row.reverse { flex-direction: row-reverse; }

.editorial-text { flex: 1; }

.section-number {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--muted-color);
    letter-spacing: 2px;
}

.editorial-text h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.editorial-text p {
    font-size: 1.1rem;
    color: var(--muted-color);
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.editorial-image {
    flex: 1.2;
    aspect-ratio: 4/5;
    background: #0a0a0a;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 1s var(--transition);
}

.editorial-image:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.values-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
    margin-top: 10rem;
    padding-top: 8rem;
    border-top: 1px solid var(--border-color);
}

.value-card h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.value-card p {
    color: var(--muted-color);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Orders Page Styling */
.orders-page {
    padding: 12rem 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.order-card {
    background: #111;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.order-card:hover {
    transform: translateY(-5px);
}

.order-status-badge {
    background: #222;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.order-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #000;
    margin-bottom: 1.5rem;
}

.order-card-info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.order-card-info p {
    color: #888;
    font-size: 0.8rem;
}

/* Contact Grid */
.contact-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10rem;
}

.contact-method { margin-bottom: 4rem; }
.contact-method .label {
    display: block;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--muted-color);
    margin-bottom: 1rem;
}
.contact-method p { font-size: 1.5rem; font-weight: 400; }

.form-intro {
    font-size: 1.2rem;
    color: var(--muted-color);
    margin-bottom: 5rem;
    max-width: 500px;
}

#editorial-contact-form {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.input-row { display: flex; gap: 3rem; }
.field { flex: 1; }

#editorial-contact-form input, 
#editorial-contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #222;
    color: white;
    padding: 1.5rem 0;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#editorial-contact-form input:focus, 
#editorial-contact-form textarea:focus {
    outline: none;
    border-color: white;
}

/* Bin Drawer Styling */
.bin-drawer {
    position: fixed;
    right: -100%;
    top: 0;
    width: 450px;
    height: 100vh;
    background: #000;
    z-index: 2000;
    transition: right var(--transition);
    display: flex;
    flex-direction: column;
    padding: 3rem;
    border-left: 1px solid var(--border-color);
}

.bin-drawer.active { right: 0; }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

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

.bin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.bin-header h2 { font-weight: 700; text-transform: uppercase; font-size: 1.2rem; letter-spacing: 2px; }

.bin-item {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.remove-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.65rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-btn:hover { color: white; }

.bin-footer { margin-top: auto; padding-top: 2rem; }

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: white;
    color: black;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
}

/* Mission Section Styles */
.brand-mission {
    padding: 10rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.mission-content {
    display: flex;
    gap: 8rem;
    align-items: flex-start;
    margin-bottom: 8rem;
}

.mission-header {
    flex: 1;
}

.mission-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-weight: 800;
}

.mission-description {
    flex: 1;
}

.mission-description p {
    font-size: 1.1rem;
    color: var(--muted-color);
    margin-bottom: 1.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.badge svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 1.5;
}

.badge span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-color);
}

/* Site Footer */
.site-footer {
    padding: 6rem 5% 3rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.5;
}

.footer-newsletter {
    flex: 0 1 500px;
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    background: #111;
    border: 1px solid #222;
    color: white;
    padding: 1rem 1.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form button {
    background: transparent;
    border: 1px solid #222;
    border-left: none;
    color: white;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.newsletter-form button:hover {
    background: white;
    color: black;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted-color);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 3rem;
    border-top: 1px solid #111;
}

.footer-bottom .policies a {
    color: var(--muted-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom .policies a:hover {
    color: white;
}

.footer-links {
    position: relative;
}

.footer-links > a {
    color: var(--muted-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links > a:hover {
    color: white;
}

/* Footer Dropdown */
.footer-links {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #000;
    border: 1px solid var(--border-color);
    list-style: none;
    padding: 1rem 0;
    min-width: 180px;
    z-index: 100;
    margin-bottom: 10px;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--muted-color) !important;
    font-size: 0.65rem !important;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.dropdown-content li a:hover {
    background: #111;
    color: white !important;
}

.footer-links:hover .dropdown-content {
    display: block;
}

@media (max-width: 1024px) {
    .editorial-row, .editorial-row.reverse { flex-direction: column; gap: 4rem; margin-bottom: 10rem; }
    .contact-editorial-grid { grid-template-columns: 1fr; gap: 6rem; }
    .values-section { grid-template-columns: 1fr; gap: 4rem; }
    
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: black;
        justify-content: center;
        align-items: center;
        transform: none;
        left: auto;
        transition: var(--transition);
        z-index: 1500;
        gap: 3rem;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    .product-detail-grid { grid-template-columns: 1fr; gap: 5rem; }

    .mission-content {
        flex-direction: column;
        gap: 3rem;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 4rem;
    }

    .footer-newsletter {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bin-drawer { width: 100%; }
    .input-row { flex-direction: column; gap: 4rem; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

#address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 12px;
    margin-top: 8px;
    z-index: 99999;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.address-suggestion-item {
    padding: 14px 16px;
    color: white;
    cursor: pointer;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.85rem;
}

.address-suggestion-item:hover {
    background: #1a1a1a;
}


