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

/* =========================
   GLOBAL
========================= */

body {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 90px;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #222;
}

.logo img {
    width: 170px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-left: auto;
}

.nav-links a,
.nav-right a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-right a:hover {
    opacity: 0.5;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 45px;
}

/* =========================
   WHITE PAGE NAVBARS
========================= */

body:has(.shop-page) .navbar,
body:has(.search-page) .navbar,
body:has(.product-page) .navbar,
body:has(.cart-page) .navbar,
body:has(.new-drop-page) .navbar,
body:has(.about-page) .navbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

body:has(.shop-page) .nav-links a,
body:has(.shop-page) .nav-right a,
body:has(.search-page) .nav-links a,
body:has(.search-page) .nav-right a,
body:has(.product-page) .nav-links a,
body:has(.product-page) .nav-right a,
body:has(.cart-page) .nav-links a,
body:has(.cart-page) .nav-right a,
body:has(.new-drop-page) .nav-links a,
body:has(.new-drop-page) .nav-right a,
body:has(.about-page) .nav-links a,
body:has(.about-page) .nav-right a {
    color: #000;
}

/* =========================
   HOME PAGE
========================= */

.hero {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-small {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(80px, 15vw, 220px);
    line-height: 0.78;
    letter-spacing: -8px;
    font-weight: 900;
}

.hero-subtitle {
    margin-top: 35px;
    font-size: 13px;
    letter-spacing: 5px;
}

.shop-button {
    margin-top: 35px;
    padding: 17px 30px;
    background: white;
    color: black;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.shop-button:hover {
    background: #ddd;
}

/* =========================
   SEARCH PAGE
========================= */

.search-page {
    background: #fff;
    color: #000;
    min-height: calc(100vh - 90px);
    padding: 140px 40px 60px;
    text-align: center;
}

.search-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.search-box input {
    width: 400px;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #000;
}

.search-box button {
    padding: 15px 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.search-results {
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
}

.product-result {
    text-align: left;
    color: #000;
    text-decoration: none;
}

.product-result img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-result h2 {
    font-size: 16px;
    margin: 12px 0 5px;
}

.product-result p {
    font-size: 15px;
}

/* =========================
   PRODUCT PAGE
========================= */

.product-page {
    background: #fff;
    color: #000;
    min-height: calc(100vh - 90px);
    padding: 130px 8%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.product-image-container {
    width: 100%;
    min-height: 650px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    width: 100%;
    height: 650px;
    object-fit: contain;
}

.product-info {
    padding-top: 50px;
    color: #000;
}

.product-info h1 {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#productPrice {
    font-size: 16px;
    color: #333;
    margin-bottom: 35px;
}

.product-description {
    color: #444;
    font-size: 14px;
    line-height: 1.7;
    max-width: 430px;
    margin-bottom: 40px;
}

.product-info label {
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

#size {
    width: 100%;
    max-width: 430px;
    height: 50px;
    padding: 0 15px;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#addToCart {
    width: 100%;
    max-width: 430px;
    height: 54px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
}

#addToCart:hover {
    opacity: 0.75;
}

/* =========================
   CART PAGE
========================= */

.cart-page {
    background: #fff;
    color: #000;
    min-height: calc(100vh - 90px);
    padding: 140px 8%;
}

.cart-page h1 {
    color: #000;
    font-size: 40px;
    margin-bottom: 50px;
}

.cart-item {
    display: flex;
    gap: 30px;
    padding: 25px 0;
    border-top: 1px solid #ddd;
}

.cart-item img {
    width: 160px;
    height: 200px;
    object-fit: cover;
}

.cart-item h2,
.cart-item p {
    color: #000;
}

.cart-item h2 {
    font-size: 20px;
    margin: 10px 0;
}

.cart-item button {
    padding: 10px 20px;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    cursor: pointer;
    margin-top: 15px;
}

/* QUANTITY */

.quantity-controls {
    display: inline-flex;
    align-items: center;
    height: 42px;
    border: 1px solid #000;
    margin-top: 18px;
    background: #fff;
}

.quantity-controls button {
    width: 42px;
    height: 42px;
    padding: 0;
    margin: 0;
    border: none;
    background: #fff;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls button:hover {
    background: #f3f3f3;
}

.quantity-controls span {
    width: 38px;
    text-align: center;
    color: #000;
    font-size: 13px;
}

.cart-total {
    color: #000;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    margin-top: 40px;
    padding-top: 25px;
}

#checkoutButton {
    width: 100%;
    padding: 18px;
    margin-top: 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.back-to-shop {
    color: #000;
    background: #fff;
    border: 1px solid #000;
}

/* =========================
   SHOP PAGE — LUXURY
========================= */

.shop-page {
    background: #fff;
    color: #000;
    min-height: calc(100vh - 90px);
    padding: 115px 45px 100px;
}

/* SHOP HEADER */

.shop-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 24px;
    margin-bottom: 35px;
}

.shop-header p {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    margin: 0;
}

.shop-header h1 {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -3px;
    line-height: 1;
    margin: 0;
}

/* PRODUCT GRID */

.shop-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 18px;
}

/* PRODUCT CARD */

.shop-product {
    display: block;
    color: #000;
    text-decoration: none;
}

/* IMAGE */

.shop-product img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    background: #f2f2f2;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.shop-product:hover img {
    transform: scale(1.025);
    opacity: 0.88;
}

