/* =========================================================
   NAVELOZ — MAIN STYLESHEET
   frontend/css/style.css
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {

    --primary: #111827;
    --primary-2: #1f2937;

    --accent: #ff6b35;
    --accent-dark: #e85a27;
    --accent-light: #fff1eb;

    --success: #16a34a;
    --success-light: #ecfdf3;

    --danger: #dc2626;
    --warning: #f59e0b;

    --white: #ffffff;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --border: #e5e7eb;

    --body-bg: #ffffff;

    --container: 1280px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    --shadow-sm:
        0 2px 8px rgba(17, 24, 39, 0.05);

    --shadow-md:
        0 8px 30px rgba(17, 24, 39, 0.08);

    --shadow-lg:
        0 18px 50px rgba(17, 24, 39, 0.12);

    --transition:
        0.25s ease;

    --font:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


/* =========================================================
   2. RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--body-bg);
    color: var(--gray-900);

    font-family: var(--font);

    font-size: 15px;
    line-height: 1.6;

    overflow-x: hidden;
}


body.menu-open,
body.cart-open,
body.modal-open {
    overflow: hidden;
}


img {
    display: block;
    max-width: 100%;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}


p {
    color: var(--gray-600);
}


::selection {
    background: var(--accent);
    color: var(--white);
}


/* =========================================================
   3. GLOBAL
========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-left: auto;
    margin-right: auto;
}


.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.section {
    padding: 90px 0;
}


.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 36px;
}


.section-heading.centered {
    justify-content: center;
    text-align: center;
}


.section-heading h2 {
    margin: 0;

    color: var(--gray-900);

    font-size: clamp(
        28px,
        3vw,
        40px
    );

    line-height: 1.15;

    letter-spacing: -0.035em;
}


.section-heading p {
    max-width: 600px;

    margin: 12px auto 0;
}


.section-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    color: var(--gray-900);

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}


.section-link:hover {
    color: var(--accent);
}


.section-link i {
    transition: transform var(--transition);
}


.section-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   4. BUTTONS
========================================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 46px;

    padding: 0 20px;

    border: 0;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}


.button:hover {
    transform: translateY(-2px);
}


.button-primary {
    background: var(--accent);
    color: var(--white);

    box-shadow:
        0 8px 20px rgba(255, 107, 53, 0.20);
}


.button-primary:hover {
    background: var(--accent-dark);

    box-shadow:
        0 12px 28px rgba(255, 107, 53, 0.28);
}


.button-light {
    background: var(--white);
    color: var(--gray-900);

    border: 1px solid var(--gray-200);
}


.button-light:hover {
    background: var(--gray-50);
}


.button-large {
    min-height: 52px;

    padding-left: 25px;
    padding-right: 25px;

    border-radius: 12px;
}


.button-small {
    min-height: 38px;

    padding: 0 14px;

    font-size: 12px;
}


.button-full {
    width: 100%;
}


/* =========================================================
   5. ICON BUTTON
========================================================= */

.icon-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid var(--gray-200);
    border-radius: 10px;

    background: var(--white);
    color: var(--gray-800);

    font-size: 16px;

    transition: var(--transition);
}


.icon-button:hover {
    border-color: var(--accent);

    color: var(--accent);
}


/* =========================================================
   6. ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    min-height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: var(--white);

    font-size: 11px;
    font-weight: 600;
}


.announcement-inner {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    padding: 7px 15px;
}


.announcement-inner span {
    display: inline-flex;

    align-items: center;

    gap: 6px;
}


.announcement-inner i {
    color: #ffb199;
}


.announcement-divider {
    opacity: 0.35;
}


/* =========================================================
   7. HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}


.header-main {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    min-height: 76px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 28px;
}


.brand {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}


.brand-icon {
    width: 38px;
    height: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--accent);

    color: var(--white);

    font-size: 17px;

    box-shadow:
        0 6px 15px rgba(255, 107, 53, 0.22);
}


.brand-text {
    color: var(--gray-900);

    font-size: 24px;
    font-weight: 800;

    letter-spacing: -0.055em;
}


.brand-text span {
    color: var(--accent);
}


.mobile-menu-button {
    display: none;
}


/* =========================================================
   8. SEARCH
========================================================= */

.header-search {
    position: relative;

    flex: 1;

    max-width: 610px;

    margin: 0 auto;
}


.header-search input {
    width: 100%;

    height: 46px;

    padding: 0 55px 0 18px;

    border: 1px solid var(--gray-200);
    border-radius: 10px;

    outline: none;

    background: var(--gray-50);

    color: var(--gray-900);

    font-size: 14px;

    transition: var(--transition);
}


.header-search input::placeholder {
    color: var(--gray-400);
}


.header-search input:focus {
    border-color: var(--accent);

    background: var(--white);

    box-shadow:
        0 0 0 4px rgba(255, 107, 53, 0.08);
}


.header-search button {
    position: absolute;

    top: 0;
    right: 0;

    width: 48px;
    height: 46px;

    border: 0;

    background: transparent;

    color: var(--gray-500);

    font-size: 15px;
}


.header-search button:hover {
    color: var(--accent);
}


/* =========================================================
   9. HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;
}


.header-action {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--gray-700);

    border: 0;
    background: transparent;

    padding: 0;
}


.header-action:hover {
    color: var(--accent);
}


.header-action > i,
.action-icon-wrapper > i {
    font-size: 20px;
}


.header-action-text {
    display: flex;

    flex-direction: column;

    line-height: 1.15;

    text-align: left;
}


.header-action-text small {
    color: var(--gray-500);

    font-size: 10px;
}


.header-action-text strong {
    margin-top: 3px;

    color: var(--gray-900);

    font-size: 12px;
}


.action-icon-wrapper {
    position: relative;

    display: inline-flex;
}


.badge {
    position: absolute;

    top: -9px;
    right: -10px;

    min-width: 17px;
    height: 17px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 4px;

    border-radius: 50px;

    background: var(--accent);

    color: var(--white);

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   10. NAVIGATION
========================================================= */

.main-navigation {
    border-top: 1px solid var(--gray-100);

    background: var(--white);
}


