/* =====================================================
   DECENTWRAP
   PREMIUM E-COMMERCE DESIGN
===================================================== */

:root {

    --black: #0b0b0b;
    --dark: #121212;
    --cream: #f4f1eb;
    --white: #ffffff;
    --gray: #777777;
    --light-gray: #e8e5df;
    --border: rgba(0,0,0,.1);

    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif;

    --transition: .35s cubic-bezier(.2,.8,.2,1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: var(--sans);

    background: var(--cream);

    color: var(--black);

    overflow-x: hidden;
}


body.no-scroll {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
    border: none;
}


img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   PRELOADER
===================================================== */

#preloader {

    position: fixed;

    inset: 0;

    background: var(--black);

    color: white;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transition: opacity .8s ease,
                visibility .8s ease;
}


#preloader.hide {

    opacity: 0;

    visibility: hidden;
}


.loader-logo {

    font-size: 28px;

    font-weight: 700;

    letter-spacing: 5px;

    margin-bottom: 25px;
}


.loader-logo span {
    font-weight: 400;
}


.loader-line {

    width: 180px;

    height: 1px;

    background: rgba(255,255,255,.2);

    overflow: hidden;
}


.loader-line span {

    display: block;

    height: 100%;

    width: 0;

    background: white;

    animation: loading 1.6s ease forwards;
}


@keyframes loading {

    to {
        width: 100%;
    }

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    height: 80px;

    padding: 0 6vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(244,241,235,.85);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(0,0,0,.05);

    transition: var(--transition);
}


.logo {

    font-size: 20px;

    font-weight: 700;

    letter-spacing: 3px;
}


.logo span {
    font-weight: 400;
}


.nav-links {

    display: flex;

    gap: 35px;
}


.nav-links a {

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;

    position: relative;
}


.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 1px;

    background: var(--black);

    transition: var(--transition);
}


.nav-links a:hover::after {
    width: 100%;
}


.nav-actions {

    display: flex;

    gap: 15px;

    align-items: center;
}


.nav-actions button {

    background: none;

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    position: relative;
}


.cart-button span {

    position: absolute;

    top: -2px;

    right: -2px;

    background: var(--black);

    color: white;

    width: 17px;

    height: 17px;

    border-radius: 50%;

    font-size: 9px;

    display: grid;

    place-items: center;
}


.menu-btn {
    display: none !important;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    position: fixed;

    inset: 0;

    background: var(--black);

    color: white;

    z-index: 3000;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 30px;

    transform: translateY(-100%);

    transition: .6s cubic-bezier(.7,0,.2,1);
}


.mobile-menu.active {
    transform: translateY(0);
}


.mobile-menu a {

    font-family: var(--serif);

    font-size: 40px;
}


.close-menu {

    position: absolute;

    top: 25px;

    right: 25px;

    background: none;

    color: white;

    font-size: 24px;
}


/* =====================================================
   SEARCH
===================================================== */

.search-overlay {

    position: fixed;

    inset: 0;

    background: rgba(11,11,11,.97);

    color: white;

    z-index: 4000;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .4s ease;
}


.search-overlay.active {

    opacity: 1;

    visibility: visible;
}


.close-search {

    position: absolute;

    top: 35px;

    right: 5%;

    color: white;

    background: none;

    font-size: 28px;
}


.search-box {

    width: min(700px,90%);

    text-align: center;
}


.search-box > span {

    font-size: 11px;

    letter-spacing: 3px;

    opacity: .6;
}


.search-input {

    margin-top: 30px;

    border-bottom: 1px solid rgba(255,255,255,.4);

    display: flex;

    align-items: center;
}


.search-input input {

    width: 100%;

    background: none;

    border: none;

    outline: none;

    color: white;

    font-size: 35px;

    padding: 15px 0;
}


.search-input input::placeholder {
    color: rgba(255,255,255,.35);
}


.search-input i {
    font-size: 20px;
}


#searchResultsText {

    margin-top: 20px;

    opacity: .6;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 100vh;

    padding: 150px 8vw 80px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

    position: relative;

    overflow: hidden;
}


.hero-content {

    position: relative;

    z-index: 2;

    animation: heroText 1s 1.4s both;
}


