:root {
    --mobile: 768px;
    --tablet: 1024px;

    --bg: #000;
    --text: #fff;
    --border: #fff;
    --radius: 8px;
}


html, body {
    height: 100%;
    margin: 0;
    background: black;
    
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content {
    flex: 1;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    font-size: 14px;
    color: #777;
}

.footer-left {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
}

.ig {
    width: 20px;
    height: auto;
    cursor: pointer;
    filter: invert(1);
}

.ig:hover {
    opacity: 0.7;
}

/* Header */

.header {
    width: 100%;
    height: 70px; /* THIS is the key */
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 15000;
    overflow: hidden;

    transition: all 0.4s ease;
}

.header.scrolled {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.logo {
    display: block;
    align-items: center;
    width: 400px;
    height: 200px;
    margin-top: -35px;
    margin-right: -20px;
}

.logo-fixed {
    position: fixed;
    left: 51%;
    top: -92px;

    
    transform: translateX(-50%);

    width: 400px;
    height: auto;

    opacity: 0;

    filter: invert(1);

    transition: opacity 0.10s ease, top 0.2s ease;
    z-index: 9999;
}

.container {
    position: fixed;
    left: 49%;
    top: 10px;
    transform: translateX(-50%);

    width: 170px;
    height: 60px; /* IMPORTANT: must have height */

    cursor: pointer;

    opacity: 1;

    z-index: 20000; /* must be ABOVE logo */
    
}


.logo-fixed.visible {
    opacity: 1;
    visibility: visible;
    filter: invert(1);
    
}

.hamburger {
    position: fixed;
    left: 15px;
    margin-top: -10px;
    width: 30px;
    height: auto;
    cursor: pointer;
    pointer-events: auto;
    z-index: 20000;
}

.hamburger-fixed {
    position: fixed;
    left: 15px;
    top: -80px; /* match logo behavior (hidden off-screen) */
    margin-top: 10px;

    width: 30px;
    height: auto;
    cursor: pointer;

    opacity: 0;

    filter: invert(1);

    transition: opacity 0.2s ease, top 0.2s ease;

    z-index: 9999;

}

.hamburger-fixed.visible {
    opacity: 1;
    pointer-events: auto;
    top: 20px; /* slides into same “fixed header zone” */
    filter: invert(1);
}

.cart {
    position: fixed;
    margin-top: -10px;
    right: 15px;
    width: 30px;
    height: auto;
    cursor: pointer;
    pointer-events: auto;
    z-index: 20000;
}

.cart-fixed {
    position: fixed;
    right: 15px;        /* opposite side of hamburger */
    top: -80px;         /* hidden above like others */
    margin-top: 10px;

    width: 30px;
    height: 30px;

    opacity: 0;
    pointer-events: none;

    cursor: pointer;
    filter: invert(1);

    transition: opacity 0.2s ease, top 0.2s ease;

    z-index: 9999;
}

.cart-fixed.visible {
    opacity: 1;
    pointer-events: auto;
    top: 20px;
}

/* Menu */

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;   /* hidden off-screen */
    width: 250px;
    height: 100%;
    background: white;
    padding-top: 60px;

    display: flex;
    flex-direction: column;

    transition: left 0.3s ease;
    z-index: 25000;
}

.side-menu a {
    color: black;
    padding: 15px 20px;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
}


.side-menu.open {
    left: 0;
}

.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    padding: 0px 0;
    color: white;
    cursor: pointer;

    font-size: 16px;
}

/* make arrow visible */
.arrow {
    margin-left: auto;
    padding-right: 45px;
    font-size: 25px;
    color: #000;
}



/* dropdown items */
.dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 25px;
}

.dropdown-content a {
    padding: 10px 0;
    color: #000000;
    text-decoration: none;
}

.dropdown.open .dropdown-content {
    display: flex;
}


/* Menu Overlay */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
    z-index: 20000; /* must be ABOVE logo */
}

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

/* Main Image */

.crop-box-about {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
    .crop-box-about {
        aspect-ratio: auto;
        min-height: 100vh;
    }
}

.crop-box-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 96%;
    transform: scale(1.1);
    animation: heroZoomOut 1s ease-out forwards;
}



/* Main Image */

.crop-box-home {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.crop-box-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 48%;

    transform: scale(1.1);
    animation: heroZoomOut 1s ease-out forwards;
}

@media (max-width: 768px) and (hover: none) and (pointer: coarse) {
    .crop-box-home img {
        object-position: 50% 30%;
    }
}