.navigation-inner {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    min-height: 48px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 28px;
}


.all-categories-button {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    height: 38px;

    padding: 0 15px;

    border: 0;
    border-radius: 8px;

    background: var(--primary);

    color: var(--white);

    font-size: 12px;
    font-weight: 700;
}


.all-categories-button:hover {
    background: var(--accent);
}


.all-categories-button i:last-child {
    margin-left: 4px;

    font-size: 9px;
}


.navigation-links {
    display: flex;

    align-items: center;

    gap: 26px;

    height: 48px;
}


.navigation-links a {
    position: relative;

    display: inline-flex;

    align-items: center;

    height: 48px;

    color: var(--gray-600);

    font-size: 12px;
    font-weight: 600;

    transition: var(--transition);
}


.navigation-links a:hover,
.navigation-links a.active {
    color: var(--gray-900);
}


.navigation-links a.active::after {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    content: "";

    background: var(--accent);

    border-radius: 10px;
}


.support-link {
    margin-left: auto;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--gray-600);

    font-size: 12px;
    font-weight: 600;
}


.support-link:hover {
    color: var(--accent);
}


/* =========================================================
   11. MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;

    top: 0;
    left: -320px;

    z-index: 2000;

    width: min(
        320px,
        88vw
    );

    height: 100vh;

    background: var(--white);

    box-shadow:
        20px 0 50px rgba(0, 0, 0, 0.12);

    transition:
        left 0.3s ease;
}


.mobile-menu.open {
    left: 0;
}


.mobile-menu-header {
    height: 72px;

    padding: 0 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}


.mobile-menu-header strong {
    font-size: 18px;
}


.mobile-menu-links {
    padding: 15px;
}


.mobile-menu-links a {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 48px;

    padding: 0 13px;

    border-radius: 9px;

    color: var(--gray-700);

    font-size: 14px;
    font-weight: 600;
}


.mobile-menu-links a:hover {
    background: var(--accent-light);

    color: var(--accent);
}


.mobile-menu-links i {
    width: 20px;

    color: var(--gray-400);

    text-align: center;
}


.mobile-menu-links a:hover i {
    color: var(--accent);
}


.mobile-menu-overlay,
.cart-overlay,
.modal-overlay {
    position: fixed;

    inset: 0;

    z-index: 1500;

    background: rgba(17, 24, 39, 0.48);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity var(--transition),
        visibility var(--transition);
}


.mobile-menu-overlay.active,
.cart-overlay.active,
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   12. CATEGORY MEGA MENU
========================================================= */

.category-mega-menu {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    z-index: 950;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}


.category-mega-menu.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.category-menu-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 25px 0;
}


.category-menu-header h3 {
    margin: 0;

    font-size: 22px;

    letter-spacing: -0.03em;
}


.close-category-menu {
    width: 38px;
    height: 38px;

    border: 1px solid var(--gray-200);
    border-radius: 8px;

    background: var(--white);

    color: var(--gray-500);
}


.category-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 15px;

    padding-bottom: 30px;
}


.category-loading {
    grid-column: 1 / -1;

    padding: 30px;

    text-align: center;

    color: var(--gray-500);
}


.loader {
    display: inline-block;

    width: 18px;
    height: 18px;

    margin-right: 7px;

    vertical-align: middle;

    border: 2px solid var(--gray-200);

    border-top-color: var(--accent);

    border-radius: 50%;

    animation:
        spin 0.7s linear infinite;
}


/* =========================================================
   13. HERO
========================================================= */

.hero-section {
    padding: 34px 0 45px;

    background:
        linear-gradient(
            180deg,
            #f9fafb 0%,
            #ffffff 100%
        );
}


.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(280px, 0.75fr);

    gap: 18px;
}


.hero-main {
    position: relative;

    min-height: 470px;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    overflow: hidden;

    border-radius: var(--radius-2xl);

    background:
        linear-gradient(
            125deg,
            #111827 0%,
            #1f2937 65%,
            #293548 100%
        );

    color: var(--white);
}


.hero-content {
    position: relative;
    z-index: 2;

    align-self: center;

    padding: 55px 20px 55px 55px;
}


.hero-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 7px 11px;

    margin-bottom: 17px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;

    background: rgba(255,255,255,0.06);

    color: #ffb199;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.12em;
}


.hero-content h1 {
    max-width: 580px;

    margin-bottom: 18px;

    color: var(--white);

    font-size: clamp(
        42px,
        5vw,
        68px
    );

    line-height: 0.99;

    letter-spacing: -0.055em;
}


.hero-content h1 span {
    color: #ff8d67;
}


.hero-content p {
    max-width: 520px;

    margin-bottom: 27px;

    color: rgba(255,255,255,0.70);

    font-size: 15px;
}


.hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 34px;
}


.hero-buttons .button-light {
    border-color: rgba(255,255,255,0.15);

    background: rgba(255,255,255,0.08);

    color: var(--white);
}


.hero-buttons .button-light:hover {
    background: rgba(255,255,255,0.15);
}


.hero-trust {
    display: flex;

    align-items: center;

    gap: 22px;
}


.hero-trust-item {
    display: flex;

    align-items: center;

    gap: 8px;
}


.hero-trust-item i {
    color: #ff9a78;

    font-size: 16px;
}


.hero-trust-item span {
    color: rgba(255,255,255,0.68);

    font-size: 10px;
    line-height: 1.25;
}


.hero-visual {
    position: relative;

    min-height: 470px;

    overflow: hidden;
}


.hero-circle {
    position: absolute;

    border-radius: 50%;
}


.hero-circle-one {
    width: 400px;
    height: 400px;

    right: -100px;
    top: 30px;

    border: 1px solid rgba(255,255,255,0.08);

    background:
        radial-gradient(
            circle,
            rgba(255,107,53,0.17),
            transparent 65%
        );
}


.hero-circle-two {
    width: 270px;
    height: 270px;

    left: 40px;
    bottom: -120px;

    border: 1px solid rgba(255,255,255,0.06);
}


