/* =========================================================
   BÉNI CARMEL COLLECTIVES
   COMPLETE WEBSITE STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f5f0;
    color: #111;
    line-height: 1.5;
}

body.no-scroll {
    overflow: hidden;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --black: #111111;
    --white: #ffffff;
    --cream: #f7f5f0;
    --light: #ece9e2;
    --grey: #777777;
    --border: #d9d6cf;
    --dark-grey: #333333;
    --transition: 0.3s ease;
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement {
    width: 100%;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    width: 100%;
    height: 85px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 5000;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-left: auto;
    margin-right: 40px;
}

.desktop-nav a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: opacity var(--transition);
}

.desktop-nav a:hover {
    opacity: 0.5;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-actions button {
    position: relative;
    border: none;
    background: transparent;
    font-size: 19px;
    padding: 8px;
}

#cartCount {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 17px;
    height: 17px;
    padding: 2px 4px;
    border-radius: 50%;
    background: var(--black);
    color: white;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-button {
    display: none;
    font-size: 24px;
}


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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--cream);
    z-index: 10001;
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: left var(--transition);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.close-mobile {
    position: absolute;
    top: 25px;
    right: 25px;
    border: none;
    background: transparent;
    font-size: 30px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 720px;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.25)
        ),
        url("images/tee-1.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 7%;
    color: white;
}

.hero-content {
    max-width: 600px;
}

.eyebrow,
.small-heading {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(55px, 8vw, 110px);
    line-height: 0.88;
    letter-spacing: -4px;
    margin-bottom: 30px;
}

.hero-content > p:not(.eyebrow) {
    font-size: 17px;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    padding: 16px 28px;
    background: white;
    color: black;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all var(--transition);
}

.hero-button:hover {
    background: black;
    color: white;
}


/* =========================================================
   MARQUEE
========================================================= */

.marquee {
    width: 100%;
    overflow: hidden;
    background: var(--black);
    color: white;
    padding: 15px 0;
}