/* PRODUCT NAME */

.shop-product h2 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.7px;
    margin: 16px 0 6px;
}

/* PRICE */

.shop-product p {
    font-size: 12px;
    color: #555;
    letter-spacing: 0.4px;
    margin: 0;
}

/* =========================
   NEW DROP
========================= */

.new-drop-page {
    background: #fff;
    color: #000;
    min-height: calc(100vh - 90px);
    padding: 130px 6% 80px;
}

.new-drop-header {
    text-align: center;
    margin-bottom: 70px;
}

.new-drop-header p {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.new-drop-header h1 {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.new-drop-header span {
    font-size: 11px;
    letter-spacing: 3px;
}

.new-drop-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.new-drop-product {
    color: #000;
    text-decoration: none;
}

.new-drop-product img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
    transition: opacity 0.25s ease;
}

.new-drop-product:hover img {
    opacity: 0.8;
}

.new-drop-product h2 {
    font-size: 16px;
    font-weight: 500;
    margin-top: 18px;
    margin-bottom: 7px;
}

.new-drop-product p {
    font-size: 14px;
    margin: 0;
}

/* =========================
   ABOUT
========================= */

.about-page {
    background: #fff;
    color: #000;
    min-height: calc(100vh - 90px);
}

.about-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero p {
    font-size: 11px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.about-hero h1 {
    font-size: clamp(80px, 15vw, 200px);
    line-height: 0.8;
    letter-spacing: -8px;
    font-weight: 900;
}

.about-content {
    border-top: 1px solid #ddd;
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.about-label {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 600;
}

.about-text {
    max-width: 650px;
}

.about-text p {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .navbar {
        padding: 0 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-right {
        gap: 15px;
        margin-left: 20px;
    }

    .shop-page {
        padding: 100px 25px 70px;
    }

    .shop-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 15px;
    }

    .shop-header h1 {
        font-size: 50px;
    }

    .product-page {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .new-drop-products {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .navbar {
        height: auto;
        min-height: 80px;
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .logo img {
        width: 140px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .nav-right {
        margin: 0;
    }

    .shop-page {
        padding: 80px 18px 60px;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .shop-header h1 {
        font-size: 45px;
    }

    .shop-products {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .search-box {
        flex-direction: column;
        align-items: center;
    }

    .search-box input {
        width: 100%;
        max-width: 400px;
    }

    .product-page {
        padding: 90px 20px 50px;
    }

    .product-image-container,
    .product-image-container img {
        min-height: 450px;
        height: 450px;
    }

    .cart-page {
        padding: 90px 20px 50px;
    }

    .cart-item img {
        width: 120px;
        height: 150px;
    }

    .new-drop-page {
        padding: 90px 20px 60px;
    }

    .new-drop-product img {
        height: 450px;
    }

    .about-content {
        padding: 60px 20px;
    }
}.shop-page {
    background: #ffffff !important;
    color: #000000 !important;
    min-height: 100vh !important;
    padding: 120px 50px !important;
}

.shop-header h1 {
    color: #000000 !important;
    font-size: 80px !important;
}

.shop-header p {
    color: #000000 !important;
}

.shop-products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

.shop-product {
    color: #000000 !important;
}

.shop-product img {
    width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
}body:has(.shop-page) {
    background: #fff;
    color: #000;
}

body:has(.shop-page) .navbar {
    width: 100%;
    height: 90px;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

body:has(.shop-page) .logo {
    display: block;
    flex-shrink: 0;
}

body:has(.shop-page) .logo img {
    width: 170px;
    height: auto;
    display: block;
}

body:has(.shop-page) .nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-left: auto;
}

body:has(.shop-page) .nav-links a,
body:has(.shop-page) .nav-right a {
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

body:has(.shop-page) .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 45px;
}

body:has(.shop-page) .shop-page {
    width: 100%;
    background: #fff;
    color: #000;
    min-height: calc(100vh - 90px);
    padding: 100px 45px;
}

body:has(.shop-page) .shop-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 25px;
    margin-bottom: 40px;
}

body:has(.shop-page) .shop-header p {
    color: #000;
    font-size: 10px;
    letter-spacing: 4px;
    margin: 0;
}

body:has(.shop-page) .shop-header h1 {
    color: #000;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -3px;
    margin: 0;
}

body:has(.shop-page) .shop-products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 18px;
}

body:has(.shop-page) .shop-product {
    display: block;
    color: #000;
    text-decoration: none;
}

body:has(.shop-page) .shop-product img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    background: #f2f2f2;
}

body:has(.shop-page) .shop-product h2 {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0 6px;
}

body:has(.shop-page) .shop-product p {
    color: #555;
    font-size: 12px;
    margin: 0;
}/* ===== SHOP FINAL OVERRIDE ===== */

body:has(.shop-page) {
    background: #ffffff;
    color: #000000;
}

body:has(.shop-page) .navbar {
    background: #ffffff;
    color: #000000;
    height: 90px;
    padding: 0 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

body:has(.shop-page) .logo {
    flex-shrink: 0;
}

body:has(.shop-page) .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 45px;
    margin-left: auto;
}

body:has(.shop-page) .nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-left: 45px;
}

body:has(.shop-page) .nav-links a,
body:has(.shop-page) .nav-right a {
    color: #000000;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
}

body:has(.shop-page) .shop-page {
    display: block;
    width: 100%;
    background: #ffffff;
    color: #000000;
    padding: 100px 45px 80px;
}

body:has(.shop-page) .shop-header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dddddd;
}

body:has(.shop-page) .shop-header p {
    margin: 0;
    color: #000000;
}

body:has(.shop-page) .shop-header h1 {
    margin: 0;
    color: #000000;
    font-size: 64px;
    font-weight: 500;
}

body:has(.shop-page) .shop-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    width: 100%;
}

body:has(.shop-page) .shop-product {
    display: block;
    color: #000000;
    text-decoration: none;
}

body:has(.shop-page) .shop-product img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #f3f3f3;
}

body:has(.shop-page) .shop-product h2 {
    color: #000000;
    margin: 15px 0 6px;
    font-size: 14px;
    font-weight: 500;
}

body:has(.shop-page) .shop-product p {
    color: #555555;
    margin: 0;
    font-size: 13px;
}/* =========================================
   STAYEXOTIC SHOP — CLEAN DESIGN
========================================= */

body:has(.shop-page) {
    background: #fff;
    color: #000;
}

/* SHOP NAVBAR */
body:has(.shop-page) .navbar {
    height: 90px;
    width: 100%;
    padding: 0 50px;
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    flex-wrap: nowrap;
}

/* LOGO */
body:has(.shop-page) .navbar .logo {
    display: block;
    width: 170px;
    flex-shrink: 0;
}

body:has(.shop-page) .navbar .logo img {
    width: 170px;
    height: auto;
    display: block;
}

/* CENTER NAV */
body:has(.shop-page) .navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    margin-right: 50px;
    flex-shrink: 0;
}

body:has(.shop-page) .navbar .nav-links a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* RIGHT NAV */
body:has(.shop-page) .navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    flex-shrink: 0;
}