.hero-product-placeholder {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 220px;
    height: 220px;

    display: flex;

    align-items: center;
    justify-content: center;

    transform:
        translate(-50%, -50%)
        rotate(-8deg);

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #ff865f,
            #e85a27
        );

    box-shadow:
        0 30px 60px rgba(0,0,0,0.30);
}


.hero-product-placeholder i {
    color: rgba(255,255,255,0.95);

    font-size: 82px;
}


.hero-product-glow {
    position: absolute;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.12);

    filter: blur(4px);
}


.floating-offer {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 13px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.18);
}


.floating-offer-one {
    top: 70px;
    right: 20px;
}


.floating-offer-two {
    bottom: 60px;
    left: 20px;
}


.floating-offer-icon {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(255,255,255,0.12);
}


.floating-offer span:last-child {
    display: flex;

    flex-direction: column;
}


.floating-offer small {
    color: rgba(255,255,255,0.55);

    font-size: 9px;
}


.floating-offer strong {
    color: var(--white);

    font-size: 11px;
}


/* =========================================================
   14. PROMO CARDS
========================================================= */

.hero-side {
    display: grid;

    grid-template-rows:
        1fr
        1fr;

    gap: 18px;
}


.promo-card {
    position: relative;

    overflow: hidden;

    padding: 30px;

    border-radius: var(--radius-xl);
}


.promo-dark {
    background:
        linear-gradient(
            135deg,
            #ff6b35,
            #e34f20
        );

    color: var(--white);
}


.promo-dark::after {
    position: absolute;

    width: 180px;
    height: 180px;

    right: -60px;
    bottom: -60px;

    content: "";

    border-radius: 50%;

    background:
        rgba(255,255,255,0.09);
}


.promo-light {
    display: flex;

    align-items: center;
    justify-content: space-between;

    background: var(--gray-100);
}


.promo-label {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.12em;
}


.promo-dark .promo-label {
    color: rgba(255,255,255,0.68);
}


.promo-light .promo-label {
    color: var(--accent);
}


.promo-card h2 {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    font-size: 31px;
    line-height: 1.02;

    letter-spacing: -0.045em;
}


.promo-card p {
    position: relative;
    z-index: 2;

    max-width: 260px;

    margin-bottom: 20px;

    font-size: 12px;
}


.promo-dark p {
    color: rgba(255,255,255,0.78);
}


.promo-light p {
    color: var(--gray-600);
}


.promo-card a {
    position: relative;
    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;
    font-weight: 800;
}


.promo-card a:hover {
    text-decoration: underline;
}


.promo-big-icon {
    color: var(--accent);

    font-size: 52px;

    opacity: 0.85;
}


/* =========================================================
   15. BENEFITS
========================================================= */

.benefits-section {
    border-bottom: 1px solid var(--border);

    background: var(--white);
}


.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    min-height: 100px;
}


.benefit {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 20px 22px;

    border-right: 1px solid var(--border);
}


.benefit:first-child {
    padding-left: 0;
}


.benefit:last-child {
    border-right: 0;
}


.benefit-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--accent-light);

    color: var(--accent);
}


.benefit div:last-child {
    display: flex;

    flex-direction: column;
}


.benefit strong {
    color: var(--gray-900);

    font-size: 12px;
}


.benefit span {
    color: var(--gray-500);

    font-size: 10px;
}


/* =========================================================
   16. CATEGORY CARDS
========================================================= */

.homepage-category-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 15px;
}


.homepage-category-card {
    position: relative;

    display: block;

    overflow: hidden;

    min-height: 180px;

    padding: 20px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.homepage-category-card:hover {
    transform: translateY(-5px);

    border-color: transparent;

    box-shadow: var(--shadow-md);
}


.homepage-category-card .category-image {
    height: 105px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 13px;

    background: var(--gray-100);

    overflow: hidden;
}


.homepage-category-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}


.homepage-category-card:hover img {
    transform: scale(1.06);
}


.homepage-category-card .category-image img {
    opacity: 1;
    transition: opacity .25s ease, transform .35s ease;
}


.homepage-category-card .category-image img.category-image-changing {
    opacity: 0;
}


.homepage-category-icon {
    font-size: 32px;

    color: var(--accent);
}


.homepage-category-card h3 {
    margin: 0 0 2px;

    color: var(--gray-900);

    font-size: 13px;
}


.homepage-category-card span {
    color: var(--gray-500);

    font-size: 10px;
}


/* =========================================================
   17. PRODUCT GRID
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


/* =========================================================
   18. PRODUCT CARD
========================================================= */

.product-card {
    position: relative;

    min-width: 0;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.product-card:hover {
    transform: translateY(-5px);

    border-color: transparent;

    box-shadow: var(--shadow-md);
}


.product-image-wrapper {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: var(--gray-100);
}


.product-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.product-card:hover
.product-image-wrapper img {
    transform: scale(1.05);
}


.product-badges {
    position: absolute;

    top: 12px;
    left: 12px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 5px;
}


.product-badge {
    display: inline-flex;

    align-items: center;

    min-height: 23px;

    padding: 0 8px;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
}


.product-badge.sale {
    background: var(--accent);

    color: var(--white);
}


.product-badge.bogo {
    background: var(--primary);

    color: var(--white);
}


.product-badge.new {
    background: var(--success);

    color: var(--white);
}


.product-badge.free-shipping {
    background: var(--success-light);

    color: var(--success);
}


.product-wishlist {
    position: absolute;

    top: 11px;
    right: 11px;

    z-index: 4;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,0.94);

    color: var(--gray-600);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}


.product-wishlist:hover,
.product-wishlist.active {
    color: var(--accent);
}


.product-quick-view {
    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 12px;

    z-index: 5;

    min-height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border: 0;
    border-radius: 8px;

    background: rgba(17,24,39,0.92);

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity var(--transition),
        transform var(--transition);
}


.product-card:hover .product-quick-view {
    opacity: 1;

    transform: translateY(0);
}


.product-info {
    padding: 16px;
}


.product-category {
    display: block;

    margin-bottom: 6px;

    color: var(--gray-500);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}


