@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

:root {
    --primary: #000000;      /* Black */
    --accent: #000000;       /* Black */
    --bg: #ffffff;           /* White */
    --text: #000000;         /* Black */
    --white: #ffffff;
    --sand: #ffffff;         /* White */
    --wave: #000000;         /* Black */
    --foam: #000000;         /* Black */
    --sun: #ffffff;          /* White */
}

/* --- SHOP PAGE STYLES --- */
body {
    background: #f8f9fb;
    margin: 0;
    padding: 0;
}

.shop-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #ececec;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

.shop-title {
    font-size: 2.7rem;
    font-weight: 900;
    color: #181818;
    margin-bottom: 0.75rem;
    letter-spacing: 1.5px;
    text-align: center;
    max-width: 90%;
}

.shop-description {
    font-size: 1.18rem;
    color: #444;
    margin-bottom: 1.8rem;
    text-align: center;
    max-width: 600px;
}

.shop-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.shop-actions .cta-btn {
    background: #181818;
    color: #fff;
    padding: 0.75rem 2.2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.shop-actions .cta-btn.alt {
    background: #ff6600;
}

.shop-actions .cta-btn:hover, .shop-actions .cta-btn:focus {
    background: #ff6600;
    color: #fff;
    transform: scale(1.08);
}

.shop-section {
    margin: 3rem auto 2rem auto;
    max-width: 1200px;
    padding: 0 2rem;
    box-sizing: border-box;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 1.8rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 350px;
    max-height: 380px;
}

.product-card:hover, .product-card:focus-within {
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
    transform: translateY(-6px) scale(1.05);
}

.product-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    border-radius: 0.8rem;
    background: #f7f7f7;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 1rem auto;
    border-radius: 0.8rem;
    background: #f7f7f7;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.5rem 0 0.3rem 0;
    color: #111;
    text-align: center;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    gap: 0.6rem;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.add-cart-btn {
    background: #181818;
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.add-cart-btn:hover, .add-cart-btn:focus {
    background: #ff6600;
    color: #fff;
    transform: scale(1.1);
    outline: none;
}

.product-card .product-actions {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0.9rem;
}

.product-card .product-actions .view-btn {
    background: #fff;
    color: #181818;
    border: 1.5px solid #ececec;
    border-radius: 2rem;
    padding: 0.4rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.product-card .product-actions .view-btn:hover {
    background: #ff6600;
    color: #fff;
    border: 1.5px solid #ff6600;
}

.shop-filters {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.brand-link {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.brand-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-link:hover .brand-logo {
    filter: grayscale(0%);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    .product-card {
        min-height: 320px;
        max-height: none;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .product-img {
        width: 90px;
        height: 90px;
    }
    .brand-logo {
        width: 50px;
    }
}

@media (max-width: 600px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    .product-card {
        min-height: 300px;
        padding: 1.2rem 0.8rem 0.8rem 0.8rem;
    }
    .product-img {
        width: 80px;
        height: 80px;
    }
    .brand-logo {
        width: 40px;
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.8rem;
    }
    .product-card {
        min-height: 400px;
        max-height: none;
        padding: 1.8rem 1.2rem 1.2rem 1.2rem;
    }
    .product-img {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 600px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
    }
    .product-card {
        min-height: 380px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .product-img {
        width: 100px;
        height: 100px;
    }
}

/* --- GLASSY NAVBAR --- */
.hero-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between; /* changed from flex-start */
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.1);
    backdrop-filter: blur(18px) saturate(1);
    -webkit-backdrop-filter: blur(18px) saturate(1);
    z-index: 100;
    padding: 1.2rem 3vw 1.2rem 3vw; /* equal left and right padding */
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: padding 0.3s, background 0.3s;
}

.hero-nav .logo {
    font-size: 2.3rem;
    font-weight: 900;
    color: #000000;
    letter-spacing: 2.5px;
    text-shadow: none;
    margin-right: 3vw;
    font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
    text-transform: uppercase;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000000;
    background-clip: unset;
    transition: font-size 0.3s, padding 0.3s;
}

.hero-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    margin-right: 5vw; /* equal right margin */
    padding: 0;
    align-items: center;
    justify-content: flex-end;
}

.hero-nav li {
    display: flex;
    align-items: center;
}

.hero-nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.7rem 2.1rem;
    border-radius: 2rem;
    background: rgba(255,255,255,0.9);
    box-shadow: none;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
    text-shadow: none;
    margin: 0;
    display: inline-block;
    position: relative;
    letter-spacing: 1px;
    padding: 0.7rem 1.1rem;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 0;
}

.hero-nav a:hover,
.hero-nav a:focus {
    background: #000000;
    color: #ffffff;
    box-shadow: none;
    transform: translateY(-2px) scale(1.05);
}

/* Shrinking navbar on scroll */
.hero-nav {
    transition: padding 0.3s, background 0.3s;
}
.hero-nav .logo {
    transition: font-size 0.3s, padding 0.3s;
}
.hero-nav a .nav-text {
    display: inline-block;
    transition: opacity 0.3s, width 0.3s;
    white-space: nowrap;
    overflow: hidden;
}
.hero-nav a i {
    font-size: 1.2em;
    margin-right: 0.7em;
    transition: font-size 0.3s, margin 0.3s;
    vertical-align: middle;
}

/* Shrunk state */
.hero-nav.shrunk {
    padding: 0.5rem 0 0.5rem 1vw;
    background: rgba(255,255,255,0.95);
}
.hero-nav.shrunk .logo {
    font-size: 1.3rem;
    padding: 0.1em 0;
}
.hero-nav.shrunk a .nav-text {
    opacity: 0;
    width: 0;
    margin: 0;
    pointer-events: none;
}
.hero-nav.shrunk a i {
    font-size: 1.3em;
    margin-right: 0;
}

/* --- HERO SECTION --- */
.hero {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 0;
    filter: brightness(0.5) blur(0.5px);
    pointer-events: none;
}

.hero-caption {
    position: relative;
    left: 4vw; /* Changed from 4vw to 0 */
    bottom: auto;
    z-index: 2;
    color: #ffffff;
    text-align: left;
    max-width: 48vw;
    width: fit-content;
    box-sizing: border-box;
    padding: 1.5rem 2rem;
    margin: 0 0 5vh 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.8);
}

.nav-menu.dropdown-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-caption {
        left: 0; /* Changed from 3vw to 0 */
        max-width: 90vw;
        padding: 1.2rem 1rem;
        border-radius: 1.2rem;
        margin-bottom: 3vh;
    }
}

@media (max-width: 600px) {
    .hero-caption {
        left: 2vw;
        max-width: 96vw;
        padding: 1rem 0.7rem;
        border-radius: 1rem;
        margin-bottom: 2vh;
    }
}

.hero-caption h1 {
    font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
    filter: none;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    animation: none;
}

.cta-btn {
    background: #000000;
    color: #ffffff;
    padding: 0.6rem 1.5rem; /* reduced padding */
    border: none;
    border-radius: 2rem;
    font-size: 1rem; /* reduced font size */
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 1px;
    text-shadow: none;
    animation: none;
    align-self: flex-start;
    display: inline-block;
}

.cta-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.07) rotate(-2deg);
    box-shadow: none;
}