.marquee-inner {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.category-section {
    padding: 80px 5% 40px;
}

.category-title {
    text-align: center;
    margin-bottom: 35px;
}

.category-title p {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-title h2 {
    font-size: clamp(32px, 5vw, 55px);
    letter-spacing: -2px;
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.categories button {
    background: transparent;
    border: 1px solid var(--black);
    padding: 12px 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all var(--transition);
}

.categories button:hover,
.categories button.active {
    background: var(--black);
    color: white;
}


/* =========================================================
   SHOP SECTION
========================================================= */

.shop-section {
    padding: 50px 5% 100px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.section-heading h2 {
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
}

#productNumber {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid,
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 15px;
}

.product-card,
.shop-product {
    min-width: 0;
}

.product-image,
.shop-product-image {
    position: relative;
    overflow: hidden;
    background: #e8e5de;
    aspect-ratio: 3 / 4;
}

.product-image img,
.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img,
.shop-product:hover img {
    transform: scale(1.04);
}

.product-info,
.shop-product-info {
    padding: 14px 2px 0;
}

.product-info h3,
.shop-product-info h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-info p,
.shop-product-info p {
    color: var(--grey);
    font-size: 12px;
    margin-bottom: 8px;
}

.product-info strong,
.shop-product-info strong {
    font-size: 13px;
}

.product-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: white;
    padding: 6px 9px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.wishlist-product {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 19px;
}

.wishlist-product.active {
    background: var(--black);
    color: white;
}

.quick-add,
.shop-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    border: none;
    background: rgba(17, 17, 17, 0.95);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.product-card:hover .quick-add,
.shop-product:hover .shop-quick-add {
    transform: translateY(0);
}


/* =========================================================
   SHOP PAGE HEADER
========================================================= */

.shop-header {
    padding: 100px 5% 70px;
    background: var(--light);
}

.shop-header h1 {
    font-size: clamp(45px, 8vw, 90px);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.shop-intro {
    max-width: 600px;
    font-size: 16px;
    color: var(--dark-grey);
}


/* =========================================================
   SHOP CONTROLS
========================================================= */

.shop-controls {
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-button {
    border: 1px solid var(--black);
    background: transparent;
    padding: 10px 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.filter-button.active,
.filter-button:hover {
    background: var(--black);
    color: white;
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-sort label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.shop-sort select {
    padding: 10px;
    border: 1px solid var(--border);
    background: white;
    font-size: 10px;
}


/* =========================================================
   SHOP PRODUCTS
========================================================= */

.shop-products {
    padding: 50px 5% 100px;
}

.no-products {
    display: none;
    text-align: center;
    padding: 80px 20px;
}

.no-products h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-products p {
    color: var(--grey);
}


/* =========================================================
   COLLECTION BANNER
========================================================= */

.collection-banner {
    min-height: 550px;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.35)
        ),
        url("images/college-jacket.jpg") center/cover no-repeat;
    color: white;
}

.collection-banner > div {
    max-width: 550px;
}

.collection-banner h2 {
    font-size: clamp(60px, 9vw, 120px);
    line-height: 0.9;
    letter-spacing: -5px;
    margin-bottom: 25px;
}

.collection-banner p:not(.eyebrow) {
    max-width: 450px;
    margin-bottom: 30px;
}

.collection-banner button {
    padding: 15px 25px;
    border: none;
    background: white;
    color: black;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


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

.about-section {
    padding: 100px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

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

.about-text h2 {
    font-size: clamp(32px, 4vw, 55px);
    line-height: 0.98;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.about-text p:not(.eyebrow) {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    padding: 100px 20px;
    text-align: center;
    background: var(--light);
}

.newsletter h2 {
    font-size: clamp(35px, 6vw, 70px);
    letter-spacing: -3px;
    margin-bottom: 15px;
}

.newsletter > p:not(.eyebrow) {
    color: var(--grey);
    margin-bottom: 30px;
}

.newsletter form {
    max-width: 550px;
    margin: auto;
    display: flex;
    border-bottom: 1px solid var(--black);
}

.newsletter input {
    flex: 1;
    padding: 15px 5px;
    border: none;
    outline: none;
    background: transparent;
}

.newsletter button {
    border: none;
    background: transparent;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 70px 5% 30px;
    background: var(--black);
    color: white;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 11px;
    letter-spacing: 2px;
}

footer h4 {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

footer a {
    display: block;
    color: #bbb;
    font-size: 12px;
    margin-bottom: 12px;
    transition: color var(--transition);
}

footer a:hover {
    color: white;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid #333;
    padding-top: 25px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 10px;
    letter-spacing: 1px;
}

 <div class="social-icons">

    <!-- Instagram -->
    <a
        href="https://www.instagram.com/benicarmelcollectives/"
        target="_blank"
        rel="noopener noreferrer"
        aria-label="Instagram"
    >
        <svg
            viewBox="0 0 24 24"
            width="20"
            height="20"
            fill="none"
            stroke="currentColor"
            stroke-width="1.8"
            stroke-linecap="round"
            stroke-linejoin="round"
        >
            <rect x="3" y="3" width="18" height="18" rx="5"></rect>
            <circle cx="12" cy="12" r="4"></circle>
            <circle cx="17.5" cy="6.5" r="0.8" fill="currentColor"></circle>
        </svg>
    </a>


    <!-- TikTok -->
    <a
        href="https://www.tiktok.com/@benicarmelcollectives"
        target="_blank"
        rel="noopener noreferrer"
        aria-label="TikTok"
    >
        <svg
            viewBox="0 0 24 24"
            width="20"
            height="20"
            fill="currentColor"
            aria-hidden="true"
        >
            <path d="M16.7 3c.4 2.4 1.7 3.9 4.3 4.2v3.2c-1.6 0-3-.4-4.3-1.1v6.5c0 3.8-2.7 6.2-6.2 6.2A6.1 6.1 0 0 1 4.4 16c0-3.4 2.7-6.1 6.1-6.1.3 0 .7 0 1 .1v3.4c-.3-.1-.6-.2-1-.2-1.5 0-2.7 1.2-2.7 2.8s1.2 2.8 2.7 2.8c1.6 0 2.9-1.2 2.9-3.1V3h3.3z"></path>
        </svg>
    </a>

</div>


/* =========================================================
   SEARCH OVERLAY
========================================================= */

.search-overlay,
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.search-overlay.active,
.overlay.active {
    display: flex;
}

.close-search,
.close-overlay {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
}

.search-box {
    width: min(700px, 90%);
    background: white;
    padding: 35px;
}

.search-box input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--black);
    padding: 15px 0;
    outline: none;
    font-size: 20px;
}

.search-results {
    margin-top: 20px;
}

.search-result {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}


/* =========================================================
   CART DRAWER
========================================================= */

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    max-width: 92%;
    height: 100vh;
    background: white;
    z-index: 10002;
    transition: right 0.3s ease;
    padding: 25px;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
    right: 0;
}

.cart-overlay,
.cart-background {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10001;
    display: none;
}

.cart-overlay.active,
.cart-background.active {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.cart-header h2 {
    font-size: 20px;
    letter-spacing: 1px;
}

.cart-header button {
    border: none;
    background: none;
    font-size: 30px;
}

.cart-items {
    padding-top: 10px;
}

.empty-cart {
    text-align: center;
    padding: 60px 10px;
    color: var(--grey);
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item-info h4 {
    margin-bottom: 5px;
    font-size: 14px;
}

.cart-item-info p {
    font-size: 12px;
    color: var(--grey);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.cart-item-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid #222;
    background: white;
}

.remove-cart-item {
    border: none !important;
    background: none !important;
    cursor: pointer;
    font-size: 18px;
    margin-left: 8px;
}

.cart-footer {
    margin-top: 25px;
}

.cart-total-row,
.cart-footer > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.cart-footer strong {
    font-size: 17px;
}

.shipping-note {
    color: var(--grey);
    font-size: 11px;
    margin-bottom: 18px;
}

.checkout-button,
.place-order-button,
.pay-button {
    width: 100%;
    padding: 16px;
    border: none;
    background: #111;
    color: white;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 700;
    transition: opacity var(--transition);
}

.checkout-button:hover,
.place-order-button:hover,
.pay-button:hover {
    opacity: 0.8;
}

.continue-button {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border: 1px solid #111;
    background: white;
    color: #111;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.product-modal-content,
.checkout-content,
.success-content {
    position: relative;
    width: min(1000px, 95%);
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background: transparent;
    font-size: 30px;
    z-index: 2;
}


/* =========================================================
   PRODUCT MODAL CONTENT
========================================================= */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-detail img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.product-detail h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

.product-detail .price {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0;
}

.product-detail button {
    width: 100%;
    padding: 16px;
    border: none;
    background: #111;
    color: white;
}


/* =========================================================
   CHECKOUT MODAL
========================================================= */

.checkout-content {
    max-width: 1100px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
}

.checkout-form h2 {
    font-size: 35px;
    margin-bottom: 35px;
}

.checkout-form form {
    display: flex;
    flex-direction: column;
}

.checkout-form label {
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    background: white;
    outline: none;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: #111;
}

.checkout-form h3 {
    margin: 15px 0;
    font-size: 13px;
    letter-spacing: 1px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #111;
    padding: 15px;
    margin-bottom: 15px;
}

.payment-option input {
    width: auto;
    margin: 0;
}

.payment-help {
    color: var(--grey);
    font-size: 12px;
    margin-bottom: 20px;
}

.checkout-summary {
    background: var(--light);
    padding: 30px;
    height: fit-content;
}

.checkout-summary h3 {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
    font-size: 13px;
}

.checkout-item p {
    margin: 4px 0 0;
    font-size: 11px;
    color: var(--grey);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    font-size: 13px;
}

.summary-total,
.checkout-total {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    margin-top: 15px;
    border-top: 1px solid #999;
    font-size: 18px;
    font-weight: 700;
}

.checkout-summary strong {
    font-weight: 700;
}


/* =========================================================
   SUCCESS MODAL
========================================================= */

.success-content {
    max-width: 550px;
    padding: 60px 40px;
    text-align: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.success-content h2 {
    font-size: 45px;
    margin-bottom: 15px;
}

.success-content p:not(.eyebrow) {
    color: var(--grey);
    margin-bottom: 25px;
}

.success-content button {
    padding: 15px 25px;
    border: none;
    background: #111;
    color: white;
}


/* =========================================================
   OLD CHECKOUT PAGE SUPPORT
========================================================= */

.checkout-page {
    padding: 60px 5%;
}

.checkout-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    margin-bottom: 20px;
    font-size: 18px;
}

.form-section input,
.form-section textarea,
.form-section select {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    background: white;
    font-family: inherit;
}

.order-success {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.order-success.active {
    display: flex;
}

.order-success-box {
    background: white;
    max-width: 500px;
    padding: 50px;
    text-align: center;
}

.order-success-box a {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 25px;
    background: #111;
    color: white;
}


/* =========================================================
   BUTTON STATES
========================================================= */

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* =========================================================
   FORM SUCCESS / ERROR
========================================================= */

.form-message {
    margin-top: 15px;
    padding: 12px;
    font-size: 12px;
}

.form-message.success {
    background: #e7f5e9;
    color: #1d6428;
}

.form-message.error {
    background: #f8e6e6;
    color: #8a2020;
}


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

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 18px;
        margin-right: 15px;
    }

    .product-grid,
    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-section {
        gap: 40px;
    }

    footer {
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 30px;
    }

}


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

@media (max-width: 768px) {

    /* HEADER */

    .header {
        height: 70px;
        padding: 0 20px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
        width: 40px;
    }

    .logo {
        width: 125px;
    }

    .header-actions {
        width: 80px;
        justify-content: flex-end;
    }


    /* HERO */

    .hero {
        min-height: 620px;
        padding: 60px 25px;
        align-items: flex-end;
    }

    .hero h1 {
        font-size: clamp(55px, 18vw, 85px);
        letter-spacing: -3px;
    }


    /* CATEGORY */

    .category-section {
        padding: 60px 20px 30px;
    }

    .categories {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }

    .categories button {
        white-space: nowrap;
    }


    /* PRODUCTS */

    .shop-section,
    .shop-products {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-grid,
    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    .product-info h3,
    .shop-product-info h3 {
        font-size: 12px;
    }

    .product-info p,
    .shop-product-info p {
        font-size: 11px;
    }

    .quick-add,
    .shop-quick-add {
        transform: translateY(0);
        font-size: 9px;
        padding: 10px;
    }


    /* SECTION HEADING */

    .section-heading {
        align-items: flex-end;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    #productNumber {
        font-size: 9px;
    }


    /* SHOP HEADER */

    .shop-header {
        padding: 70px 20px 50px;
    }

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


    /* SHOP CONTROLS */

    .shop-controls {
        padding: 20px;
        display: block;
    }

    .category-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        margin-bottom: 20px;
    }

    .filter-button {
        white-space: nowrap;
    }

    .shop-sort {
        justify-content: space-between;
    }


    /* COLLECTION */

    .collection-banner {
        min-height: 500px;
        padding: 60px 25px;
    }

    .collection-banner h2 {
        font-size: 70px;
        letter-spacing: -3px;
    }


    /* ABOUT */

    .about-section {
        grid-template-columns: 1fr;
        padding: 70px 20px;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 38px;
    }


    /* NEWSLETTER */

    .newsletter {
        padding: 70px 20px;
    }

    .newsletter form {
        width: 100%;
    }


    /* FOOTER */

    footer {
        grid-template-columns: 1fr 1fr;
        padding: 60px 25px 30px;
        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        grid-column: 1 / -1;
    }


    /* CART */

    .cart-drawer {
        width: 100%;
        max-width: 100%;
        right: -100%;
        padding: 20px;
    }


    /* MODALS */

    .modal {
        padding: 10px;
    }

    .product-modal-content,
    .checkout-content {
        width: 100%;
        max-height: 95vh;
        padding: 25px 20px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-form h2 {
        font-size: 30px;
    }

    .checkout-summary {
        order: -1;
    }

    .success-content {
        width: 95%;
        padding: 50px 25px;
    }

    .success-content h2 {
        font-size: 38px;
    }


    /* SEARCH */

    .search-box {
        width: 95%;
        padding: 25px;
    }

    .close-search,
    .close-overlay {
        right: 20px;
        top: 15px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .announcement {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .logo {
        width: 110px;
    }

    .header-actions button {
        font-size: 16px;
        padding: 5px;
    }

    .hero {
        min-height: 570px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .product-grid,
    .shop-product-grid {
        gap: 20px 8px;
    }

    .product-label {
        top: 7px;
        left: 7px;
        padding: 5px 6px;
        font-size: 8px;
    }

    .wishlist-product {
        top: 7px;
        right: 7px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .collection-banner h2 {
        font-size: 58px;
    }

    footer {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}


/* =========================================================
   PRINT
========================================================= */

@media print {

    .header,
    .announcement,
    footer,
    .cart-drawer,
    .cart-overlay,
    .modal {
        display: none !important;
    }

}

.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;

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

    color: inherit;
    font-size: 20px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #fff;
    color: #111;
}