.product-title {
    display: -webkit-box;

    overflow: hidden;

    min-height: 41px;

    margin: 0 0 7px;

    color: var(--gray-900);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.45;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.product-rating {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 10px;
}


.product-rating-stars,
#quickViewStars {
    color: #f59e0b;

    font-size: 11px;

    letter-spacing: 1px;
}


.product-rating-count,
#quickViewReviews {
    color: var(--gray-400);

    font-size: 10px;
}


.product-price-row {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 13px;
}


.product-price {
    color: var(--gray-900);

    font-size: 18px;
    font-weight: 800;

    letter-spacing: -0.03em;
}


.product-old-price {
    color: var(--gray-400);

    font-size: 11px;

    text-decoration: line-through;
}


.product-card-footer {
    display: flex;

    gap: 7px;
}


.product-add-button {
    flex: 1;

    min-height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border: 0;
    border-radius: 8px;

    background: var(--gray-900);

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    transition: var(--transition);
}


.product-add-button:hover {
    background: var(--accent);
}


.product-view-button {
    width: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--gray-200);
    border-radius: 8px;

    background: var(--white);

    color: var(--gray-600);
}


.product-view-button:hover {
    border-color: var(--accent);

    color: var(--accent);
}


/* =========================================================
   19. SHIPPING PROMOTION
========================================================= */

.shipping-promotion {
    padding: 0 0 90px;
}


.shipping-promotion-inner {
    position: relative;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 30px 35px;

    overflow: hidden;

    border-radius: var(--radius-xl);

    background:
        linear-gradient(
            110deg,
            #111827,
            #263246
        );

    color: var(--white);
}


.shipping-promotion-inner::after {
    position: absolute;

    right: -80px;
    top: -130px;

    width: 300px;
    height: 300px;

    content: "";

    border-radius: 50%;

    background:
        rgba(255,107,53,0.12);
}


.shipping-icon {
    position: relative;
    z-index: 2;

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 17px;

    background: rgba(255,255,255,0.08);

    color: #ff9673;

    font-size: 25px;
}


.shipping-copy {
    position: relative;
    z-index: 2;

    flex: 1;
}


.shipping-copy > span {
    display: block;

    margin-bottom: 4px;

    color: #ff9a78;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.12em;
}


.shipping-copy h2 {
    margin: 0 0 4px;

    color: var(--white);

    font-size: 22px;

    letter-spacing: -0.03em;
}


.shipping-copy h2 strong {
    color: #ff9673;
}


.shipping-copy p {
    margin: 0;

    color: rgba(255,255,255,0.58);

    font-size: 11px;
}


.shipping-promotion .button {
    position: relative;
    z-index: 2;

    flex-shrink: 0;
}


/* =========================================================
   20. MONTHLY OFFERS
========================================================= */

.monthly-section {
    padding-top: 0;
}


.monthly-banner {
    position: relative;

    min-height: 310px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    overflow: hidden;

    padding: 50px 60px;

    border-radius: var(--radius-2xl);

    background:
        linear-gradient(
            125deg,
            #fff1eb,
            #fff7f4
        );
}


.monthly-banner::before {
    position: absolute;

    width: 430px;
    height: 430px;

    right: -120px;
    top: -160px;

    content: "";

    border-radius: 50%;

    border: 50px solid rgba(255,107,53,0.05);
}


.monthly-content {
    position: relative;
    z-index: 2;
}


.monthly-content h2 {
    margin-bottom: 12px;

    color: var(--gray-900);

    font-size: clamp(
        36px,
        4vw,
        56px
    );

    line-height: 1;

    letter-spacing: -0.055em;
}


.monthly-content h2 span {
    color: var(--accent);
}


.monthly-content p {
    max-width: 450px;

    margin-bottom: 22px;

    color: var(--gray-600);
}


.monthly-decoration {
    position: relative;
    z-index: 2;

    margin-right: 70px;
}


.discount-circle {
    width: 185px;
    height: 185px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--accent);

    color: var(--white);

    transform: rotate(7deg);

    box-shadow:
        0 25px 50px rgba(255,107,53,0.22);
}


.discount-circle span {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.12em;
}


.discount-circle strong {
    font-size: 58px;

    line-height: 0.9;

    letter-spacing: -0.07em;
}


.discount-circle small {
    margin-top: 4px;

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   21. WHY NAVELOZ
========================================================= */

.why-section {
    background: var(--gray-50);
}


.why-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}


.why-content h2 {
    max-width: 580px;

    margin-bottom: 18px;

    color: var(--gray-900);

    font-size: clamp(
        34px,
        4vw,
        52px
    );

    line-height: 1.02;

    letter-spacing: -0.055em;
}


.why-content h2 span {
    color: var(--accent);
}


.why-content > p {
    max-width: 580px;

    margin-bottom: 27px;

    font-size: 14px;
}


.why-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.why-points div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--gray-700);

    font-size: 12px;
    font-weight: 600;
}


.why-points i {
    color: var(--success);
}


.trust-panel {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius-xl);

    background: var(--white);

    box-shadow: var(--shadow-sm);
}


.trust-panel-header {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}


.trust-shield {
    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: var(--success-light);

    color: var(--success);

    font-size: 21px;
}


.trust-panel-header div:last-child {
    display: flex;

    flex-direction: column;
}


.trust-panel-header strong {
    color: var(--gray-900);

    font-size: 14px;
}


.trust-panel-header span {
    color: var(--gray-500);

    font-size: 11px;
}


.trust-items {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 0;
}


.trust-item {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding: 20px 15px;

    border-bottom: 1px solid var(--border);
}


.trust-item:nth-child(odd) {
    padding-left: 0;

    border-right: 1px solid var(--border);
}


.trust-item:nth-child(even) {
    padding-right: 0;

    padding-left: 20px;
}


.trust-item:nth-child(3),
.trust-item:nth-child(4) {
    border-bottom: 0;
}


.trust-item > i {
    color: var(--accent);

    margin-top: 2px;
}


.trust-item div {
    display: flex;

    flex-direction: column;
}


.trust-item strong {
    color: var(--gray-800);

    font-size: 11px;
}