@keyframes heroText {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.eyebrow {

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 18px;
}


.hero h1 {

    font-family: var(--serif);

    font-size: clamp(50px,7vw,100px);

    font-weight: 500;

    line-height: .95;

    letter-spacing: -4px;
}


.hero h1 span,
.section-heading h2 span,
.about-content h2 span,
.promo-content h2 span,
.newsletter h2 span {

    font-style: italic;

    font-weight: 500;
}


.hero-description {

    max-width: 510px;

    margin: 30px 0;

    color: var(--gray);

    line-height: 1.8;

    font-size: 15px;
}


.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 16px 25px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 11px;

    font-weight: 700;

    transition: var(--transition);
}


.btn-dark {

    background: var(--black);

    color: white;
}


.btn-dark:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}


.btn-outline {

    border: 1px solid var(--black);
}


.btn-outline:hover {

    background: var(--black);

    color: white;
}


.btn-light {

    background: white;

    color: var(--black);
}


.btn-light:hover {

    transform: translateY(-4px);
}


/* HERO VISUAL */

.hero-visual {

    min-height: 600px;

    display: grid;

    place-items: center;

    position: relative;

    animation: heroVisual 1.2s 1.3s both;
}


@keyframes heroVisual {

    from {

        opacity: 0;

        transform: scale(.9);

    }

    to {

        opacity: 1;

        transform: scale(1);

    }

}


.hero-circle {

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: #ddd8cf;
}


.device-card {

    position: relative;

    z-index: 2;

    transform: rotate(-12deg);

    filter: drop-shadow(30px 40px 35px rgba(0,0,0,.2));

}


.laptop-screen {

    width: 430px;

    height: 270px;

    border-radius: 15px 15px 5px 5px;

    background: linear-gradient(
        135deg,
        #222,
        #777
    );

    border: 7px solid #1c1c1c;

    display: grid;

    place-items: center;

}


.screen-content {

    width: 90%;

    height: 88%;

    background:
        radial-gradient(circle at 20% 20%, #777, transparent 30%),
        linear-gradient(135deg,#161616,#444);

    color: white;

    display: grid;

    place-items: center;

    font-family: var(--serif);

    font-size: 55px;
}


.laptop-base {

    width: 480px;

    height: 25px;

    margin-left: -25px;

    background: linear-gradient(
        #999,
        #555
    );

    border-radius: 0 0 15px 15px;
}


.floating-tag {

    position: absolute;

    z-index: 4;

    background: white;

    padding: 13px 17px;

    box-shadow: 0 15px 35px rgba(0,0,0,.12);

    font-size: 11px;

    display: flex;

    align-items: center;

    gap: 8px;

    animation: float 4s ease-in-out infinite;
}


.tag-one {

    top: 20%;

    right: 0;
}


.tag-two {

    bottom: 20%;

    left: 0;

    animation-delay: -2s;
}


@keyframes float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}


/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar {

    background: var(--black);

    color: white;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    padding: 25px 8vw;

    gap: 20px;
}


.trust-bar div {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.trust-bar i {
    font-size: 16px;
}


/* =====================================================
   SECTIONS
===================================================== */

.section {

    padding: 120px 8vw;
}


.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-bottom: 55px;
}


.section-heading h2 {

    font-family: var(--serif);

    font-size: clamp(40px,5vw,70px);

    font-weight: 500;

    line-height: 1;

    letter-spacing: -2px;
}


.section-heading > p {

    max-width: 300px;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.7;
}


.text-link {

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    display: flex;

    gap: 15px;

    align-items: center;
}


/* =====================================================
   COLLECTIONS
===================================================== */

.category-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 15px;
}


.category-card {

    min-height: 470px;

    background: #e8e3da;

    padding: 25px;

    position: relative;

    overflow: hidden;

    transition: var(--transition);
}


.category-card:hover {

    transform: translateY(-10px);
}


.category-number {

    position: relative;

    z-index: 3;

    font-size: 11px;

    opacity: .5;
}


.category-image {

    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;
}


.category-info {

    position: absolute;

    bottom: 25px;

    left: 25px;

    right: 25px;

    z-index: 3;
}


