/* ---- QUICK GLOBAL SAFEGUARDS: paste at TOP of style.css ---- */
:root{box-sizing:border-box}
*{box-sizing:inherit}
html,body{
  width:100%;
  max-width:100vw;
  overflow-x:hidden !important; /* prevent horizontal scroll */
  -webkit-overflow-scrolling: touch;
  margin:0;padding:0;
}
img,video,picture,svg{max-width:100%;height:auto;display:block}
main,header,nav,section,footer,.page-wrapper{max-width:100vw;overflow-x:hidden}

/* Universal Resets and Defaults */
:root {
    --primary-color: #333; /* Dark/Black for text/accents */
    --secondary-color: #ff5722; /* Bright Orange/Accent */
    --background-color: #ffffff;
    --light-gray: #f4f4f4;
    --dark-gray: #1a1a1a;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.2);
    --font-inter: 'Inter', sans-serif;
}

/* Global Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-inter);
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden; /* Crucial for preventing horizontal scroll */
}

h1, h2, h3 {
    color: var(--dark-gray);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    color: orange;
}

a:hover {
    color: var(--secondary-color);
}

/* Helper for main content below fixed header */
main {
    padding-top: 5rem; /* Space for the fixed header */
    min-height: 80vh;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    text-transform: uppercase;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: var(--background-color);
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.4);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 30px;
}

.primary-btn:hover {
    background-color: #e64a19; /* Darker orange */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 87, 34, 0.6);
}

/* =========================
   NAVIGATION (Header/Menu)
   ========================= */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-logo {
    height: 70px;
    object-fit: contain;
    width: auto;
}

/* Mobile Menu Toggle */
.menu-toggle {
    font-size: 1.8rem;
    cursor: pointer;
    display: block; /* Show on mobile */
    margin-left: 1rem;
}

.nav-right {
    display: flex;
    align-items: center;
}

/* Navigation Links (Mobile Hidden by Default) */
#nav-links {
    list-style: none;
    position: fixed;
    top: 0;
    right: -300px; /* Hidden off-screen */
    width: 280px;
    height: 100vh;
    background: var(--dark-gray);
    color: var(--background-color);
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease-in-out;
    z-index: 1010;
    overflow-y: auto;
    display: flex; /* Ensure display is flex for vertical stacking */
}

#nav-links.open {
    transform: translateX(-100%); /* Slide in */
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 90;
}

#nav-links li {
    margin: 1rem 0;
    text-align: left;
    width: 100%;
}

#nav-links a {
    color: var(--light-gray);
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

#nav-links a:hover, #nav-links a.active {
    color: var(--secondary-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 2rem;
    align-self: flex-end;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1rem;
    display: block; /* Always show in the mobile menu */
}

/* Currency Switcher in Mobile Menu */
.currency-switch-li {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#currency-switcher {
    padding: 0.5rem;
    border-radius: 4px;
    background-color: var(--background-color);
    color: var(--dark-gray);
    border: 1px solid var(--secondary-color);
}


/* Cart Indicator */
#cart-indicator {
    cursor: pointer;
    position: relative;
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 0.5rem;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--background-color);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: none; /* Hidden by default, shown by JS */
    justify-content: center;
    align-items: center;
}

/* =========================
   CART SIDEBAR
   ========================= */

#cart-sidebar {
    position: fixed;
    top: 0;
    right: 0; /* Positioned at 0 but hidden by transform */
    width: 100%;
    max-width: 270px;
    height: 100%;
    background: var(--dark-gray);
    color: var(--background-color);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

#cart-sidebar.open {
    transform: translateX(0);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 1500;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-close-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 2rem;
    cursor: pointer;
}

.cart-body {
    flex-grow: 1;
    padding: 1.5rem;
}

#cart-items {
    list-style: none;
}

#cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.cart-item-name {
    flex-grow: 1;
}

.cart-item-price {
    font-weight: 600;
    margin-right: 1rem;
}