.trust-item span {
    color: var(--gray-500);

    font-size: 10px;

    line-height: 1.4;
}


/* =========================================================
   22. REVIEWS
========================================================= */

.reviews-section {
    background: var(--white);
}


.reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.review-card {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: var(--white);

    transition: var(--transition);
}


.review-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-md);
}


.review-stars {
    margin-bottom: 14px;

    color: #f59e0b;

    font-size: 14px;

    letter-spacing: 2px;
}


.review-card > p {
    min-height: 76px;

    margin-bottom: 20px;

    color: var(--gray-700);

    font-size: 13px;

    line-height: 1.7;
}


.review-author {
    display: flex;

    align-items: center;

    gap: 10px;
}


.review-avatar {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gray-900);

    color: var(--white);

    font-size: 12px;
    font-weight: 800;
}


.review-author div:last-child {
    display: flex;

    flex-direction: column;
}


.review-author strong {
    color: var(--gray-900);

    font-size: 11px;
}


.review-author span {
    color: var(--success);

    font-size: 9px;
}


/* =========================================================
   23. NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 55px 0;

    background: var(--gray-100);
}


.newsletter-inner {
    display: grid;

    grid-template-columns:
        auto
        1fr
        minmax(320px, 450px);

    align-items: center;

    gap: 22px;
}


.newsletter-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: var(--gray-900);

    color: var(--white);

    font-size: 21px;
}


.newsletter-copy h2 {
    margin-bottom: 4px;

    font-size: 22px;

    letter-spacing: -0.03em;
}


.newsletter-copy p {
    margin: 0;

    font-size: 11px;
}


.newsletter-form {
    display: flex;

    gap: 7px;
}


.newsletter-form input {
    min-width: 0;

    flex: 1;

    height: 46px;

    padding: 0 14px;

    border: 1px solid var(--gray-200);
    border-radius: 9px;

    outline: none;

    background: var(--white);

    font-size: 12px;
}


.newsletter-form input:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 4px rgba(255,107,53,0.08);
}


/* =========================================================
   24. FOOTER
========================================================= */

.site-footer {
    padding-top: 65px;

    background: #0d1420;

    color: var(--white);
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 45px;
}


.footer-logo .brand-text {
    color: var(--white);
}


.footer-brand p {
    max-width: 280px;

    margin: 17px 0 20px;

    color: rgba(255,255,255,0.52);

    font-size: 11px;
}


.social-links {
    display: flex;

    gap: 7px;
}


.social-links a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;

    color: rgba(255,255,255,0.62);

    font-size: 12px;

    transition: var(--transition);
}


.social-links a:hover {
    border-color: var(--accent);

    background: var(--accent);

    color: var(--white);
}


.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h3 {
    margin-bottom: 17px;

    color: var(--white);

    font-size: 12px;
}


.footer-column a {
    margin-bottom: 10px;

    color: rgba(255,255,255,0.52);

    font-size: 11px;

    transition: var(--transition);
}


.footer-column a:hover {
    color: #ff9673;

    transform: translateX(2px);
}


.footer-security {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.payment-methods {
    display: flex;

    align-items: center;

    gap: 15px;

    color: rgba(255,255,255,0.45);

    font-size: 10px;
}


.payment-icons {
    display: flex;

    gap: 6px;
}


.payment-icon {
    min-width: 37px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 5px;

    color: rgba(255,255,255,0.72);

    font-size: 17px;
}


.security-badge {
    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,0.50);

    font-size: 10px;
}


.security-badge i {
    color: #65d391;
}


.footer-bottom {
    min-height: 65px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.35);

    font-size: 10px;
}


/* =========================================================
   25. CART SIDEBAR
========================================================= */

.cart-sidebar {
    position: fixed;

    top: 0;
    right: -100%;

    z-index: 1800;

    width: min(
        450px,
        94vw
    );

    height: 100vh;

    display: flex;

    flex-direction: column;

    background: var(--white);

    box-shadow:
        -20px 0 60px rgba(0,0,0,0.15);

    transition:
        right 0.3s ease;
}


.cart-sidebar.open {
    right: 0;
}


.cart-header {
    min-height: 82px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 15px 22px;

    border-bottom: 1px solid var(--border);
}


.cart-header h2 {
    margin: 0;

    font-size: 22px;

    letter-spacing: -0.04em;
}


.cart-free-shipping {
    display: flex;

    align-items: center;

    gap: 9px;

    margin: 15px 20px 0;

    padding: 10px 12px;

    border-radius: 9px;

    background: var(--success-light);

    color: var(--success);

    font-size: 10px;
    font-weight: 600;
}


.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 15px 20px;
}


.cart-item {
    display: grid;

    grid-template-columns:
        65px
        1fr
        auto;

    gap: 11px;

    padding: 14px 0;

    border-bottom: 1px solid var(--border);
}


.cart-item-image {
    width: 65px;
    height: 65px;

    overflow: hidden;

    border-radius: 9px;

    background: var(--gray-100);
}


.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.cart-item-info {
    min-width: 0;
}


.cart-item-info h4 {
    overflow: hidden;

    margin: 0 0 5px;

    color: var(--gray-900);

    font-size: 11px;

    text-overflow: ellipsis;
    white-space: nowrap;
}


.cart-item-price {
    color: var(--gray-700);

    font-size: 11px;
    font-weight: 700;
}


.cart-quantity {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 7px;
}


.cart-quantity button {
    width: 23px;
    height: 23px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid var(--gray-200);
    border-radius: 5px;

    background: var(--white);

    color: var(--gray-600);

    font-size: 9px;
}


.cart-quantity span {
    min-width: 18px;

    text-align: center;

    color: var(--gray-800);

    font-size: 10px;
    font-weight: 700;
}


.cart-item-remove {
    border: 0;

    background: transparent;

    color: var(--gray-400);

    font-size: 12px;
}


.cart-item-remove:hover {
    color: var(--danger);
}


.cart-empty {
    display: none;

    flex: 1;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;
}


.cart-empty.active {
    display: flex;
}