.category-info h3 {

    font-family: var(--serif);

    font-size: 30px;

    font-weight: 500;

    margin-bottom: 8px;
}


.category-info span {

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* DEVICE ART */

.mini-laptop {

    width: 180px;

    height: 110px;

    background: #1b1b1b;

    color: white;

    display: grid;

    place-items: center;

    font-family: var(--serif);

    font-size: 30px;

    transform: rotate(-12deg);

    box-shadow: 20px 30px 30px rgba(0,0,0,.2);
}


.mini-phone {

    width: 110px;

    height: 210px;

    border-radius: 20px;

    background: linear-gradient(135deg,#111,#777);

    transform: rotate(12deg);

    box-shadow: 20px 30px 30px rgba(0,0,0,.2);
}


.mini-camera {

    width: 190px;

    height: 120px;

    border-radius: 20px;

    background: #202020;

    transform: rotate(-8deg);

    display: grid;

    place-items: center;

    box-shadow: 20px 30px 30px rgba(0,0,0,.2);
}


.mini-camera span {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    border: 12px solid #555;

    background: #111;
}


.mini-charger {

    width: 110px;

    height: 180px;

    border-radius: 15px;

    background: linear-gradient(135deg,#eee,#888);

    transform: rotate(10deg);

    box-shadow: 20px 30px 30px rgba(0,0,0,.2);
}


/* =====================================================
   PRODUCT GRID
===================================================== */

.product-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;
}


.product-card {

    position: relative;

    background: #e9e5de;

    overflow: hidden;

    transition: var(--transition);

    animation: productAppear .6s both;
}


@keyframes productAppear {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.product-card:hover {

    transform: translateY(-7px);
}


.product-image {
    height: 330px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #e9e5de;
}


.product-image::before {
    display: none;
}

.product-card:hover .product-image::before {

    transform:
        rotate(5deg)
        scale(1.05);
}


/* category image shapes */

.product-card.laptop .product-image::before {

    width: 260px;

    height: 170px;

    border-radius: 12px;

    transform: rotate(-8deg);
}


.product-card.camera .product-image::before {

    width: 220px;

    height: 140px;

    border-radius: 18px;

    transform: rotate(-5deg);
}


.product-card.charger .product-image::before {

    width: 100px;

    height: 170px;

    border-radius: 15px;

    transform: rotate(8deg);
}


.product-art-text {

    position: relative;

    z-index: 2;

    color: white;

    font-family: var(--serif);

    font-size: 28px;

    opacity: .8;
}


.product-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    background: white;

    padding: 7px 10px;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    z-index: 5;
}


.quick-add {

    position: absolute;

    right: 15px;

    bottom: 15px;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: white;

    display: grid;

    place-items: center;

    z-index: 5;

    opacity: 0;

    transform: translateY(10px);

    transition: var(--transition);
}


.product-card:hover .quick-add {

    opacity: 1;

    transform: translateY(0);
}


.product-info {

    padding: 20px 5px 5px;
}


.product-category {

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--gray);

    margin-bottom: 8px;
}


.product-name {

    font-family: var(--serif);

    font-size: 21px;

    font-weight: 500;
}


.product-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 12px;
}


.product-price {

    font-weight: 700;

    font-size: 14px;
}


.rating {

    font-size: 10px;

    letter-spacing: 1px;
}


.load-more-container {

    display: flex;

    justify-content: center;

    margin-top: 60px;
}


/* =====================================================
   PROMO
===================================================== */

.promo-section {

    background: var(--black);

    color: white;

    min-height: 600px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 100px 8vw;
}


.promo-content {

    position: relative;

    z-index: 4;
}


.promo-content h2 {

    font-family: var(--serif);

    font-size: clamp(55px,8vw,110px);

    line-height: .9;

    font-weight: 500;

    letter-spacing: -4px;
}


.promo-content > p:not(.eyebrow) {

    margin: 30px 0;

    opacity: .6;
}


.promo-shapes {

    position: absolute;

    right: -100px;

    top: 50%;

    transform: translateY(-50%);

    width: 600px;

    height: 600px;
}


.promo-shapes div {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.2);
}


.promo-shapes div:nth-child(1) {

    width: 600px;

    height: 600px;
}