/* --- FEATURES --- */
.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 0 4vw;
    flex-wrap: wrap;
}

.feature {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: none;
    text-align: center;
    min-width: 140px;
    flex: 1 1 140px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s;
}

.feature:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: none;
    background: #000000;
    color: #ffffff;
}

.feature span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
}

.feature h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.2);
}

/* --- BUBBLE BACKGROUND CANVAS --- */
#bubble-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes neonGlow {
    from { filter: drop-shadow(0 0 8px #000000cc); }
    to { filter: drop-shadow(0 0 32px #ffffffcc); }
}
@keyframes popBtn {
    from { opacity: 0; transform: scale(0.7);}
    to { opacity: 1; transform: scale(1);}
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-caption {
        left: 0; /* Changed from 3vw to 0 */
        max-width: 90vw;
        padding: 1.2rem 1rem;
        border-radius: 1.2rem;
        margin-bottom: 3vh;
    }
    .features {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    .feature {
        min-width: 120px;
        max-width: 140px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 700px) {
    .hero-caption {
        left: 0; /* Changed from 2vw to 0 */
        max-width: 96vw;
        padding: 1rem 0.7rem;
        border-radius: 1rem;
        margin-bottom: 2vh;
    }
    .hero-caption h1 {
        font-size: 2rem;
    }
    .cta-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    .features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    .feature {
        width: 90vw;
        max-width: 320px;
        padding: 1.5rem 2rem;
    }
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
.hero-main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Rotated text overlay on left edge of video */
.rotated-text-container {
    position: absolute;
    left: 10px;
    top: 620px; /* always below navbar */
    z-index: 0; /* changed from 1100 to 0 to go behind navbar */
    display: inline-block;
    pointer-events: auto; /* always interactive */
}

.rotated-text {
    transform: rotate(-90deg);
    transform-origin: left top;
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: 2px;
    border-radius: 0 0.7rem 0.7rem 0;
    white-space: nowrap;
    user-select: none;
    text-shadow: 0 0 6px rgba(0,0,0,0.9);
    cursor: pointer;
    position: relative;
}

.rotated-dropdown {
    display: none;
    position: absolute;
    top: -580%; /* Position below the rotated text */
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 1rem;
    border-radius: 0.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    font-size: 0.95rem;
    line-height: 1.4;
    z-index: 1100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    user-select: text;
}

.rotated-text-container:hover .rotated-dropdown {
    display: block;
    pointer-events: auto;
    opacity: 1;
}

section[aria-label="Newsletter Signup"] .graphic-card {
    margin-bottom: 3vw;
}

/* Newsletter subscription message styling */
#newsletter-msg {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Modal message styling */
#message-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0  ;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

#message-modal[aria-hidden="false"] {
    display: flex;
}

#message-modal .modal-content {
    background-color: #181818;
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 15px #ff6600;
    text-align: center;
    position: relative;
    font-weight: 700;
    font-size: 1.1rem;
}

#message-modal #modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.7rem;
    background: none;
    border: none;
    color: #ff6600;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: 900;
    transition: color 0.3s ease;
}

#message-modal #modal-close:hover,
#message-modal #modal-close:focus {
    color: #ffffff;
    outline: none;
}

/* Refined styles for graphic cards */
.graphics-section {
    margin: 7vh auto 0 auto;
    max-width: 1200px;
    display: flex;
    flex-wrap: nowrap;         /* Prevent wrapping to next line */
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
}

.graphic-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    padding: 2rem 2.5rem;
    min-width: 280px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.graphic-card:hover, .graphic-card:focus {
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transform: translateY(-8px) scale(1.05);
    outline: none;
}

.graphic-card img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    border-radius: 1rem;
    background: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.graphic-card h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0.5rem 0 0.5rem 0;
    color: #222222;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.graphic-card p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.graphic-card a {
    color: #007acc;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.graphic-card a:hover, .graphic-card a:focus {
    color: #005a9e;
    border-color: #005a9e;
    outline: none;
}

/* AI Dropdown styles */
#nav-menu li.dropdown {
            position: relative;
            padding: 10px 0;
        }
        #nav-menu li.dropdown > a {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: auto;
        }
        #nav-menu li.dropdown > a .fa-caret-down {
            font-size: 0.7rem;
            padding: auto;
        }
        #nav-menu li.dropdown ul.dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid #ccc;
            border-radius: 1.3rem;
            min-width: 180px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            z-index: 1000;
            padding: 0.5rem 0;
            
        }
        #nav-menu li.dropdown ul.dropdown-menu li {
            padding: 10px 1rem;
            border-radius: 50%;
        }
        #nav-menu li.dropdown ul.dropdown-menu li a {
            display: block;
            padding: 0.5rem 1rem;
            color: #181818;
            text-decoration: none;
            font-weight: 600;
        }
        #nav-menu li.dropdown ul.dropdown-menu li a:hover,
        #nav-menu li.dropdown ul.dropdown-menu li a:focus {
            background: #ff6600;
            color: white;
            border-radius: 0.9rem;
        }
        #nav-menu li.dropdown:hover > ul.dropdown-menu,
        #nav-menu li.dropdown:focus-within > ul.dropdown-menu {
            display: block;
        }