.empty-cart-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    border-radius: 50%;

    background: var(--gray-100);

    color: var(--gray-400);

    font-size: 25px;
}


.cart-empty h3 {
    margin-bottom: 5px;

    font-size: 17px;
}


.cart-empty p {
    margin-bottom: 18px;

    font-size: 11px;
}


.cart-footer {
    padding: 18px 20px;

    border-top: 1px solid var(--border);

    background: var(--white);
}


.cart-summary-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 9px;

    color: var(--gray-500);

    font-size: 11px;
}


.cart-summary-row strong {
    color: var(--gray-800);
}


.cart-summary-total {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin: 14px 0 16px;
    padding-top: 14px;

    border-top: 1px solid var(--border);

    color: var(--gray-900);

    font-size: 14px;
    font-weight: 700;
}


.cart-summary-total strong {
    font-size: 19px;
}


.cart-payment-note {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-top: 10px;

    color: var(--gray-400);

    font-size: 9px;

    text-align: center;
}


.cart-payment-note i {
    color: var(--success);
}


/* =========================================================
   26. QUICK VIEW MODAL
========================================================= */

.quick-view-modal {
    position: fixed;

    top: 50%;
    left: 50%;

    z-index: 1900;

    width: min(
        900px,
        calc(100% - 30px)
    );

    max-height: calc(100vh - 30px);

    overflow-y: auto;

    border-radius: var(--radius-xl);

    background: var(--white);

    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, -46%)
        scale(0.97);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}


.quick-view-modal.open {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, -50%)
        scale(1);
}


.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 10;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--gray-200);
    border-radius: 50%;

    background: rgba(255,255,255,0.95);

    color: var(--gray-600);
}


.modal-close:hover {
    color: var(--accent);
}


.quick-view-content {
    display: grid;

    grid-template-columns:
        1fr
        1fr;
}


.quick-view-image {
    min-height: 450px;

    background: var(--gray-100);
}


.quick-view-image img {
    width: 100%;
    height: 100%;

    min-height: 450px;

    object-fit: cover;
}


.quick-view-details {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px;
}


.quick-view-details h2 {
    margin-bottom: 8px;

    color: var(--gray-900);

    font-size: 30px;

    line-height: 1.1;

    letter-spacing: -0.045em;
}


.quick-view-price {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 18px 0;
}


.quick-view-price strong {
    color: var(--gray-900);

    font-size: 25px;
}


.quick-view-price del {
    color: var(--gray-400);

    font-size: 13px;
}


#quickViewDescription {
    font-size: 13px;

    line-height: 1.7;
}


.quick-view-stock {
    display: flex;

    align-items: center;

    gap: 7px;

    margin: 12px 0 22px;

    color: var(--success);

    font-size: 11px;
    font-weight: 700;
}


.quick-view-actions {
    display: flex;

    gap: 8px;
}


/* =========================================================
   27. TOAST
========================================================= */

.toast-container {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 3000;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.toast {
    min-width: 260px;
    max-width: 350px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    border-radius: 10px;

    background: var(--gray-900);

    color: var(--white);

    box-shadow: var(--shadow-lg);

    font-size: 11px;
    font-weight: 600;

    animation:
        toastIn 0.3s ease;
}


.toast.success {
    border-left: 4px solid var(--success);
}


.toast.error {
    border-left: 4px solid var(--danger);
}


.toast.warning {
    border-left: 4px solid var(--warning);
}


.toast i {
    font-size: 14px;
}


/* =========================================================
   28. BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 900;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: var(--gray-900);

    color: var(--white);

    box-shadow: var(--shadow-md);

    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(--accent);
}


/* =========================================================
   29. COOKIE NOTICE
========================================================= */

.cookie-notice {
    position: fixed;

    left: 20px;
    bottom: 20px;

    z-index: 2500;

    width: min(
        520px,
        calc(100% - 40px)
    );

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 16px;

    border: 1px solid var(--border);
    border-radius: 13px;

    background: var(--white);

    box-shadow: var(--shadow-lg);
}


.cookie-notice.hidden {
    display: none;
}


.cookie-notice strong {
    color: var(--gray-900);

    font-size: 11px;
}


.cookie-notice p {
    margin: 2px 0 0;

    font-size: 9px;

    line-height: 1.5;
}


.cookie-actions {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.cookie-actions a {
    color: var(--gray-500);

    font-size: 9px;
}


.cookie-actions a:hover {
    color: var(--accent);
}


/* =========================================================
   30. SKELETON LOADING
========================================================= */

.product-skeleton {
    height: 390px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            90deg,
            #f3f4f6 25%,
            #e9ebee 50%,
            #f3f4f6 75%
        );

    background-size: 200% 100%;

    animation:
        skeleton 1.5s infinite;
}


.category-skeleton {
    height: 180px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            90deg,
            #f3f4f6 25%,
            #e9ebee 50%,
            #f3f4f6 75%
        );

    background-size: 200% 100%;

    animation:
        skeleton 1.5s infinite;
}


/* =========================================================
   31. LOADED CATEGORY MEGA ITEMS
========================================================= */

.category-menu-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 120px;

    padding: 15px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--white);

    text-align: center;

    transition: var(--transition);
}


.category-menu-item:hover {
    border-color: var(--accent);

    background: var(--accent-light);

    transform: translateY(-3px);
}


.category-menu-item i {
    margin-bottom: 10px;

    color: var(--accent);

    font-size: 24px;
}


.category-menu-item strong {
    color: var(--gray-800);

    font-size: 11px;
}


.category-menu-item span {
    margin-top: 3px;

    color: var(--gray-400);

    font-size: 9px;
}


/* =========================================================
   32. PRODUCT EMPTY STATE
========================================================= */

.product-empty {
    grid-column: 1 / -1;

    padding: 60px 20px;

    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-lg);

    background: var(--gray-50);

    text-align: center;
}


.product-empty i {
    margin-bottom: 15px;

    color: var(--gray-300);

    font-size: 35px;
}


.product-empty h3 {
    margin-bottom: 5px;

    font-size: 18px;
}


.product-empty p {
    font-size: 11px;
}


/* =========================================================
   33. ANIMATIONS
========================================================= */