.promo-shapes div:nth-child(2) {

    width: 450px;

    height: 450px;

    top: 75px;

    left: 75px;
}


.promo-shapes div:nth-child(3) {

    width: 300px;

    height: 300px;

    top: 150px;

    left: 150px;
}


/* =====================================================
   SHOP TOOLBAR
===================================================== */

.shop-toolbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 40px;

    gap: 20px;
}


.filter-buttons {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}


.filter-btn {

    padding: 11px 16px;

    background: transparent;

    border: 1px solid var(--border);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: var(--transition);
}


.filter-btn.active,
.filter-btn:hover {

    background: var(--black);

    color: white;
}


#sortProducts {

    padding: 11px 15px;

    background: transparent;

    border: 1px solid var(--border);

    outline: none;

    font-size: 11px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


.about-image {

    min-height: 600px;

    background:
        radial-gradient(
            circle at center,
            #555,
            #111 60%
        );

    display: grid;

    place-items: center;
}


.about-logo {

    width: 200px;

    height: 200px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.3);

    color: white;

    display: grid;

    place-items: center;

    font-family: var(--serif);

    font-size: 70px;
}


.about-content h2 {

    font-family: var(--serif);

    font-size: clamp(45px,5vw,70px);

    line-height: 1;

    font-weight: 500;

    margin-bottom: 30px;
}


.about-content > p:not(.eyebrow) {

    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 20px;

    max-width: 550px;
}


.about-stats {

    display: flex;

    gap: 60px;

    margin-top: 45px;
}


.about-stats strong {

    display: block;

    font-family: var(--serif);

    font-size: 35px;
}


.about-stats span {

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--gray);
}


/* =====================================================
   NEWSLETTER
===================================================== */

.newsletter {

    padding: 120px 20px;

    text-align: center;

    background: #e5e0d7;
}


.newsletter h2 {

    font-family: var(--serif);

    font-size: clamp(45px,6vw,75px);

    font-weight: 500;
}


.newsletter > p:not(.eyebrow) {

    color: var(--gray);

    margin: 20px 0 35px;
}


.newsletter form {

    max-width: 550px;

    margin: auto;

    display: flex;

    border-bottom: 1px solid var(--black);
}


.newsletter input {

    flex: 1;

    border: none;

    background: transparent;

    outline: none;

    padding: 16px 0;
}


.newsletter button {

    background: transparent;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 700;

    display: flex;

    gap: 10px;

    align-items: center;
}


/* =====================================================
   FOOTER
===================================================== */

footer {

    background: var(--black);

    color: white;

    padding: 80px 8vw 25px;
}


.footer-main {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(255,255,255,.15);
}


.footer-brand p {

    color: #888;

    max-width: 280px;

    line-height: 1.7;

    margin: 20px 0;
}


.socials {

    display: flex;

    gap: 10px;
}


.socials a {

    width: 35px;

    height: 35px;

    border: 1px solid #333;

    border-radius: 50%;

    display: grid;

    place-items: center;

    transition: var(--transition);
}


.socials a:hover {

    background: white;

    color: black;
}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 14px;
}


.footer-column h4 {

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.footer-column a,
.footer-column span {

    color: #888;

    font-size: 13px;

    transition: .3s ease;
}


.footer-column a:hover {

    color: white;
}


.footer-bottom {

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    color: #666;

    font-size: 10px;
}


/* =====================================================
   CART
===================================================== */

.cart-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.45);

    z-index: 2500;

    opacity: 0;

    visibility: hidden;

    transition: .4s ease;
}


.cart-overlay.active {

    opacity: 1;

    visibility: visible;
}


.cart-sidebar {

    position: fixed;

    right: 0;

    top: 0;

    width: min(450px,100%);

    height: 100vh;

    background: var(--cream);

    z-index: 2600;

    transform: translateX(100%);

    transition: .5s cubic-bezier(.7,0,.2,1);

    display: flex;

    flex-direction: column;
}


.cart-sidebar.active {

    transform: translateX(0);
}