body:has(.shop-page) .navbar .nav-right a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

/* SHOP AREA */
body:has(.shop-page) .shop-page {
    display: block;
    width: 100%;
    min-height: calc(100vh - 90px);
    padding: 90px 50px 100px;
    background: #fff;
}

/* SHOP TITLE */
body:has(.shop-page) .shop-header {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 45px;
    border-bottom: 1px solid #ddd;
}

body:has(.shop-page) .shop-header p {
    margin: 0;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

body:has(.shop-page) .shop-header h1 {
    margin: 0;
    color: #000;
    font-size: 58px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -2px;
}

/* PRODUCTS */
body:has(.shop-page) .shop-products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 18px;
}

body:has(.shop-page) .shop-product {
    display: block;
    color: #000;
    text-decoration: none;
}

body:has(.shop-page) .shop-product img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
    transition: opacity .25s ease;
}

body:has(.shop-page) .shop-product:hover img {
    opacity: .75;
}

body:has(.shop-page) .shop-product h2 {
    margin: 15px 0 6px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3px;
}

body:has(.shop-page) .shop-product p {
    margin: 0;
    color: #555;
    font-size: 13px;
}

/* MOBILE */
@media (max-width: 900px) {

    body:has(.shop-page) .navbar {
        padding: 0 25px;
    }

    body:has(.shop-page) .navbar .nav-links {
        gap: 20px;
        margin-right: 25px;
    }

    body:has(.shop-page) .navbar .nav-right {
        gap: 15px;
    }

    body:has(.shop-page) .shop-products {
        grid-template-columns: repeat(2, 1fr);
    }
}