@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes skeleton {

    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }

}


@keyframes toastIn {

    from {
        opacity: 0;

        transform:
            translateY(15px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   34. TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-main {
        gap: 18px;
    }


    .header-actions {
        gap: 12px;
    }


    .header-action-text {
        display: none;
    }


    .navigation-links {
        gap: 17px;
    }


    .homepage-category-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .product-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .benefit {
        border-bottom: 1px solid var(--border);
    }


    .benefit:nth-child(2) {
        border-right: 0;
    }


    .benefit:nth-child(3),
    .benefit:nth-child(4) {
        border-bottom: 0;
    }


    .why-grid {
        gap: 45px;
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   35. TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 900px) {

    .main-navigation {
        display: none;
    }


    .mobile-menu-button {
        display: inline-flex;
    }


    .header-main {
        min-height: 70px;
    }


    .hero-grid {
        grid-template-columns: 1fr;
    }


    .hero-main {
        min-height: 520px;
    }


    .hero-side {
        grid-template-columns:
            repeat(2, 1fr);

        grid-template-rows: auto;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .newsletter-inner {
        grid-template-columns:
            auto
            1fr;
    }


    .newsletter-form {
        grid-column: 1 / -1;
    }


    .monthly-decoration {
        margin-right: 20px;
    }

}


/* =========================================================
   36. MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }


    .announcement-inner {
        gap: 7px;

        font-size: 9px;
    }


    .announcement-inner span:nth-of-type(3),
    .announcement-divider {
        display: none;
    }


    .header-main {
        width: calc(100% - 28px);

        display: grid;

        grid-template-columns:
            auto
            1fr
            auto;

        gap: 10px;
    }


    .brand-text {
        font-size: 21px;
    }


    .brand-icon {
        width: 34px;
        height: 34px;

        font-size: 15px;
    }


    .header-search {
        grid-column: 1 / -1;

        grid-row: 2;

        width: 100%;

        max-width: none;

        margin-bottom: 12px;
    }


    .header-actions {
        gap: 8px;
    }


    .account-action,
    .wishlist-action {
        display: none;
    }


    .section {
        padding: 65px 0;
    }


    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;

        margin-bottom: 24px;
    }


    .section-heading h2 {
        font-size: 29px;
    }


    .section-link {
        font-size: 11px;
    }


    .hero-section {
        padding: 20px 0 30px;
    }


    .hero-main {
        min-height: auto;

        display: block;

        border-radius: 20px;
    }


    .hero-content {
        padding: 35px 25px 25px;
    }


    .hero-content h1 {
        font-size: 43px;
    }


    .hero-content p {
        font-size: 13px;
    }


    .hero-buttons {
        margin-bottom: 25px;
    }


    .hero-trust {
        gap: 12px;
    }


    .hero-trust-item span {
        font-size: 8px;
    }


    .hero-visual {
        min-height: 280px;
    }


    .hero-product-placeholder {
        width: 150px;
        height: 150px;

        border-radius: 35px;
    }


    .hero-product-placeholder i {
        font-size: 55px;
    }


    .hero-circle-one {
        width: 280px;
        height: 280px;

        right: -80px;
        top: 0;
    }


    .floating-offer-one {
        top: 25px;
        right: 10px;
    }


    .floating-offer-two {
        bottom: 25px;
        left: 10px;
    }


    .floating-offer {
        padding: 7px 9px;
    }


    .floating-offer-icon {
        width: 25px;
        height: 25px;
    }


    .floating-offer small {
        font-size: 7px;
    }


    .floating-offer strong {
        font-size: 9px;
    }


    .hero-side {
        grid-template-columns: 1fr;
    }


    .promo-card {
        min-height: 190px;

        padding: 25px;
    }


    .benefits-grid {
        grid-template-columns: 1fr;
    }


    .benefit,
    .benefit:first-child {
        min-height: 76px;

        padding: 15px 0;

        border-right: 0;

        border-bottom: 1px solid var(--border);
    }


    .benefit:last-child {
        border-bottom: 0;
    }


    .homepage-category-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }


    .homepage-category-card {
        min-height: 165px;

        padding: 12px;
    }


    .homepage-category-card .category-image {
        height: 105px;
    }


    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }


    .product-info {
        padding: 12px;
    }


    .product-title {
        font-size: 12px;
    }


    .product-price {
        font-size: 16px;
    }


    .product-add-button {
        font-size: 10px;
    }


    .product-view-button {
        display: none;
    }


    .product-quick-view {
        display: none;
    }


    .shipping-promotion {
        padding-bottom: 65px;
    }


    .shipping-promotion-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }


    .shipping-copy h2 {
        font-size: 19px;
    }


    .shipping-promotion .button {
        width: 100%;
    }


    .monthly-banner {
        min-height: 350px;

        padding: 30px;

        align-items: flex-start;
    }


    .monthly-decoration {
        position: absolute;

        right: -20px;
        bottom: -20px;

        opacity: 0.85;
    }


    .discount-circle {
        width: 145px;
        height: 145px;
    }


    .discount-circle strong {
        font-size: 45px;
    }


    .why-content h2 {
        font-size: 35px;
    }


    .why-points {
        grid-template-columns: 1fr;
    }


    .trust-items {
        grid-template-columns: 1fr;
    }


    .trust-item,
    .trust-item:nth-child(odd),
    .trust-item:nth-child(even) {
        padding: 15px 0;

        border-right: 0;
    }


    .trust-item:nth-child(3) {
        border-bottom: 1px solid var(--border);
    }


    .trust-item:last-child {
        border-bottom: 0;
    }


    .reviews-grid {
        grid-template-columns: 1fr;
    }


    .review-card > p {
        min-height: auto;
    }


    .newsletter-inner {
        grid-template-columns: 1fr;
    }


    .newsletter-icon {
        display: none;
    }


    .newsletter-form {
        grid-column: auto;

        flex-direction: column;
    }


    .newsletter-form .button {
        width: 100%;
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px 20px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-security {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }


    .footer-bottom {
        min-height: 80px;

        align-items: flex-start;

        justify-content: center;

        flex-direction: column;

        gap: 3px;
    }


    .cookie-notice {
        left: 14px;
        bottom: 14px;

        width: calc(100% - 28px);

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }


    .cookie-actions {
        width: 100%;

        justify-content: space-between;
    }


    .quick-view-content {
        grid-template-columns: 1fr;
    }


    .quick-view-image {
        min-height: 280px;
    }


    .quick-view-image img {
        min-height: 280px;

        max-height: 350px;
    }


    .quick-view-details {
        padding: 25px;
    }


    .quick-view-details h2 {
        font-size: 24px;
    }


    .quick-view-actions {
        flex-direction: column;
    }

}


/* =========================================================
   37. SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hero-content h1 {
        font-size: 37px;
    }


    .hero-trust-item:nth-child(3) {
        display: none;
    }


    .homepage-category-card {
        min-height: 150px;
    }


    .homepage-category-card .category-image {
        height: 90px;
    }


    .product-grid {
        gap: 8px;
    }


    .product-info {
        padding: 10px;
    }


    .product-category {
        font-size: 8px;
    }


    .product-title {
        min-height: 36px;

        font-size: 11px;
    }


    .product-rating-stars,
    #quickViewStars {
        font-size: 9px;
    }


    .product-rating-count {
        font-size: 8px;
    }


    .product-price {
        font-size: 14px;
    }


    .product-old-price {
        font-size: 9px;
    }


    .product-card-footer {
        gap: 0;
    }


    .product-add-button {
        min-height: 36px;

        font-size: 9px;
    }


    .product-add-button i {
        display: none;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }


    .footer-brand {
        grid-column: auto;
    }


    .payment-methods {
        align-items: flex-start;

        flex-direction: column;
    }

}


/* =========================================================
   38. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   39. DARKER HOVER STATES / ACCESSIBILITY
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(255,107,53,0.28);

    outline-offset: 2px;
}


/* =========================================================
   40. PRINT
========================================================= */

@media print {

    .announcement-bar,
    .site-header,
    .mobile-menu,
    .mobile-menu-overlay,
    .category-mega-menu,
    .cart-sidebar,
    .cart-overlay,
    .quick-view-modal,
    .modal-overlay,
    .toast-container,
    .back-to-top,
    .cookie-notice {
        display: none !important;
    }


    body {
        color: #000;

        background: #fff;
    }

}


.homepage-category-card-featured {
    border-color: var(--accent);
    background: linear-gradient(145deg, #fff8ed, var(--white));
}


.homepage-category-card-featured::before {
    content: "SPECIAL";
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 7px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
}


/* =========================================================
   HOMEPAGE EXPERIENCE REFRESH
========================================================= */

.hero-section {
    position: relative;
    padding-top: 24px;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 107, 53, .16), transparent 28%),
        linear-gradient(135deg, #fffaf6 0%, #f7fafc 52%, #ffffff 100%);
}


.hero-main {
    box-shadow: 0 24px 70px rgba(17, 24, 39, .14);
}


.hero-visual {
    overflow: hidden;
}


.hero-content h1 {
    max-width: 640px;
    letter-spacing: -.055em;
}


.hero-content p {
    max-width: 500px;
}


.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 107, 53, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
}


.floating-offer {
    box-shadow: 0 14px 28px rgba(17, 24, 39, .16);
    animation: offerFloat 5s ease-in-out infinite;
}


.floating-offer-two {
    animation-delay: -2.2s;
}


.live-offer-rail {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    padding: 0 0 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}


.live-offer-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 107, 53, .22);
    border-radius: 14px;
    background: #fff7f1;
    box-shadow: 0 10px 28px rgba(17, 24, 39, .07);
}


.live-offer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    white-space: nowrap;
}