.cart-header {

    padding: 25px;

    border-bottom: 1px solid var(--border);

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.cart-header h3 {

    font-family: var(--serif);

    font-size: 28px;

    font-weight: 500;
}


.cart-header button {

    background: none;

    font-size: 20px;
}


.cart-items {

    flex: 1;

    overflow-y: auto;

    padding: 25px;
}


.empty-cart {

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}


.empty-cart i {

    font-size: 40px;

    margin-bottom: 20px;

    opacity: .3;
}


.empty-cart h4 {

    font-family: var(--serif);

    font-size: 25px;
}


.empty-cart p {

    color: var(--gray);

    margin-top: 8px;
}


.cart-item {

    display: grid;

    grid-template-columns: 80px 1fr auto;

    gap: 15px;

    align-items: center;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}





.cart-item-image span {

    font-family: var(--serif);

    font-size: 22px;
}


.cart-item h4 {

    font-family: var(--serif);

    font-weight: 500;

    font-size: 17px;
}


.cart-item p {

    font-size: 12px;

    color: var(--gray);

    margin-top: 5px;
}


.remove-item {

    background: none;

    color: #999;
}


.cart-footer {

    padding: 25px;

    border-top: 1px solid var(--border);
}


.cart-total {

    display: flex;

    justify-content: space-between;

    margin-bottom: 20px;
}


.checkout-btn {

    width: 100%;

    background: var(--black);

    color: white;

    padding: 18px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: 10px;

    font-weight: 700;
}


/* =====================================================
   MODALS
===================================================== */

.modal-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.65);

    z-index: 5000;

    display: grid;

    place-items: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: .4s ease;
}


.modal-overlay.active {

    opacity: 1;

    visibility: visible;
}


.checkout-modal {

    background: var(--cream);

    width: min(500px,100%);

    padding: 45px;

    position: relative;

    transform: translateY(30px);

    transition: .4s ease;
}


.modal-overlay.active .checkout-modal {

    transform: translateY(0);
}


.modal-close {

    position: absolute;

    right: 20px;

    top: 20px;

    background: none;

    font-size: 20px;
}


.checkout-modal h2 {

    font-family: var(--serif);

    font-size: 45px;

    font-weight: 500;

    line-height: 1;
}


.checkout-modal h2 span {

    font-style: italic;
}


.modal-description {

    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;

    margin: 20px 0;
}


#checkoutForm {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


#checkoutForm input,
#checkoutForm textarea {

    width: 100%;

    border: 1px solid var(--border);

    background: transparent;

    padding: 15px;

    outline: none;

    resize: none;
}


.whatsapp-order-btn {

    padding: 17px;

    background: #25D366;

    color: white;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 5px;
}


/* PRODUCT MODAL */

.product-modal {

    width: min(850px,100%);

    background: var(--cream);

    display: grid;

    grid-template-columns: 1fr 1fr;

    position: relative;

    transform: translateY(30px);

    transition: .4s ease;
}


.modal-overlay.active .product-modal {

    transform: translateY(0);
}


.product-modal-image {

    min-height: 500px;

    background: #ddd8cf;

    display: grid;

    place-items: center;

    position: relative;

    overflow: hidden;
}


.product-modal-image::before {

    display:none;

}

.product-modal-info {

    padding: 60px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.product-modal-info h2 {

    font-family: var(--serif);

    font-size: 42px;

    font-weight: 500;

    line-height: 1;
}


.modal-rating {

    margin: 20px 0;

    font-size: 12px;

    letter-spacing: 2px;
}


.modal-rating span {

    color: var(--gray);

    letter-spacing: 0;

    margin-left: 10px;
}


.product-modal-info p:not(.eyebrow) {

    color: var(--gray);

    line-height: 1.7;

    font-size: 13px;

    margin-bottom: 20px;
}


#modalPrice {

    font-size: 20px;

    margin-bottom: 25px;
}


.full-btn {
    width: 100%;
}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.floating-whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    display: grid;

    place-items: center;

    font-size: 25px;

    z-index: 2000;

    box-shadow: 0 10px 30px rgba(0,0,0,.2);

    transition: var(--transition);
}


.floating-whatsapp:hover {

    transform: scale(1.1);
}


