/* =========================================================
   MYSHOP - MAIN STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

body.no-scroll {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --primary: #ff4d2d;
    --primary-dark: #e83c1d;
    --primary-light: #fff0ec;

    --accent: #ff9f1c;
    --success: #20a464;
    --danger: #e53935;

    --bg: #ffffff;
    --bg-soft: #f7f7f8;
    --bg-card: #ffffff;

    --text: #171717;
    --text-light: #6b6b6b;
    --text-muted: #999999;

    --border: #e8e8e8;

    --shadow-sm:
        0 2px 10px rgba(0, 0, 0, 0.05);

    --shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);

    --shadow-lg:
        0 20px 60px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --container: 1240px;

    --transition:
        all 0.25s ease;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark {
    --bg: #111111;
    --bg-soft: #191919;
    --bg-card: #1d1d1d;

    --text: #f4f4f4;
    --text-light: #b9b9b9;
    --text-muted: #858585;

    --border: #303030;

    --primary-light: #331b15;

    --shadow-sm:
        0 2px 10px rgba(0, 0, 0, 0.25);

    --shadow:
        0 10px 35px rgba(0, 0, 0, 0.35);

    --shadow-lg:
        0 20px 60px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   MATERIAL SYMBOLS
========================================================= */

.material-symbols-rounded {
    font-variation-settings:
        "FILL" 0,
        "wght" 500,
        "GRAD" 0,
        "opsz" 24;

    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
}

.material-symbols-rounded.filled {
    font-variation-settings:
        "FILL" 1,
        "wght" 500,
        "GRAD" 0,
        "opsz" 24;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: 13px;
}

.top-bar-content {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-bar-message,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-message .material-symbols-rounded {
    font-size: 18px;
}

.top-bar-right {
    gap: 18px;
}

.top-bar-right a {
    font-weight: 700;
    text-decoration: underline;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;
    z-index: 1000;

    transition: var(--transition);
}

.header-main {
    min-height: 82px;

    display: flex;
    align-items: center;
    gap: 28px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: var(--primary);
    color: #fff;

    display: grid;
    place-items: center;
}

.logo-mark .material-symbols-rounded {
    font-size: 25px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--primary);
}


/* =========================================================
   SEARCH
========================================================= */

.search-box {
    height: 46px;
    flex: 1;

    max-width: 620px;

    display: flex;
    align-items: center;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: var(--bg-soft);

    overflow: hidden;

    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 77, 45, 0.1);
}

.search-icon {
    margin-left: 17px;
    color: var(--text-muted);
    font-size: 21px;
}