.live-offer-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 0 5px rgba(22, 163, 74, .12);
    animation: livePulse 1.8s ease-out infinite;
}


.live-offer-copy {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
}


.live-offer-copy strong {
    overflow: hidden;
    color: var(--gray-900);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.live-offer-copy span {
    overflow: hidden;
    color: var(--gray-600);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.live-offer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-900);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}


.live-offer-link:hover {
    color: var(--accent-dark);
}


.live-offer-dismiss {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--gray-500);
}


.live-offer-dismiss:hover {
    background: rgba(17, 24, 39, .06);
    color: var(--gray-900);
}


.categories-section {
    background: #f8fafc;
}


.categories-section .section-heading,
.featured-section .section-heading,
.deals-section .section-heading {
    margin-bottom: 24px;
}


.homepage-category-card {
    min-height: 205px;
    box-shadow: 0 5px 18px rgba(17, 24, 39, .045);
}


.homepage-category-card:hover {
    box-shadow: 0 16px 34px rgba(17, 24, 39, .13);
}


.product-card {
    box-shadow: 0 5px 18px rgba(17, 24, 39, .045);
}


.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(17, 24, 39, .13);
}


@keyframes offerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}


@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, .3); }
    70% { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}


@media (max-width: 700px) {
    .live-offer-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 64px;
        padding: 10px 12px;
    }

    .live-offer-copy {
        display: block;
    }

    .live-offer-copy strong,
    .live-offer-copy span {
        display: block;
        max-width: 100%;
    }

    .live-offer-copy span {
        margin-top: 2px;
        font-size: 10px;
    }

    .live-offer-link {
        width: 30px;
        height: 30px;
        justify-content: center;
        overflow: hidden;
        font-size: 0;
    }

    .live-offer-link i {
        font-size: 12px;
    }

    .live-offer-status span:last-child {
        display: none;
    }

    .homepage-category-card {
        min-height: 178px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .floating-offer,
    .live-offer-pulse {
        animation: none;
    }
}


.live-offer-rail {
    transition: opacity .2s ease, transform .2s ease;
}


.live-offer-rail.live-offer-changing .live-offer-copy {
    opacity: .35;
    transform: translateY(2px);
}


.live-offer-rail.live-offer-dismissed {
    opacity: 0;
    transform: translateY(-8px);
}


.live-offer-copy {
    transition: opacity .18s ease, transform .18s ease;
}