/* Shop */

.crop-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.crop-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;

    transform: scale(1.1);
    animation: heroZoomOut 1s ease-out forwards;
}

.crop-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    padding-top: 40px;
}

.crop-overlay h1 {
    color: #fff;
    font-size: clamp(5rem, 10vw, 15rem);
    font-weight: 700;
    letter-spacing: 0.4em;
    transform: translateX(2%);
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@media (hover: none) and (pointer: coarse) {
    .crop-overlay h1 {
        font-size: 2.5rem;
        letter-spacing: 0.4em;
    }
}


@keyframes heroZoomOut {
    0% {
        transform: scale(1.1);
    }

    65% {
        transform: scale(1.1); /* pause */
    }

    100% {
        transform: scale(1);
    }
}

/* Image Row - Home Page */

.crop-row {
    display: flex;
    gap: 0px;
    margin-top: 0px;
    width: 100%;
}

.crop-row .crop-box-small {
    width: calc(33.333%);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.crop-row .crop-box-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.overlay_box {
    display: flex;
    flex-direction: column;
}

.crop-box-small .overlay_box {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: opacity 0.3s ease;

    z-index: 2;
}

.crop-box-small:hover .overlay_box {
    opacity: 1;
}

.crop-box-small:hover img {
    transform: scale(1.05);
}

.overlay_box span {
    display: block;
    margin-bottom: 5px;
    color: white;
    padding: 0px;
    font-size: clamp(18px, 2vw, 30px);
}

/* Main Video - Home Page */

.crop-box-video1 {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.crop-box-video1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 55%;
}

/* About Page */

.about-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);
    color: white;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 20px;
}

.about-text {
    transform: translateY(-6vh);
}

@media (max-width: 768px) {
    .about-text {
        padding-top: 170px;
    }
}


.about-text h2 {
    font-size: clamp(20px, 3vw, 38px);
    margin-bottom: 10px;
}

.about-text p {
    font-size: clamp(16px, 1.5vw, 30px);
    line-height: 2;
}

/* Shop Now Page / Men Page / Women Page */

.products {
    padding: 0 0px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
    gap: 2px;

    justify-content: left;
    width: 100%;
}

@media (hover: none) and (pointer: coarse) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

.product-grid .product-card {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.product-grid .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card .overlay_box {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: opacity 0.3s ease;

    z-index: 2;
}

.product-card:hover .overlay_box {
    opacity: 1;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 24px);
}

.product-toggle-2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(10px, 2vw, 24px);
}

.product-toggle .tab {
    background: black;
    color: white;
    border: 1px solid black;

    padding: clamp(6px, 1.2vw, 10px) clamp(14px, 2.5vw, 22px);
    font-size: clamp(12px, 1.2vw, 16px);

    cursor: pointer;
    transition: all 0.2s ease;

    white-space: nowrap;
}

.product-toggle .tab.active {
    background: white;
    color: black;
}

.men-tab {
    background: black;
    color: white;
    border: 1px solid black;
    padding: clamp(6px, 1.2vw, 10px) clamp(14px, 2.5vw, 22px);
    font-size: clamp(12px, 1.2vw, 16px);
    cursor: pointer;
}

.women-tab {
    background: black;
    color: white;
    border: 1px solid black;
    padding: clamp(6px, 1.2vw, 10px) clamp(14px, 2.5vw, 22px);
    font-size: clamp(12px, 1.2vw, 16px);
    cursor: pointer;
}

.men-tab.active {
    background: white;
    color: black;
}

.women-tab.active {
    background: white;
    color: black;
}

/* Product */

.crop-box-2 {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.crop-box-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 45%;
    transform: scale(1.3);
    animation: productZoomOut 1s ease-out forwards;
}

@keyframes productZoomOut {
    0% {
        transform: scale(1.3);
    }

    65% {
        transform: scale(1.3); /* pause */
    }

    100% {
        transform: scale(1);
    }
}

.product-description {
    margin: auto;
    padding: 0 20px;
    text-align: left;
}

.product-description h3 {
    font-size: clamp(20px, 1.2vw, 30px);
    margin-bottom: 10px;
    font-weight: 200;
    color: #ffffff;
}

.product-description .price {
    margin-top: 15px;
    font-size: clamp(20px, 1.5vw, 28px);
    font-weight: 500;
    color: #ffffff;
}

.description-dropdown {
    margin-top: 20px;
    border-top: 1px solid #fff;
    padding-top: 15px;
}