.search-box input {
    width: 100%;
    height: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    padding: 0 14px;

    color: var(--text);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box button {
    height: 100%;

    border: 0;

    padding: 0 24px;

    background: var(--primary);
    color: #fff;

    font-weight: 700;
}

.search-box button:hover {
    background: var(--primary-dark);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-left: auto;
}

.header-action {
    min-width: 52px;

    border: 0;
    background: transparent;
    color: var(--text);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 3px;

    position: relative;
}

.header-action:hover {
    color: var(--primary);
}

.header-action .material-symbols-rounded {
    font-size: 23px;
}

.action-label {
    font-size: 10px;
    font-weight: 600;
}

.action-label small {
    display: block;
    font-size: 9px;
    font-weight: 400;
    color: var(--text-muted);
}

.icon-with-badge {
    position: relative;
    display: inline-flex;
}

.badge {
    position: absolute;

    top: -7px;
    right: -9px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    border-radius: 99px;

    background: var(--primary);
    color: #fff;

    display: grid;
    place-items: center;

    font-size: 9px;
    font-weight: 800;

    border: 2px solid var(--bg);
}

.badge.hidden {
    display: none;
}


/* =========================================================
   ICON BUTTON
========================================================= */

.icon-button {
    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: var(--bg-soft);
    color: var(--text);

    display: grid;
    place-items: center;

    transition: var(--transition);
}

.icon-button:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-menu-button {
    display: none;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.nav-inner {
    min-height: 48px;

    display: flex;
    align-items: center;
    gap: 25px;
}

.category-menu-button {
    height: 40px;

    border: 0;
    background: var(--text);
    color: var(--bg);

    border-radius: 7px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 700;
}

.category-menu-button .material-symbols-rounded {
    font-size: 19px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;

    font-size: 13px;
    font-weight: 600;
}

.nav-links a {
    position: relative;
    padding: 15px 0;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-hot {
    position: absolute;

    top: 0;
    right: -18px;

    background: var(--primary);
    color: #fff;

    font-size: 7px;
    padding: 2px 4px;

    border-radius: 3px;
}

.nav-extra {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--text-light);
    font-size: 12px;
}

.nav-extra .material-symbols-rounded {
    color: var(--primary);
    font-size: 19px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;

    top: 0;
    left: -340px;

    width: min(330px, 88vw);
    height: 100vh;

    background: var(--bg);

    z-index: 3000;

    overflow-y: auto;

    transition: left 0.3s ease;

    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    height: 75px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.mobile-menu-header strong {
    font-size: 20px;
}

.mobile-menu-user {
    padding: 22px 20px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: var(--bg-soft);
}

.mobile-user-icon {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: var(--primary-light);
    color: var(--primary);

    display: grid;
    place-items: center;
}

.mobile-menu-user strong,
.mobile-menu-user small {
    display: block;
}

.mobile-menu-user strong {
    font-size: 13px;
}

.mobile-menu-user small {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 11px;
}

.mobile-nav a {
    padding: 15px 20px;

    display: flex;
    align-items: center;
    gap: 15px;

    border-bottom: 1px solid var(--border);

    font-size: 14px;
    font-weight: 600;
}

.mobile-nav a:hover {
    color: var(--primary);
    background: var(--bg-soft);
}

.mobile-nav .material-symbols-rounded {
    font-size: 21px;
}

.mobile-categories {
    padding: 25px 20px;
}

.mobile-categories h4 {
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mobile-categories a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
}


/* =========================================================
   PAGE OVERLAY
========================================================= */

.page-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    z-index: 2000;

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.page-overlay.visible {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 620px;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(255, 77, 45, 0.09),
            transparent 35%
        ),
        var(--bg-soft);

    overflow: hidden;
}

.hero-grid {
    min-height: 620px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 40px;
}

.hero-content {
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 12px;

    border-radius: 999px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero-eyebrow .material-symbols-rounded {
    font-size: 17px;
}

.hero h1 {
    margin-top: 20px;

    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.03;

    letter-spacing: -3px;

    max-width: 650px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 540px;

    margin-top: 20px;

    color: var(--text-light);

    font-size: 16px;
}

.hero-buttons {
    margin-top: 30px;

    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 46px;

    border: 0;
    border-radius: 9px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;

    box-shadow: 0 7px 18px rgba(255, 77, 45, 0.22);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text);

    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-small {
    min-height: 36px;
    padding: 0 14px;
    font-size: 11px;
}


/* =========================================================
   HERO BENEFITS
========================================================= */

.hero-benefits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 35px;

    color: var(--text-light);

    font-size: 11px;
    font-weight: 600;
}

.hero-benefits div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-benefits .material-symbols-rounded {
    font-size: 18px;
    color: var(--primary);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    min-height: 500px;

    position: relative;

    display: grid;
    place-items: center;
}

.hero-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.circle-one {
    width: 390px;
    height: 390px;

    background: rgba(255, 77, 45, 0.12);
}

.circle-two {
    width: 300px;
    height: 300px;

    border: 1px solid rgba(255, 77, 45, 0.2);
}

.hero-product-card {
    position: relative;
    z-index: 2;

    width: min(370px, 75%);

    padding: 22px;

    border-radius: 25px;

    background: var(--bg);

    box-shadow: var(--shadow-lg);
}

.hero-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-product-top .material-symbols-rounded {
    color: var(--text-muted);
}

.discount-tag {
    padding: 5px 9px;

    border-radius: 5px;

    background: var(--primary);
    color: #fff;

    font-size: 9px;
    font-weight: 800;
}

.hero-product-image {
    height: 260px;

    margin-top: 15px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #ffe6df,
            #ffd3c8
        );

    display: grid;
    place-items: center;

    color: var(--primary);
}

.hero-product-image .material-symbols-rounded {
    font-size: 130px;

    font-variation-settings:
        "FILL" 1,
        "wght" 500,
        "GRAD" 0,
        "opsz" 48;
}

.hero-product-info {
    padding-top: 18px;
}

.hero-product-info > span {
    color: var(--text-muted);
    font-size: 11px;
}

.hero-product-info h3 {
    margin-top: 5px;
    font-size: 17px;
}

.hero-price {
    margin-top: 10px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-price strong {
    color: var(--primary);
    font-size: 21px;
}

.hero-price del {
    color: var(--text-muted);
    font-size: 12px;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;
    z-index: 4;

    padding: 13px 15px;

    background: var(--bg);

    border-radius: 12px;

    box-shadow: var(--shadow);

    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-card > .material-symbols-rounded {
    width: 34px;
    height: 34px;

    border-radius: 9px;

    background: var(--primary-light);
    color: var(--primary);

    display: grid;
    place-items: center;

    font-size: 18px;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card small {
    font-size: 9px;
    color: var(--text-muted);
}

.floating-card-one {
    left: 0;
    bottom: 70px;
}

.floating-card-two {
    right: 0;
    top: 75px;
}

.floating-card-two .material-symbols-rounded {
    color: #ffad00;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.features-grid {
    min-height: 105px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    align-items: center;
}

.feature-item {
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border-right: 1px solid var(--border);
}

.feature-item:last-child {
    border-right: 0;
}

.feature-icon {
    width: 43px;
    height: 43px;

    border-radius: 12px;

    background: var(--primary-light);
    color: var(--primary);

    display: grid;
    place-items: center;
}

.feature-icon .material-symbols-rounded {
    font-size: 22px;
}

.feature-item h3 {
    font-size: 12px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 10px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 85px 0;
}

.section-heading {
    margin-bottom: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.section-label {
    display: block;

    margin-bottom: 5px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.section-heading h2 {
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.15;

    letter-spacing: -1px;
}

.section-heading p {
    margin-top: 6px;

    color: var(--text-light);
    font-size: 13px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 5px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
}

.view-all .material-symbols-rounded {
    font-size: 17px;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.category-card {
    min-height: 170px;

    border: 1px solid var(--border);

    border-radius: 17px;

    background: var(--bg-card);
    color: var(--text);

    padding: 20px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.category-card > .material-symbols-rounded {
    width: 62px;
    height: 62px;

    margin-bottom: 14px;

    border-radius: 17px;

    display: grid;
    place-items: center;

    font-size: 31px;
}

.category-card strong {
    font-size: 12px;
}

.category-card small {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 9px;
}

.category-electronics > .material-symbols-rounded {
    color: #4e7cff;
    background: #edf2ff;
}

.category-fashion > .material-symbols-rounded {
    color: #c653d9;
    background: #f9e9fc;
}

.category-home > .material-symbols-rounded {
    color: #25a47c;
    background: #e8f8f2;
}

.category-beauty > .material-symbols-rounded {
    color: #e84f76;
    background: #ffeaf0;
}

.category-sports > .material-symbols-rounded {
    color: #ed8a18;
    background: #fff2df;
}

.category-gifts > .material-symbols-rounded {
    color: #7358d9;
    background: #eeeafd;
}


/* =========================================================
   FLASH SALE
========================================================= */

.flash-section {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--bg-soft)
        );
}

.flash-header {
    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.flash-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.flash-title h2 {
    font-size: 30px;
}

.flash-icon {
    width: 50px;
    height: 50px;

    border-radius: 14px;

    background: var(--primary);
    color: #fff;

    display: grid;
    place-items: center;
}

.flash-icon .material-symbols-rounded {
    font-size: 27px;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--text-light);

    font-size: 11px;
}

.countdown-box {
    min-width: 39px;
    height: 39px;

    border-radius: 7px;

    background: var(--text);
    color: var(--bg);

    display: grid;
    place-items: center;

    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    position: relative;

    background: var(--bg-card);

    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-image {
    height: 235px;

    position: relative;

    display: grid;
    place-items: center;

    overflow: hidden;
}

.product-image .material-symbols-rounded {
    font-size: 85px;

    color: rgba(255, 255, 255, 0.85);

    font-variation-settings:
        "FILL" 1,
        "wght" 500,
        "GRAD" 0,
        "opsz" 48;

    transition: transform 0.4s ease;
}

.product-card:hover .product-image .material-symbols-rounded {
    transform: scale(1.1);
}

.product-bg-1 {
    background: linear-gradient(135deg, #5e6ce8, #9ba5ff);
}

.product-bg-2 {
    background: linear-gradient(135deg, #f27b91, #ffc0cb);
}

.product-bg-3 {
    background: linear-gradient(135deg, #48a883, #a1e4c7);
}

.product-bg-4 {
    background: linear-gradient(135deg, #f59d3d, #ffd28e);
}

.product-bg-5 {
    background: linear-gradient(135deg, #7665cc, #b6aaff);
}

.product-bg-6 {
    background: linear-gradient(135deg, #5d8cae, #a8d3eb);
}

.product-bg-7 {
    background: linear-gradient(135deg, #cf6478, #f3a8b5);
}

.product-bg-8 {
    background: linear-gradient(135deg, #568b5e, #a5d2a8);
}

.product-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    padding: 5px 8px;

    border-radius: 5px;

    background: var(--primary);
    color: #fff;

    font-size: 9px;
    font-weight: 800;
}

.product-wishlist {
    position: absolute;

    top: 10px;
    right: 10px;

    width: 34px;
    height: 34px;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: #555;

    display: grid;
    place-items: center;

    transition: var(--transition);
}

.product-wishlist:hover,
.product-wishlist.active {
    color: var(--primary);
}

.product-wishlist .material-symbols-rounded {
    font-size: 18px;
}

.product-info {
    padding: 15px;
}

.product-category {
    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.product-name {
    margin-top: 5px;

    min-height: 39px;

    font-size: 13px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.product-rating {
    margin-top: 8px;

    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    display: flex;
    color: #ffad00;
}

.stars .material-symbols-rounded {
    font-size: 14px;
}

.rating-number {
    color: var(--text-muted);
    font-size: 9px;
}

.product-price {
    margin-top: 9px;

    display: flex;
    align-items: baseline;
    gap: 8px;
}

.current-price {
    color: var(--primary);

    font-size: 17px;
    font-weight: 800;
}

.old-price {
    color: var(--text-muted);

    font-size: 10px;

    text-decoration: line-through;
}

.product-bottom {
    margin-top: 12px;

    display: flex;
    align-items: center;
    gap: 7px;
}

.add-cart-button {
    height: 37px;

    flex: 1;

    border: 0;

    border-radius: 7px;

    background: var(--text);
    color: var(--bg);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-size: 10px;
    font-weight: 700;

    transition: var(--transition);
}

.add-cart-button:hover {
    background: var(--primary);
    color: #fff;
}

.add-cart-button .material-symbols-rounded {
    font-size: 17px;
}

.quick-view-button {
    width: 37px;
    height: 37px;

    border: 1px solid var(--border);

    border-radius: 7px;

    background: transparent;
    color: var(--text);

    display: grid;
    place-items: center;
}

.quick-view-button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.quick-view-button .material-symbols-rounded {
    font-size: 18px;
}


/* =========================================================
   PRODUCT CONTROLS
========================================================= */

.product-heading {
    align-items: flex-end;
}

.product-controls select {
    min-width: 175px;
    height: 42px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--bg-card);
    color: var(--text);

    padding: 0 12px;

    outline: none;

    font-size: 11px;
}

.product-controls select:focus {
    border-color: var(--primary);
}

.filter-bar {
    margin-bottom: 25px;

    display: flex;
    align-items: center;
    gap: 8px;

    overflow-x: auto;

    padding-bottom: 5px;
}

.filter-button {
    flex-shrink: 0;

    height: 35px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: var(--bg-card);
    color: var(--text-light);

    padding: 0 15px;

    font-size: 10px;
    font-weight: 600;
}

.filter-button:hover,
.filter-button.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.load-more-wrapper {
    margin-top: 35px;

    display: flex;
    justify-content: center;
}


/* =========================================================
   PROMO SECTION
========================================================= */

.promo-section {
    padding: 30px 0 85px;
}

.promo-banner {
    min-height: 310px;

    position: relative;
    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            115deg,
            #171717,
            #303030
        );

    color: #fff;

    padding: 50px 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-content {
    position: relative;
    z-index: 2;

    max-width: 580px;
}

.promo-label {
    color: #ff9f1c;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.promo-content h2 {
    margin-top: 10px;

    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.promo-content h2 span {
    color: var(--primary);
}

.promo-content p {
    margin-top: 12px;

    color: #aaa;

    font-size: 13px;
}

.promo-button {
    margin-top: 22px;

    background: #fff;
    color: #111;
}

.promo-button:hover {
    background: var(--primary);
    color: #fff;
}

.promo-visual {
    width: 300px;
    height: 260px;

    position: relative;

    display: grid;
    place-items: center;
}

.promo-circle {
    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(255, 77, 45, 0.18);
}

.promo-card {
    width: 150px;
    height: 175px;

    position: relative;

    border-radius: 20px;

    background: var(--primary);

    box-shadow: var(--shadow-lg);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: rotate(7deg);
}

.promo-card .material-symbols-rounded {
    font-size: 32px;
}

.promo-card strong {
    margin-top: 7px;

    font-size: 52px;
    line-height: 1;
}

.promo-card small {
    font-weight: 800;
}


/* =========================================================
   FEATURED COLLECTION
========================================================= */

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.featured-card {
    min-height: 260px;

    padding: 30px;

    border-radius: 20px;

    background: var(--bg-soft);

    display: flex;
    align-items: center;
    gap: 25px;

    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.featured-icon {
    width: 120px;
    height: 120px;

    flex-shrink: 0;

    border-radius: 25px;

    background: var(--primary-light);
    color: var(--primary);

    display: grid;
    place-items: center;
}

.featured-icon .material-symbols-rounded {
    font-size: 55px;
}

.featured-card > div:last-child > span {
    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.featured-card h3 {
    margin-top: 5px;

    font-size: 20px;
}

.featured-card p {
    margin-top: 8px;

    color: var(--text-light);

    font-size: 12px;
}

.featured-card a {
    margin-top: 16px;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;
}

.featured-card a .material-symbols-rounded {
    font-size: 16px;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 0 0 85px;
}

.newsletter {
    padding: 40px;

    border-radius: 22px;

    background: var(--primary-light);

    display: grid;
    grid-template-columns: auto 1fr 1fr;

    align-items: center;

    gap: 25px;
}

.newsletter-icon {
    width: 62px;
    height: 62px;

    border-radius: 18px;

    background: var(--primary);
    color: #fff;

    display: grid;
    place-items: center;
}

.newsletter-icon .material-symbols-rounded {
    font-size: 29px;
}

.newsletter-content h2 {
    font-size: 21px;
}

.newsletter-content p {
    margin-top: 5px;

    color: var(--text-light);

    font-size: 11px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.input-wrapper {
    flex: 1;

    height: 46px;

    display: flex;
    align-items: center;

    border-radius: 8px;

    background: var(--bg);

    border: 1px solid var(--border);
}

.input-wrapper .material-symbols-rounded {
    margin-left: 12px;

    color: var(--text-muted);

    font-size: 19px;
}

.input-wrapper input {
    width: 100%;
    height: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    padding: 0 10px;

    color: var(--text);

    font-size: 11px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--text);
    color: var(--bg);

    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);

    gap: 50px;

    padding-bottom: 55px;
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand p {
    max-width: 280px;

    margin-top: 17px;

    color: #aaa;

    font-size: 11px;
}

.social-links {
    margin-top: 20px;

    display: flex;
    gap: 8px;
}

.social-links a {
    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    display: grid;
    place-items: center;
}

.social-links a:hover {
    background: var(--primary);
}

.social-links .material-symbols-rounded {
    font-size: 17px;
}

.footer-column h4 {
    margin-bottom: 15px;

    font-size: 12px;
}

.footer-column a {
    display: block;

    margin: 10px 0;

    color: #aaa;

    font-size: 11px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    min-height: 75px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #888;
    font-size: 10px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #888;

    font-size: 9px;
}

.payment-icon {
    width: 34px;
    height: 23px;

    border-radius: 4px;

    background: rgba(255, 255, 255, 0.1);

    display: grid;
    place-items: center;
}

.payment-icon .material-symbols-rounded {
    font-size: 14px;
}


/* =========================================================
   CART DRAWER
========================================================= */

.cart-drawer {
    position: fixed;

    top: 0;
    right: -450px;

    width: min(430px, 100vw);
    height: 100vh;

    z-index: 3500;

    background: var(--bg);

    box-shadow: var(--shadow-lg);

    display: flex;
    flex-direction: column;

    transition: right 0.3s ease;
}

.cart-drawer.open {
    right: 0;
}

.drawer-header {
    min-height: 85px;

    padding: 0 22px;

    border-bottom: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-header h2 {
    font-size: 20px;
}

.cart-items {
    flex: 1;

    padding: 18px;

    overflow-y: auto;
}

.cart-item {
    padding: 13px 0;

    display: grid;
    grid-template-columns: 75px 1fr auto;

    gap: 12px;

    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 75px;
    height: 75px;

    border-radius: 10px;

    display: grid;
    place-items: center;
}

.cart-item-image .material-symbols-rounded {
    color: rgba(255, 255, 255, 0.9);

    font-size: 38px;
}

.cart-item-name {
    font-size: 11px;
    font-weight: 700;
}

.cart-item-price {
    margin-top: 5px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.quantity-controls {
    margin-top: 9px;

    display: flex;
    align-items: center;
    gap: 7px;
}

.quantity-controls button {
    width: 25px;
    height: 25px;

    border: 1px solid var(--border);

    border-radius: 5px;

    background: var(--bg);

    color: var(--text);

    display: grid;
    place-items: center;
}

.quantity-controls button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.quantity-controls .material-symbols-rounded {
    font-size: 14px;
}

.quantity-number {
    min-width: 20px;

    text-align: center;

    font-size: 10px;
    font-weight: 700;
}

.remove-item {
    align-self: flex-start;

    border: 0;
    background: transparent;

    color: var(--text-muted);
}

.remove-item:hover {
    color: var(--danger);
}

.remove-item .material-symbols-rounded {
    font-size: 17px;
}

.cart-empty {
    flex: 1;

    padding: 30px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.cart-empty.visible {
    display: flex;
}

.cart-empty > .material-symbols-rounded {
    width: 75px;
    height: 75px;

    border-radius: 50%;

    background: var(--bg-soft);
    color: var(--text-muted);

    display: grid;
    place-items: center;

    font-size: 34px;
}

.cart-empty h3 {
    margin-top: 15px;
    font-size: 16px;
}

.cart-empty p {
    max-width: 250px;

    margin-top: 5px;

    color: var(--text-muted);

    font-size: 11px;
}

.cart-empty .btn {
    margin-top: 20px;
}

.cart-footer {
    padding: 20px;

    border-top: 1px solid var(--border);

    background: var(--bg);
}

.cart-summary-row,
.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-summary-row {
    margin-bottom: 8px;

    color: var(--text-light);

    font-size: 11px;
}

.cart-total {
    margin: 16px 0;

    padding-top: 15px;

    border-top: 1px dashed var(--border);

    font-size: 15px;
}

.cart-total strong {
    color: var(--primary);
    font-size: 21px;
}

.checkout-button {
    width: 100%;
}

.secure-checkout {
    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    color: var(--text-muted);

    font-size: 9px;
}

.secure-checkout .material-symbols-rounded {
    font-size: 13px;
}


/* =========================================================
   MODALS
========================================================= */

.modal-wrapper {
    position: fixed;
    inset: 0;

    z-index: 5000;

    padding: 20px;

    background: rgba(0, 0, 0, 0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.modal-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: min(460px, 100%);

    position: relative;

    padding: 40px;

    border-radius: 22px;

    background: var(--bg);

    box-shadow: var(--shadow-lg);

    text-align: center;

    transform: translateY(20px) scale(0.98);

    transition: var(--transition);
}

.modal-wrapper.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: 0;

    border-radius: 50%;

    background: var(--bg-soft);
    color: var(--text);

    display: grid;
    place-items: center;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-close .material-symbols-rounded {
    font-size: 18px;
}

.modal-icon,
.promo-modal-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 20px;

    background: var(--primary-light);
    color: var(--primary);

    display: grid;
    place-items: center;
}

.modal-icon .material-symbols-rounded,
.promo-modal-icon .material-symbols-rounded {
    font-size: 33px;
}

.modal h2 {
    margin-top: 8px;

    font-size: 25px;
    line-height: 1.2;
}

.modal p {
    margin-top: 10px;

    color: var(--text-light);

    font-size: 12px;
}

.modal-action {
    width: 100%;
    margin-top: 25px;
}

.coupon-box {
    margin-top: 20px;

    height: 55px;

    padding: 0 8px 0 17px;

    border: 1px dashed var(--primary);

    border-radius: 9px;

    background: var(--primary-light);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coupon-box strong {
    color: var(--primary);

    font-size: 17px;
    letter-spacing: 2px;
}

.coupon-box button {
    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 7px;

    background: var(--primary);
    color: #fff;

    display: grid;
    place-items: center;
}

.coupon-box button .material-symbols-rounded {
    font-size: 18px;
}


/* =========================================================
   QUICK VIEW
========================================================= */

.quick-view-modal {
    width: min(750px, 100%);
    text-align: left;
}

.quick-view {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;
}

.quick-view-image {
    min-height: 330px;

    border-radius: 17px;

    display: grid;
    place-items: center;
}

.quick-view-image .material-symbols-rounded {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.9);
}

.quick-view-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-view-info h2 {
    margin-top: 5px;
    font-size: 25px;
}

.quick-view-description {
    margin-top: 12px;

    color: var(--text-light);

    font-size: 12px;
}

.quick-view-price {
    margin-top: 15px;

    color: var(--primary);

    font-size: 25px;
    font-weight: 800;
}

.quick-view-actions {
    margin-top: 20px;

    display: flex;
    gap: 8px;
}


/* =========================================================
   COOKIE BANNER
========================================================= */

.cookie-banner {
    position: fixed;

    left: 20px;
    bottom: 20px;

    max-width: 570px;

    padding: 17px 18px;

    z-index: 4500;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--bg);

    box-shadow: var(--shadow-lg);

    display: flex;
    align-items: center;
    gap: 20px;

    transition: var(--transition);
}

.cookie-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-content > .material-symbols-rounded {
    color: var(--primary);
    font-size: 27px;
}

.cookie-content strong {
    font-size: 11px;
}

.cookie-content p {
    color: var(--text-muted);
    font-size: 9px;
}

.cookie-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 6000;

    padding: 13px 17px;

    border-radius: 9px;

    background: var(--text);
    color: var(--bg);

    box-shadow: var(--shadow);

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 11px;
    font-weight: 600;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: var(--transition);
}

.toast.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toast .material-symbols-rounded {
    color: #50d890;
    font-size: 19px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 22px;
    bottom: 80px;

    width: 42px;
    height: 42px;

    z-index: 1500;

    border: 0;

    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    display: grid;
    place-items: center;

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
}

.back-to-top .material-symbols-rounded {
    font-size: 19px;
}


/* =========================================================
   MOBILE BOTTOM NAV
========================================================= */

.mobile-bottom-nav {
    display: none;
}


/* =========================================================
   NO RESULTS
========================================================= */

.no-results {
    grid-column: 1 / -1;

    padding: 60px 20px;

    text-align: center;
}

.no-results .material-symbols-rounded {
    font-size: 50px;
    color: var(--text-muted);
}

.no-results h3 {
    margin-top: 10px;
}

.no-results p {
    margin-top: 5px;

    color: var(--text-muted);

    font-size: 12px;
}

/* =========================================
   THEME TOGGLE
========================================= */

.theme-toggle {
    position: relative;
    overflow: hidden;
}

.theme-toggle .material-symbols-rounded {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.theme-toggle:hover .material-symbols-rounded {
    transform: rotate(20deg) scale(1.1);
}

body.dark .theme-toggle {
    background: var(--surface-2);
}

body.dark .theme-toggle .material-symbols-rounded {
    transform: rotate(180deg);
}


/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {

    .header-main {
        gap: 16px;
    }

    .header-action .action-label {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(2) {
        border-right: 0;
    }

    .feature-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .newsletter {
        grid-template-columns: auto 1fr;
    }

    .newsletter-form {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   RESPONSIVE - 850px
========================================================= */

@media (max-width: 850px) {

    .container {
        width: min(var(--container), calc(100% - 30px));
    }

    .top-bar-right {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
    }

    .desktop-nav {
        display: none;
    }

    .header-main {
        min-height: 70px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-mark {
        width: 37px;
        height: 37px;
    }

    .header-actions {
        gap: 0;
    }

    .header-action {
        min-width: 40px;
    }

    .header-action.theme-button {
        display: none;
    }

    .search-box {
        order: 5;

        position: absolute;

        left: 15px;
        right: 15px;
        top: 78px;

        max-width: none;

        width: auto;
    }

    .header {
        margin-bottom: 55px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;

        grid-template-columns: 1fr;

        padding: 70px 0;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-benefits {
        justify-content: center;
    }

    .hero-visual {
        min-height: 450px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 3;
    }

    .mobile-bottom-nav {
        display: flex;

        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 1800;

        height: 62px;

        background: var(--bg);

        border-top: 1px solid var(--border);

        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.06);

        justify-content: space-around;
    }

    .mobile-bottom-nav a,
    .mobile-bottom-nav button {
        flex: 1;

        border: 0;
        background: transparent;
        color: var(--text-muted);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 2px;
    }

    .mobile-bottom-nav a:hover,
    .mobile-bottom-nav button:hover {
        color: var(--primary);
    }

    .mobile-bottom-nav .material-symbols-rounded {
        font-size: 21px;
    }

    .mobile-bottom-nav small {
        font-size: 8px;
        font-weight: 600;
    }

    .bottom-cart-icon {
        position: relative;
    }

    .bottom-cart-icon > span:last-child {
        position: absolute;

        top: -7px;
        right: -9px;

        width: 16px;
        height: 16px;

        border-radius: 50%;

        background: var(--primary);
        color: #fff;

        display: grid;
        place-items: center;

        font-size: 8px;
        font-weight: 800;
    }

    body {
        padding-bottom: 62px;
    }
}


/* =========================================================
   RESPONSIVE - 650px
========================================================= */

@media (max-width: 650px) {

    .top-bar {
        font-size: 10px;
    }

    .top-bar-content {
        justify-content: center;
        min-height: 32px;
    }

    .header-main {
        gap: 7px;
    }

    .logo {
        margin-right: auto;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .header-action {
        min-width: 35px;
    }

    .header-action .material-symbols-rounded {
        font-size: 21px;
    }

    .header-action.wishlist-button {
        display: none;
    }

    .hero-grid {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-benefits {
        gap: 10px;
    }

    .hero-benefits div {
        font-size: 9px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-product-card {
        width: 78%;
    }

    .hero-product-image {
        height: 205px;
    }

    .hero-product-image .material-symbols-rounded {
        font-size: 95px;
    }

    .circle-one {
        width: 290px;
        height: 290px;
    }

    .circle-two {
        width: 225px;
        height: 225px;
    }

    .floating-card {
        padding: 9px;
    }

    .floating-card-one {
        left: 0;
        bottom: 35px;
    }

    .floating-card-two {
        right: 0;
        top: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        justify-content: flex-start;
        border-right: 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .feature-item:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 60px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        min-height: 145px;
    }

    .flash-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image {
        height: 180px;
    }

    .product-image .material-symbols-rounded {
        font-size: 65px;
    }

    .product-info {
        padding: 11px;
    }

    .product-name {
        font-size: 11px;
    }

    .current-price {
        font-size: 15px;
    }

    .old-price {
        font-size: 8px;
    }

    .product-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-view-button {
        display: none;
    }

    .add-cart-button {
        width: 100%;
    }

    .promo-banner {
        padding: 35px 25px;
    }

    .promo-visual {
        position: absolute;

        right: -70px;

        opacity: 0.4;
    }

    .featured-card {
        padding: 20px;
        gap: 15px;
    }

    .featured-icon {
        width: 80px;
        height: 80px;
    }

    .featured-icon .material-symbols-rounded {
        font-size: 38px;
    }

    .featured-card h3 {
        font-size: 16px;
    }

    .newsletter {
        padding: 25px;

        grid-template-columns: 1fr;
    }

    .newsletter-icon {
        display: none;
    }

    .newsletter-form {
        grid-column: auto;

        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 15px 0;

        flex-direction: column;
        justify-content: center;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 72px;

        flex-direction: column;
        align-items: stretch;

        gap: 12px;
    }

    .cookie-actions {
        justify-content: flex-end;
    }

    .toast {
        right: 15px;
        left: 15px;
        bottom: 75px;

        justify-content: center;
    }

    .quick-view {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-view-image {
        min-height: 230px;
    }

    .quick-view-info h2 {
        font-size: 20px;
    }

    .modal {
        padding: 30px 22px;
    }
}


/* =========================================================
   RESPONSIVE - 430px
========================================================= */

@media (max-width: 430px) {

    .container {
        width: min(var(--container), calc(100% - 22px));
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
    }

    .hero-product-card {
        width: 85%;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .category-grid {
        gap: 8px;
    }

    .category-card {
        min-height: 135px;
        padding: 12px 8px;
    }

    .category-card > .material-symbols-rounded {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .product-grid {
        gap: 8px;
    }

    .product-image {
        height: 155px;
    }

    .product-image .material-symbols-rounded {
        font-size: 57px;
    }

    .product-wishlist {
        width: 29px;
        height: 29px;
    }

    .product-wishlist .material-symbols-rounded {
        font-size: 15px;
    }

    .product-badge {
        top: 8px;
        left: 8px;
        font-size: 7px;
    }

    .product-info {
        padding: 9px;
    }

    .product-category {
        font-size: 7px;
    }

    .product-name {
        min-height: 34px;
        font-size: 9px;
    }

    .current-price {
        font-size: 13px;
    }

    .add-cart-button {
        height: 33px;
        font-size: 8px;
    }

    .add-cart-button .material-symbols-rounded {
        font-size: 15px;
    }

    .flash-title h2 {
        font-size: 25px;
    }

    .countdown-box {
        min-width: 34px;
        height: 34px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

}