.cart-remove-btn {
    background-color: transparent;
    border: none;
    color: red;
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

#cart-total {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.checkout-btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}
.checkout-btn:hover {
    background-color: #e64a19;
}




.section-header {
    text-align: center;
    padding: 4rem 1rem 2rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 5%;
    min-width: 0;
}

.product-card {
    background: var(--background-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    width: 100%;
    min-width: 0;
    max-width: 350px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    justify-content: center;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 240px; /* Uniform height for shop cards */
    object-fit: cover;
    display:block;
    
}

.product-info {
    padding: 1.25rem;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    height: 40px; /* Fixed height for description */
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.add-to-cart-btn {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
}

/* =========================
   GALLERY GRID (Masonry-style replacement)
   ========================= */

.gallery-grid {
    /* Base: Simple stacking for small devices */
    display: block; 
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    margin-bottom: 20px;
    overflow: hidden; 
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* =========================
   ABOUT PAGE STYLING
   ========================= */

.about-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-size: 3rem;
    color: var(--secondary-color);
}

.brand-story {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.brand-story h2 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.founder-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: box-shadow 0.3s;
}

.founder-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.founder-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--secondary-color);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px rgba(255, 87, 34, 0.2); /* Outer glow effect */
}

.founder-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.founder-card p {
    color: #555;
}


/* =========================
   CONTACT PAGE STYLING
   ========================= */

.contact-container {
    padding: 4rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: var(--font-inter);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.whatsapp-submit {
    width: 100%;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.whatsapp-submit:hover {
    background-color: #128C7E; /* Darker Green */
}

.social-media {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.social-media h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.social-links a {
    font-size: 2rem;
    margin: 0 1rem;
    color: var(--primary-color);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}


/* =========================
   FOOTER
   ========================= */

footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 2rem 5%;
    text-align: center;
    margin-top: 4rem;
    font-size: 0.9rem;
    border-top: 5px solid var(--secondary-color);
}

footer p, footer .links a {
    margin: 0.5rem 0;
}

footer .links a {
    color: var(--light-gray);
    padding: 0 0.5rem;
}

footer .links a:hover {
    color: var(--secondary-color);
}

/* =========================
   COOKIE CONSENT BANNER (NEW)
   ========================= */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-gray);
    color: var(--light-gray);
    padding: 1rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.5s ease-out;
    text-align: center;
    justify-content: center;
}

.cookie-consent-banner p {
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1;
    justify-content: center;
    text-align: center;
}

.cookie-consent-banner a {
    color: var(--secondary-color);
    text-decoration: underline;
    margin-left: 0.5rem;
    justify-content: center;
    text-align: center;
}

.cookie-consent-banner button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 2rem;
    white-space: nowrap;
    display: inline-block;
}

.cookie-consent-banner button:hover {
    background-color: #e64a19;
}

/* =========================
   NOTIFICATION (General Pop-up)
   ========================= */
.notification {
    position: fixed;
    top: 70px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(100%);
    z-index: 4000;
}

.notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* =========================
   RESPONSIVE (Desktop Styles)
   ========================= */
@media (min-width: 769px) {

    /* NAVIGATION FIXES */
    .menu-toggle, .mobile-menu-close { 
        display: none !important; 
    }
    
    nav {
        padding: 1rem 8%;
    }

    #nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        transform: none;
        padding: 0;
        z-index: auto;
        overflow-y: visible;
        display: flex !important; /* Forces visibility on desktop */
    }

    #nav-links li {
        margin: 0 1.2rem;
        width: auto;
    }

    #nav-links a {
        color: var(--primary-color);
        font-size: 1rem;
    }

    #nav-links a:hover, #nav-links a.active {
        color: var(--secondary-color);
    }
    
    .currency-switch-li {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    /* SHOP PAGE */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        display: grid;
        gap: 2rem;
        padding: 2rem 8%;
    }
    
    /* GALLERY PAGE (New Professional Grid) */
    .gallery-grid {
        display: grid; 
        grid-template-columns: repeat(3, 1fr); /* Default 3 equal columns */
        gap: 20px; 
        padding: 4rem 5%;
    }

    .gallery-item {
        margin-bottom: 0; 
    }

    .gallery-item.span-2 {
        grid-column: span 2;
    }

    .gallery-item.span-row {
        grid-row: span 2;
        height: 100%; 
    }
    
    .gallery-item.span-row img {
        height: 100%;
        min-height: 400px;
    }
    
    /* ABOUT PAGE */
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* COOKIE BANNER */
    .cookie-consent-banner {
        padding: 1rem 8%;
        text-align: center;
        justify-content: center;
    }
}


/* ======================================================
   HOMEPAGE HERO + SECTION FIXES  — Paste at end of style.css
   Matches .hero, .hero-image, .hero-overlay, .hero-content
   Full-screen hero (100vh), responsive, on-brand accents
   ====================================================== */

:root {
    --nav-height: 70px; /* adjust if your nav is different */
}