.description-dropdown summary {
    cursor: pointer;
    font-size: clamp(18px, 1.5vw, 30px);
    font-weight: 400;
    list-style: none;
    color: #fff;
}

.description-dropdown summary::-webkit-details-marker {
    display: none;
}

.description-dropdown summary::after {
    content: "+";
    float: right;
    color: #fff;
}

.description-dropdown[open] summary::after {
    content: "−";
}

.description-dropdown p {
    margin-top: 15px;
    font-size: clamp(15px, 1.5vw, 25px);
    line-height: 1.6;
    color: #fff;
}

.size-selector {
    margin-bottom: 5px 0;
}

.size-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
}

.size-selector label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-selector label:hover {
    background: #fff;
    color: #000;
}

.size-selector input:checked + label {
    background: #fff;
    color: #000;
}

.color-selector {
    margin-top: 6px;
}

.color-title {
    margin-bottom: 12px;
    font-weight: 600;
}

.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    margin-right: 12px;

    /* permanent white ring */
    border: 2px solid #fff;

    transition: all 0.2s ease;
    position: relative;
}

.orange {
    background: #ff6600;
}

.pink {
    background: #ff0080;
}

.green {
    background: #27d400;
}

/* Hover effect */
.color-circle:hover {
    transform: scale(1.08);
}

/* Selected state */
input[name="color"]:checked + .color-circle {
    border: 3px solid #fff;
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 4px #000;
    transform: scale(1.08);
}

.add-to-cart-btn {
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    background: #fff;
    color: #000;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #ddd;
}


.cart-layout {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 100px;
    padding: 0 40px;
}

#cart-items {
    flex: 1;
    max-width: 600px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {

    .cart-layout {
        flex-direction: column;
        padding: 20px;
        gap: 25px;
    }

    .order-summary {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    #cart-items {
        max-width: 100%;
    }
}

.cart-details {
    flex: 1;
}

.cart-item img {
    width: 150px;
    height: auto;
    object-fit: cover;
}

.cart-details h3 {
    color: white;
    margin-bottom: 10px;
}

.cart-details p {
    color: white;
    margin: 5px 0;
}

.cart-details button {
    margin-top: 10px;
    padding: 10px 15px;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
}

.order-summary {
    width: 350px;
    max-width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 25px;
    color: white;
    height: fit-content;
    box-sizing: border-box;
}

.order-summary h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 400;
}

.order-number {
    color: #888;
    margin-bottom: 25px;
    font-size: 14px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.total {
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
}

.order-summary hr {
    border: none;
    border-top: 1px solid #333;
    margin: 20px 0;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

#paypal-container {
    width: 100%;
    max-width: 400px;
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    #paypal-container {
        width: 100%;
        max-width: 100%;
    }
}

.quantity-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.quantity-box button {
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid #444;
    color: white;
    cursor: pointer;
}

.quantity-box span {
    min-width: 20px;
    text-align: center;
    color: white;
}

.cart-popup {
    position: fixed;
    top: 80px; /* under header/cart */
    right: 20px;
    width: 260px;
    background: #111;
    color: #fff;
    border: 1px solid #333;
    padding: 15px;
    display: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cart-popup-content {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cart-popup img {
    width: 60px;
    height: 80px;
    object-fit: cover;
}

.cart-popup-info p {
    margin: 0;
    font-size: 14px;
}

.cart-popup-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.popup-btn {
    flex: 1;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.popup-btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.waitlist-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    gap: 15px;
    color: #ddd;
}

.waitlist-section input {
    width: min(90vw, 600px);
    min-width: 240px;

    padding: 14px 16px;
    font-size: 16px;

    border: 1px solid #fff;
    border-radius: 8px;

    background: transparent;
    color: #fff;

    outline: none;
}

.waitlist-section button {
    padding: 12px 22px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;

    font-size: 16px;
    transition: all 0.2s ease;
}

.waitlist-message {
    margin-top: 10px;
    font-size: 14px;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    gap: 15px;
    color: #ddd;
}

.contact-section input,
.contact-section textarea {
    width: min(90vw, 600px);
    min-width: 240px;

    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;

    border: 1px solid #fff;
    border-radius: 8px;

    background: transparent;
    color: #fff;

    outline: none;
    box-sizing: border-box;
}

.contact-section textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.contact-section button {
    padding: 12px 22px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;

    font-size: 16px;
    transition: all 0.2s ease;
}

.contact-section button:hover {
    background: rgba(255, 255, 255, 0.1);
}