.floating-whatsapp span {

    position: absolute;

    right: 70px;

    background: var(--black);

    color: white;

    padding: 10px 15px;

    font-size: 10px;

    white-space: nowrap;

    opacity: 0;

    pointer-events: none;

    transition: .3s ease;
}


.floating-whatsapp:hover span {

    opacity: 1;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px) {

    .category-grid,
    .product-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .hero {

        grid-template-columns: 1fr;

    }


    .hero-visual {

        min-height: 500px;

    }


    .about {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .footer-main {

        grid-template-columns: 2fr 1fr 1fr;

    }

}


@media(max-width:800px) {

    .nav-links {
        display: none;
    }


    .menu-btn {
        display: grid !important;
    }


    .navbar {

        height: 70px;

        padding: 0 5vw;

    }


    .hero {

        padding: 130px 5vw 60px;

    }


    .hero h1 {

        font-size: 60px;

    }


    .hero-circle {

        width: 350px;

        height: 350px;

    }


    .laptop-screen {

        width: 320px;

        height: 210px;

    }


    .laptop-base {

        width: 360px;

    }


    .section {

        padding: 80px 5vw;

    }


    .section-heading {

        flex-direction: column;

        align-items: flex-start;

    }


    .trust-bar {

        grid-template-columns: repeat(2,1fr);

    }


    .shop-toolbar {

        flex-direction: column;

        align-items: flex-start;

    }


    .product-grid {

        grid-template-columns: repeat(2,1fr);

        gap: 12px;

    }


    .product-image {

        height: 250px;

    }


    .footer-main {

        grid-template-columns: 1fr 1fr;

    }


    .product-modal {

        grid-template-columns: 1fr;

        max-height: 90vh;

        overflow-y: auto;

    }


    .product-modal-image {

        min-height: 280px;

    }

}


@media(max-width:550px) {

    .hero h1 {

        font-size: 48px;

        letter-spacing: -2px;

    }


    .hero-visual {

        min-height: 400px;

    }


    .laptop-screen {

        width: 270px;

        height: 175px;

    }


    .laptop-base {

        width: 300px;

    }


    .hero-circle {

        width: 300px;

        height: 300px;

    }


    .floating-tag {

        font-size: 9px;

    }


    .category-grid {

        grid-template-columns: 1fr;

    }


    .category-card {

        min-height: 400px;

    }


    .product-grid {

        grid-template-columns: 1fr 1fr;

    }


    .product-image {

        height: 200px;

    }


    .product-name {

        font-size: 17px;

    }


    .product-info {

        padding: 12px 2px;

    }


    .quick-add {

        opacity: 1;

        transform: none;

        width: 35px;

        height: 35px;

    }


    .trust-bar {

        grid-template-columns: 1fr;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 10px;

    }


    .checkout-modal {

        padding: 30px 20px;

    }


    .newsletter form {

        flex-direction: column;

        border: none;

        gap: 10px;

    }


    .newsletter input {

        border-bottom: 1px solid var(--black);

    }

}

.product-art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.product-card:hover .product-art-image {
    transform: scale(1.05);
}


.modal-product-image {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    padding: 30px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.laptop-category img {
    width: 85%;
    margin: auto;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.product-gallery {
    width: 100%;
}

.gallery-main {
    position: relative;
    width: 100%;
}

.gallery-main .modal-product-image {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    font-size: 28px;
    line-height: 42px;

    cursor: pointer;
    z-index: 10;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;

    cursor: pointer;

    border: 2px solid transparent;
    opacity: 0.6;

    transition: 0.2s;
}

.gallery-thumbnail:hover {
    opacity: 1;
}

.gallery-thumbnail.active {
    opacity: 1;
    border-color: #111;
}
/* =====================================================
   PRODUCT IMAGE THUMBNAILS
===================================================== */

.product-modal-gallery {
    width: 100%;
}

.main-product-image-wrapper {
    position: relative;
    width: 100%;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding: 2px;
}

.product-thumbnail {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    padding: 4px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.25s ease;
}

.product-thumbnail:hover {
    border-color: #111;
}

.product-thumbnail.active {
    border: 2px solid #111;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.modal-image-counter {
    margin-top: 8px;
    text-align: center;
    font-size: 12px;
    color: #777;
}