/* --- GLOBAL RESET & FONTS --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif; 
    background: #fff; color: #111; line-height: 1.5;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: inherit; }

/* --- HEADER --- */
.site-header { 
    border-bottom: 1px solid #eee; padding: 20px 0; margin-bottom: 0; 
    position: sticky; top: 0; background: white; z-index: 100;
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; letter-spacing: 2px; font-weight: 900; margin:0; }
nav a { text-decoration: none; color: #111; margin-left: 25px; font-weight: 500; font-size: 14px; text-transform: uppercase; }
nav a:hover { opacity: 0.6; }

/* --- HERO BANNER --- */
.hero { 
    background: #f4f4f4; 
    height: 70vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    margin-bottom: 60px;
    /* Later you can add a background image here */
}
.hero-content h2 { font-size: 48px; letter-spacing: 1px; margin-bottom: 15px; }
.hero-content p { font-size: 18px; color: #555; margin-bottom: 30px; }
.btn-primary { 
    display: inline-block; 
    background: #111; 
    color: white; 
    padding: 15px 40px; 
    text-decoration: none; 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-primary:hover { background: #333; }

/* --- BRAND MESSAGE --- */
.brand-message { text-align: center; margin-bottom: 80px; max-width: 800px; }
.brand-message h3 { font-size: 24px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px;}
.brand-message p { font-size: 16px; color: #555; }

/* --- VIP VAULT SECTION --- */
.vip-vault { 
    background: #111; 
    color: white; 
    padding: 80px 0; 
    text-align: center; 
    margin-bottom: 0;
}
.vip-vault h3 { font-size: 28px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px;}
.vip-vault p { color: #ccc; max-width: 600px; margin: 0 auto 15px auto; }
.vip-subtext { font-weight: bold; color: white !important; margin-top: 30px !important; }

/* MailerLite Form Overrides (Makes it look like Wayve) */
.mailerlite-form-container { margin-top: 20px; }
.mailerlite-form-container form { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.mailerlite-form-container input[type="email"] { 
    padding: 15px; width: 300px; border: none; border-radius: 0; font-size: 16px; 
}
.mailerlite-form-container button { 
    padding: 15px 30px; background: white; color: #111; border: none; 
    font-weight: bold; text-transform: uppercase; cursor: pointer; font-size: 14px;
}
.mailerlite-form-container button:hover { background: #ddd; }

/* --- FOOTER --- */
.site-footer { background: #f9f9f9; padding: 60px 0 20px 0; border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { text-transform: uppercase; font-size: 14px; letter-spacing: 1px; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { text-decoration: none; color: #555; font-size: 14px; }
.footer-col a:hover { color: #111; }
.copyright { text-align: center; color: #999; font-size: 12px; border-top: 1px solid #eee; padding-top: 20px; }

/* --- SHOP PAGE (From earlier) --- */
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 30px; 
    margin-top: 40px;
    margin-bottom: 80px;
}
.product-card { text-align: center; }
.card-link { text-decoration: none; color: inherit; display: block; }
.image-container { 
    position: relative; overflow: hidden; background: #f4f4f4; 
    aspect-ratio: 3/4; margin-bottom: 15px;
}
.image-container img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: opacity 0.4s ease; position: absolute; top: 0; left: 0;
}
.hover-img { opacity: 0; }
.image-container:hover .hover-img { opacity: 1; }
.image-container:hover .main-img { opacity: 0; }
.badge { 
    position: absolute; top: 10px; left: 10px; 
    background: #111; color: #fff; padding: 4px 8px; font-size: 11px; font-weight: bold; 
    text-transform: uppercase; z-index: 2;
}
.title { font-size: 14px; font-weight: 500; margin-bottom: 5px; text-transform: uppercase; }
.price-row { font-size: 14px; }
.price.sale { color: #d9534f; margin-right: 8px; }
.compare-price { color: #999; text-decoration: line-through; font-size: 13px; }
/* --- COMPATIBILITY PATCH (older Safari/Chrome on your 2014 Mac) --- */
.image-container { aspect-ratio: auto; padding-top: 133.33%; }

/* --- PRODUCT DETAIL PAGE --- */
.product-container { display: flex; gap: 50px; flex-wrap: wrap; margin-top: 40px; margin-bottom: 80px; }
.product-gallery { flex: 1; min-width: 300px; max-width: 600px; }
.product-info { flex: 1; min-width: 300px; }
.main-image-wrapper { position: relative; padding-top: 133.33%; background: #f4f4f4; border-radius: 4px; overflow: hidden; }
.main-image-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.thumbnails { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.thumbnail { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; cursor: pointer; border: 2px solid transparent; opacity: .6; transition: .2s; }
.thumbnail:hover, .thumbnail.active { border-color: #111; opacity: 1; }
.product-vendor { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: #999; margin-bottom: 5px; }
#productName { font-size: 26px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.product-info .price { font-size: 20px; font-weight: bold; }
.product-description { color: #555; line-height: 1.7; margin: 20px 0; }
.btn-buy { display: block; text-align: center; background: #111; color: #fff; padding: 18px 30px; text-decoration: none; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: .3s; }
.btn-buy:hover { background: #333; }
.secure-note { font-size: 12px; color: #999; text-align: center; margin-top: 10px; }