/* Reset default button look across the site (keeps JS ids intact) */
button {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: inherit;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

/* HERO: full viewport, image covers, overlay for legibility */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--nav-height)); /* full screen minus nav */
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    color: #fff;
}

/* hero image: full bleed background */
.hero-image {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* semi-transparent overlay for contrast */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.35) 100%);
}

/* hero content container — left-aligned on desktop, centered on mobile */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    padding: 0 5%;
    margin-left: 6%;
    color: white;
}

/* title + subtitle */
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
    margin: 0 0 0.6rem 0;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-awards {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    margin-bottom: 1.25rem;
}

/* hero buttons (primary + secondary) */
.hero .buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero .buttons button {
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-transform: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* primary: outlined orange that fills on hover */
.hero .buttons button:first-child {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    transition: all 0.22s ease;
}
.hero .buttons button:first-child:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* secondary: subtle filled with lower contrast */
.hero .buttons button:last-child {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
}
.hero .buttons button:last-child:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px);
}

/* Make product section background white and spacing consistent */
.products {
    background: var(--background-color);
    padding: 4.5rem 5%;
}

.products h2 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    color: var(--dark-gray);
}

/* Product grid: keep existing product-card styles, just ensure grid uses consistent gap */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* If your product-card buttons are plain <button>, style them here so they look consistent */
.product-card button {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
}
.product-card button:hover {
    background: #e64a19;
    transform: translateY(-3px);
}

/* Custom order section: dark/premium look */
.custom-order-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    padding: 3.5rem 5%;
    align-items: center;
    background: #111; /* dark premium */
    color: #fff;
    text-align: center;
    justify-content: center;
}

.custom-order-content {
    max-width: 900px;
}

.custom-order-content h2 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: .6rem;
}

.custom-order-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

/* CTA button styles for custom order and award buttons */
.custom-cta-primary {
    background: var(--secondary-color);
    color: #fff;
    padding: 0.9rem 1.25rem;
    border-radius: 8px;
    border: none;
    font-weight: 700;
}
.custom-cta-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    margin-top: 1.25rem;
}

.about-cta-button {
  background: transparent;
    margin-top: 10px;
    border: 2px solid rgba(255, 215, 35, 0.986);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    margin-top: 1.75rem;
}

/* Award recognition card alignment */
.award-recognition {
    margin-top: 1.25rem;
    color: rgba(255,255,255,0.95);
}

/* About preview section light background to match shop/about pages */
.about-link-section {
    background: var(--background-color);
    padding: 3rem 5%;
    color: var(--primary-color);
    text-align: center;
}

/* Small utility: ensure nav doesn't overlap hero content on small screens */
@media (max-width: 768px) {
    :root { --nav-height: 64px; }

    .hero {
        height: calc(100vh - var(--nav-height));
        padding-top: 12px;
        justify-content: center;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 6%;
        text-align: center;
    }

    .hero .buttons {
        justify-content: center;
    }

    .custom-order-section {
        padding: 2.25rem 5%;
    }
}

/* Desktop layout: left aligned hero text with big sizing */
@media (min-width: 769px) {
    .hero-content {
        width: 60%;
    }

    .custom-order-section {
        grid-template-columns: 1fr 360px;
        gap: 2.5rem;
    }
}

/* little polish: fade-in on load for hero text (optional) */
.hero-content { 
    opacity: 0; 
    transform: translateY(8px); 
    transition: opacity .6s ease, transform .6s ease; 
}
.hero-content.visible { 
    opacity: 1; 
    transform: translateY(-50px); 
    margin-top: 300px;
}



/* Prevent accidental horizontal scrolling */
html, body {
    overflow-x: hidden;
}

/* Ensure hero image never exceeds screen width */
.hero,
.hero img,
.hero-image {
    max-width: 100%;
    width: 100%;
    display: block;
    overflow: hidden;
}

/* Prevent product grid from stretching wider than screen */
.product-grid {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Fix two-column section overflow on mobile */
@media (max-width: 768px) {
    .custom-order-section {
        display: block;
        padding: 1rem;
        width: 100% !important;
        box-sizing: border-box;
    }
}

/* Remove side-scroll caused by buttons or elements wider than container */
section, div, img, button {
    max-width: 100%;
}

.product-card a {
    display: block;
    /* You might need to set specific height/width or overflow rules here if things look really wrong */
}
.unique {
    text-align: center;
    font-weight: bold;
    
    transform: translateY(-50px); 
    transform: translateX(none);
    transform-style: smooth;
    
    
    transition-duration: 3s;
}