/* =========================================================
   PRO MEGA MART
   GLOBAL STYLES
========================================================= */

:root {
    --navy: #071a3a;
    --navy-2: #0b2655;
    --navy-3: #12366f;
    --red: #d91f2f;
    --red-dark: #b91423;
    --orange: #ff7a18;
    --orange-dark: #e96005;
    --yellow: #ffc62b;
    --green: #13a66b;
    --blue: #2674ff;
    --purple: #7954d9;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --light: #eef2f7;
    --border: #e1e7ef;
    --text: #172033;
    --muted: #68758a;
    --shadow-sm: 0 4px 18px rgba(7, 26, 58, 0.07);
    --shadow-md: 0 12px 35px rgba(7, 26, 58, 0.11);
    --shadow-lg: 0 25px 70px rgba(7, 26, 58, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --container: 1240px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    background: var(--red);
    color: white;
    font-size: 13px;
}

.announcement-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.announcement-inner p {
    margin: 0;
}

.announcement-inner a {
    font-weight: 700;
    text-decoration: underline;
}

.announcement-inner a span {
    margin-left: 4px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(7, 26, 58, 0.07);
}

.header-main {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.brand-mark {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(145deg, var(--red), #ff4d39);
    color: white;
    box-shadow: 0 7px 18px rgba(217, 31, 47, 0.24);
    transform: skew(-5deg);
}

.brand-mark span {
    font-size: 16px;
    font-weight: 900;
    transform: skew(5deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.brand-text strong {
    color: var(--navy);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.brand-text small {
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-top: 4px;
}

.delivery-location {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 105px;
}

.location-icon {
    font-size: 24px;
    color: var(--red);
}

.delivery-location div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.delivery-location small {
    color: var(--muted);
    font-size: 10px;
}

.delivery-location strong {
    font-size: 12px;
    margin-top: 3px;
}

.search-form {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: stretch;
    border: 2px solid transparent;
    background: #f1f4f8;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.search-form:focus-within {
    background: white;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.1);
}

.search-form select {
    width: 100px;
    border: 0;
    border-right: 1px solid #dbe1e9;
    background: #e9edf3;
    padding: 0 10px;
    outline: none;
    color: var(--text);
    font-size: 12px;
}

.search-form input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 15px;
    color: var(--text);
    min-width: 0;
}

.search-form input::placeholder {
    color: #8490a3;
}

.search-form button {
    width: 55px;
    border: 0;
    background: var(--orange);
    color: white;
    font-size: 28px;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--orange-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.account-action,
.orders-action,
.cart-action {
    border: 0;
    background: transparent;
    color: var(--text);
}

.account-action {
    display: flex;
    align-items: center;
    gap: 6px;
}

.action-icon {
    font-size: 27px;
}

.action-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    white-space: nowrap;
}

.action-copy small {
    font-size: 10px;
    color: var(--muted);
}

.action-copy strong {
    font-size: 12px;
}

.down-arrow {
    font-size: 17px;
    margin-left: 2px;
}

.orders-action {
    display: flex;
}

.cart-action {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.cart-icon {
    font-size: 27px;
}

.cart-count {
    position: absolute;
    top: -6px;
    left: 17px;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 800;
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    width: 35px;
}

.mobile-menu-btn span {
    width: 23px;
    height: 2px;
    background: var(--navy);
    display: block;
    margin: 5px auto;
}

.main-nav {
    background: var(--navy);
    color: white;
}

.nav-inner {
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-inner a,
.all-menu {
    color: white;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-inner a:hover {
    color: var(--yellow);
}

.all-menu {
    border: 0;
    background: transparent;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 800;
}

.nav-promo {
    margin-left: auto;
    color: #c9d8f3;
    font-size: 11px;
    display: flex;
    gap: 5px;
    align-items: center;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    overflow: hidden;
}

.hero-carousel {
    min-height: 555px;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-one {
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 122, 24, 0.22), transparent 30%),
        linear-gradient(125deg, #f9fbff, #eef4fb 60%, #fff5ee);
}

.hero-slide-two {
    background:
        radial-gradient(circle at 75% 20%, rgba(19, 166, 107, 0.2), transparent 35%),
        linear-gradient(125deg, #edf8f5, #f7fbff);
}

.hero-slide-three {
    background:
        radial-gradient(circle at 70% 40%, rgba(255, 198, 43, 0.22), transparent 35%),
        linear-gradient(125deg, #fff6eb, #fffdf8);
}

.hero-content {
    min-height: 555px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 45px;
    position: relative;
}

.hero-copy {
    padding: 45px 0 70px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--red);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.hero-copy h1 {
    max-width: 690px;
    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.01;
    letter-spacing: -3.5px;
    color: var(--navy);
    margin-bottom: 22px;
}

.hero-copy h1 span {
    color: var(--red);
    display: block;
}

.hero-copy p {
    max-width: 600px;
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-height: 48px;
    padding: 0 23px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 10px 22px rgba(217, 31, 47, 0.2);
}

.btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 13px 27px rgba(217, 31, 47, 0.28);
}

.btn-light {
    background: white;
    border-color: var(--border);
    color: var(--navy);
}

.btn-light:hover {
    border-color: var(--navy);
}

.btn-orange {
    background: var(--orange);
    color: white;
    box-shadow: 0 10px 24px rgba(255, 122, 24, 0.23);
}

.btn-orange:hover {
    background: var(--orange-dark);
}

.btn-outline {
    border-color: var(--navy);
    color: var(--navy);
    background: white;
}

.hero-trust {
    display: flex;
    gap: 35px;
    margin-top: 38px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    color: var(--navy);
    font-size: 17px;
}

.hero-trust span {
    color: var(--muted);
    font-size: 10px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-visual > img {
    width: min(100%, 550px);
    height: 390px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.discount-badge {
    width: 112px;
    height: 112px;
    position: absolute;
    z-index: 4;
    top: 75px;
    left: 2%;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
    box-shadow: 0 14px 30px rgba(255, 122, 24, 0.28);
}

.discount-badge strong,
.discount-badge small {
    font-size: 10px;
}

.discount-badge span {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.delivery-card {
    position: absolute;
    left: -20px;
    bottom: 90px;
    z-index: 5;
    width: 220px;
    background: white;
    padding: 18px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.delivery-check {
    width: 34px;
    height: 34px;
    background: #e8f8f1;
    color: var(--green);
    display: grid;
    place-items: center;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}

.delivery-card strong {
    font-size: 12px;
    display: block;
}

.delivery-card small {
    color: var(--muted);
    font-size: 9px;
}

.delivery-progress {
    height: 5px;
    background: #e9eef4;
    margin-top: 12px;
    border-radius: 20px;
    overflow: hidden;
}

.delivery-progress span {
    display: block;
    width: 75%;
    height: 100%;
    background: var(--green);
}

.gift-card-visual {
    width: 420px;
    height: 255px;
    border-radius: 25px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    background:
        linear-gradient(135deg, #d51f30, #ff7a18);
    box-shadow: var(--shadow-lg);
    transform: rotate(4deg);
}

.gift-card-visual small {
    font-weight: 800;
    letter-spacing: 2px;
}

.gift-card-visual strong {
    font-size: 60px;
    line-height: 1;
}

.gift-card-visual span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.hero-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(7, 26, 58, 0.1);
    background: rgba(255, 255, 255, 0.85);
    color: var(--navy);
    font-size: 32px;
    line-height: 1;
    transition: var(--transition);
}

.hero-arrow:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    z-index: 20;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}

.hero-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #b7c1d0;
}

.hero-dots button.active {
    width: 26px;
    border-radius: 20px;
    background: var(--red);
}


/* =========================================================
   QUICK FEATURES
========================================================= */

.quick-features {
    background: white;
    border-bottom: 1px solid var(--border);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.feature-card {
    min-height: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 13px;
    border-right: 1px solid var(--border);
}

.feature-card:first-child {
    border-left: 1px solid var(--border);
}

.feature-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    font-size: 19px;
}

.feature-icon.blue {
    background: #e8f0ff;
}

.feature-icon.orange {
    background: #fff0e5;
}

.feature-icon.green {
    background: #e8f8f1;
}

.feature-icon.purple {
    background: #f0ecff;
}

.feature-icon.red {
    background: #ffebee;
}

.feature-icon.navy {
    background: #e9eef8;
}

.feature-card h3 {
    font-size: 11px;
    margin-bottom: 3px;
}

.feature-card p {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.4;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
    padding: 90px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 32px;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

.section-kicker {
    display: block;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;
    margin-bottom: 8px;
}

.section-heading h2,
.centered h2 {
    font-size: clamp(28px, 3vw, 39px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-bottom: 8px;
}

.section-heading p {
    color: var(--muted);
    font-size: 13px;
}

.view-all {
    color: var(--red);
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
}

.view-all:hover {
    text-decoration: underline;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.category-image {
    height: 190px;
    overflow: hidden;
    background: #f1f4f8;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.06);
}

.category-info {
    padding: 17px;
}

.category-info h3 {
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 3px;
}

.category-info p {
    color: var(--muted);
    font-size: 10px;
    margin-bottom: 10px;
}

.category-info span {
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   DEALS
========================================================= */

.deals-section {
    padding: 75px 0;
    color: white;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 122, 24, 0.18), transparent 30%),
        linear-gradient(125deg, #071a3a, #0c2b5c);
}

.deal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.light-kicker {
    color: #ffb083;
}

.deal-header h2 {
    font-size: 35px;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.deal-header p {
    color: #b9c7dc;
    font-size: 12px;
}

.countdown {
    min-width: 155px;
    text-align: center;
    background: rgba(255,255,255,0.08);
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
}

.countdown small {
    color: #bdc9dc;
    font-size: 9px;
}

.countdown-time {
    font-weight: 900;
    font-size: 21px;
    color: white;
    letter-spacing: 2px;
}

.deal-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.deal-product {
    overflow: hidden;
    border-radius: 15px;
    background: white;
    color: var(--text);
}

.deal-image {
    height: 220px;
    background: #f5f6f8;
    position: relative;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.deal-product:hover .deal-image img {
    transform: scale(1.06);
}

.sale-tag {
    position: absolute;
    z-index: 2;
    left: 12px;
    top: 12px;
    background: var(--red);
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 900;
}

.quick-view {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    font-size: 17px;
}

.deal-info {
    padding: 17px;
}

.product-category {
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.deal-info h3 {
    font-size: 13px;
    margin: 4px 0;
}

.rating {
    color: #f5a800;
    font-size: 10px;
    margin: 6px 0;
}

.rating span {
    color: var(--muted);
    margin-left: 4px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-row strong {
    font-size: 19px;
    color: var(--navy);
}

.price-row del {
    color: #9ba4b2;
    font-size: 10px;
}

.deal-info > small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    margin-bottom: 12px;
}

.add-btn {
    border: 0;
    background: var(--navy);
    color: white;
    border-radius: 7px;
    min-height: 37px;
    width: 100%;
    font-size: 10px;
    font-weight: 900;
    transition: var(--transition);
}

.add-btn:hover {
    background: var(--red);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.filter-btn {
    border: 1px solid var(--border);
    background: white;
    color: var(--muted);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 10px;
    font-weight: 800;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: transparent;
}

.product-card.hidden {
    display: none;
}

.product-image {
    height: 230px;
    position: relative;
    overflow: hidden;
    background: #f5f7fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: white;
    font-size: 8px;
    padding: 5px 7px;
    border-radius: 4px;
    font-weight: 900;
}

.product-badge.fresh {
    background: var(--green);
}

.wishlist-btn {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    background: white;
    border-radius: 50%;
    font-size: 17px;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.wishlist-btn:hover {
    color: var(--red);
    transform: scale(1.1);
}

.product-content {
    padding: 17px;
}

.product-content h3 {
    color: var(--navy);
    font-size: 14px;
    line-height: 1.35;
    margin: 4px 0 5px;
}

.product-description {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
    margin: 8px 0 13px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-bottom div {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.product-bottom strong {
    font-size: 19px;
    color: var(--navy);
}

.product-bottom small {
    color: var(--muted);
    font-size: 9px;
}

.cart-plus {
    width: 39px;
    height: 39px;
    min-height: 39px;
    border-radius: 9px;
    font-size: 23px;
    line-height: 1;
    width: 39px;
}

.center-button {
    text-align: center;
    margin-top: 35px;
}


/* =========================================================
   MEMBERSHIP
========================================================= */

.membership-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 122, 24, 0.25), transparent 30%),
        linear-gradient(130deg, #091d40, #112f5d);
    color: white;
}

.membership-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.membership-label {
    color: var(--yellow);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 2px;
}

.membership-copy h2 {
    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 15px 0;
}

.membership-copy h2 span {
    color: #ff8a3d;
}

.membership-copy > p {
    color: #bdcbe0;
    max-width: 520px;
    font-size: 13px;
    margin-bottom: 20px;
}

.membership-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 23px;
}

.membership-price strong {
    font-size: 33px;
}

.membership-price span {
    color: #b6c3d6;
    font-size: 12px;
    margin-left: 5px;
}

.membership-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.member-benefit {
    display: flex;
    gap: 13px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
}

.member-benefit > span {
    font-size: 24px;
}

.member-benefit h3 {
    font-size: 12px;
    margin-bottom: 5px;
}

.member-benefit p {
    color: #aebdd2;
    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 15px;
    margin-top: 55px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.step-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 17px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #f1f5fb;
    font-size: 27px;
    box-shadow: inset 0 0 0 1px var(--border);
}

.step h3 {
    font-size: 14px;
    margin-bottom: 7px;
}

.step p {
    color: var(--muted);
    font-size: 10px;
}

.step-line {
    width: 70px;
    height: 1px;
    background: var(--border);
    margin-top: 77px;
}


/* =========================================================
   GIFT SECTION
========================================================= */

.gift-section {
    padding: 90px 0;
    background: #f6f8fb;
}

.gift-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.gift-copy h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.06;
    letter-spacing: -2px;
    color: var(--navy);
    margin-bottom: 18px;
}

.gift-copy p {
    color: var(--muted);
    font-size: 13px;
    max-width: 500px;
    margin-bottom: 25px;
}

.gift-visual {
    min-height: 350px;
    position: relative;
    display: grid;
    place-items: center;
}

.gift-card {
    width: min(470px, 90%);
    aspect-ratio: 1.62;
    border-radius: 24px;
    position: absolute;
}

.gift-card-back {
    background: #f0b400;
    transform: translate(40px, 30px) rotate(8deg);
}

.gift-card-front {
    padding: 28px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 90% 20%, rgba(255,255,255,0.22), transparent 25%),
        linear-gradient(135deg, #e22032, #ff7a18);
    box-shadow: var(--shadow-lg);
    transform: rotate(-5deg);
}

.gift-brand {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.gift-value {
    font-size: 62px;
    line-height: 1;
    font-weight: 900;
}

.gift-number {
    letter-spacing: 2px;
    font-size: 11px;
}

.gift-footer {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================================
   BUSINESS
========================================================= */

.business-section {
    padding: 95px 0;
    background: white;
}

.business-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.business-content h2 {
    color: var(--navy);
    font-size: clamp(33px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 17px;
}

.business-content > p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.business-list {
    list-style: none;
    margin-bottom: 25px;
}

.business-list li {
    display: flex;
    gap: 9px;
    align-items: center;
    font-size: 11px;
    margin: 9px 0;
}

.business-list span {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #e7f8f1;
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 900;
}

.dashboard {
    border-radius: 20px;
    background: white;
    border: 1px solid var(--border);
    padding: 25px;
    box-shadow: var(--shadow-lg);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-top small {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 1px;
    font-weight: 800;
}

.dashboard-top h3 {
    color: var(--navy);
    font-size: 16px;
}

.dashboard-avatar {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.dashboard-stats > div {
    background: #f7f9fc;
    padding: 14px;
    border-radius: 10px;
}

.dashboard-stats small {
    display: block;
    color: var(--muted);
    font-size: 8px;
}

.dashboard-stats strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
    margin: 3px 0;
}

.dashboard-stats .positive {
    color: var(--green);
    font-size: 8px;
    font-weight: 800;
}

.chart {
    padding: 22px 10px 12px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: var(--muted);
}

.bars {
    height: 140px;
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding: 0 25px;
    border-bottom: 1px solid var(--border);
}

.bars span {
    flex: 1;
    max-width: 40px;
    background: linear-gradient(to top, var(--red), #ff8051);
    border-radius: 7px 7px 0 0;
}

.recent-order {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    font-size: 9px;
    color: var(--muted);
}

.recent-order strong {
    color: var(--navy);
}

.recent-order .status {
    margin-left: auto;
    color: var(--green);
    background: #e8f8f1;
    padding: 5px 8px;
    border-radius: 20px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    background: #f7f9fc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.testimonial {
    background: white;
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 17px;
    position: relative;
}

.quote-mark {
    position: absolute;
    right: 22px;
    top: 12px;
    color: #e9edf3;
    font-size: 70px;
    line-height: 1;
}

.testimonial .rating {
    margin-bottom: 14px;
}

.testimonial > p {
    color: #536176;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.customer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-avatar {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    color: white;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 900;
}

.avatar-one {
    background: linear-gradient(135deg, #d94a73, #ff9d5c);
}

.avatar-two {
    background: linear-gradient(135deg, #1c65bf, #64b5f6);
}

.avatar-three {
    background: linear-gradient(135deg, #1b9b6f, #80d8ad);
}

.customer strong {
    display: block;
    font-size: 11px;
}

.customer span {
    color: var(--muted);
    display: block;
    font-size: 9px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 90px 0;
}

.faq-inner {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
}

.faq-intro h2 {
    color: var(--navy);
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 13px;
}

.faq-intro > p {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 25px;
}

.support-card {
    padding: 18px;
    border-radius: 13px;
    background: #f5f8fc;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 12px;
}

.support-card > span {
    font-size: 22px;
    grid-row: span 2;
}

.support-card strong {
    font-size: 11px;
}

.support-card p {
    color: var(--muted);
    font-size: 9px;
}

.support-card a {
    grid-column: 2;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    margin-top: 5px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    min-height: 65px;
    border: 0;
    background: transparent;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    gap: 20px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f3f7;
    display: grid;
    place-items: center;
    font-size: 19px;
    color: var(--navy);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--red);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: var(--muted);
    font-size: 11px;
    padding: 0 50px 20px 0;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    background: var(--navy);
    color: white;
    overflow: hidden;
}

.final-cta-inner {
    min-height: 390px;
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
}

.final-cta-copy {
    position: relative;
    z-index: 3;
    max-width: 730px;
    padding: 60px 0;
}

.final-cta-copy > span {
    color: var(--yellow);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.final-cta-copy h2 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -2.5px;
    margin: 13px 0;
}

.final-cta-copy p {
    color: #bbc8da;
    font-size: 13px;
    max-width: 570px;
    margin: 0 auto 25px;
}

.btn-transparent {
    color: white;
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
}

.btn-transparent:hover {
    background: white;
    color: var(--navy);
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.decoration-one {
    width: 300px;
    height: 300px;
    background: rgba(217, 31, 47, 0.18);
    left: -120px;
    top: -90px;
}

.decoration-two {
    width: 260px;
    height: 260px;
    background: rgba(255, 122, 24, 0.16);
    right: -80px;
    bottom: -80px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #041329;
    color: white;
}

.footer-main {
    padding: 65px 0 55px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 0.75fr) 1.2fr;
    gap: 35px;
}

.footer-logo .brand-text strong {
    color: white;
}

.footer-brand > p {
    color: #94a5bf;
    font-size: 10px;
    line-height: 1.7;
    max-width: 250px;
    margin: 18px 0;
}

.social-links {
    display: flex;
    gap: 7px;
}

.social-links a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red);
}

.footer-column h3,
.footer-contact h3 {
    font-size: 11px;
    margin-bottom: 16px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column a {
    color: #91a2bc;
    font-size: 10px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.contact-row {
    display: flex;
    gap: 9px;
    margin-bottom: 13px;
}

.contact-row > span {
    font-size: 15px;
}

.contact-row strong {
    display: block;
    font-size: 9px;
}

.contact-row p {
    color: #91a2bc;
    font-size: 9px;
    line-height: 1.5;
}

.store-hours {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.store-hours strong {
    font-size: 9px;
}

.store-hours span {
    color: #91a2bc;
    font-size: 9px;
}

.footer-security {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.security-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 45px;
}

.security-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.security-item > span {
    font-size: 20px;
}

.security-item strong,
.security-item small {
    display: block;
}

.security-item strong {
    font-size: 9px;
}

.security-item small {
    color: #8294af;
    font-size: 8px;
}

.payment-methods {
    margin-left: auto;
}

.payment-methods > small {
    color: #8294af;
    font-size: 8px;
}

.payment-methods > div {
    display: flex;
    gap: 5px;
    margin-top: 6px;
}

.payment-methods span {
    background: white;
    color: var(--navy);
    padding: 4px 7px;
    border-radius: 3px;
    font-size: 7px;
    font-weight: 900;
}

.footer-bottom {
    position: relative;
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: #72849f;
    font-size: 8px;
}

.footer-bottom-inner > div {
    display: flex;
    gap: 18px;
}

.footer-bottom a:hover {
    color: white;
}

.back-to-top {
    position: fixed;
    z-index: 100;
    bottom: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: var(--red);
    color: white;
    box-shadow: var(--shadow-md);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   CART DRAWER
========================================================= */

.cart-overlay,
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(3, 12, 29, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.cart-overlay.visible,
.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    z-index: 2100;
    top: 0;
    right: 0;
    width: min(450px, 100%);
    height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 50px rgba(0,0,0,0.15);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}

.cart-header h2 {
    color: var(--navy);
    font-size: 24px;
}

.close-cart,
.modal-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: #f2f4f7;
    border-radius: 50%;
    font-size: 25px;
    color: var(--navy);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.empty-cart h3 {
    font-size: 18px;
    color: var(--navy);
}

.empty-cart p {
    color: var(--muted);
    font-size: 11px;
    margin: 6px 0 20px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
}

.cart-item-image {
    width: 72px;
    height: 72px;
    border-radius: 9px;
    object-fit: cover;
}

.cart-item-info h4 {
    font-size: 12px;
    line-height: 1.4;
}

.cart-item-info strong {
    display: block;
    color: var(--navy);
    margin-top: 4px;
    font-size: 13px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
}

.quantity-controls button {
    width: 23px;
    height: 23px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 5px;
}

.quantity-controls span {
    font-size: 10px;
    font-weight: 800;
}

.remove-item {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 10px;
}

.remove-item:hover {
    color: var(--red);
}

.cart-footer {
    border-top: 1px solid var(--border);
    padding: 20px 24px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin: 7px 0;
}

.cart-summary-row.total {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 15px;
}

.checkout-btn {
    width: 100%;
    min-height: 49px;
    border: 0;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    margin-top: 15px;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: var(--orange-dark);
}

.secure-note {
    color: var(--muted);
    text-align: center;
    font-size: 8px;
    margin-top: 10px;
}


/* =========================================================
   MODALS
========================================================= */

.modal-overlay {
    display: grid;
    place-items: center;
    padding: 20px;
}

.account-modal,
.checkout-modal,
.small-modal {
    width: min(450px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.97);
    transition: var(--transition);
}

.modal-overlay.visible > div {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.modal-brand {
    margin-bottom: 25px;
}

.modal-brand .brand-mark {
    width: 48px;
    height: 48px;
}

.account-modal h2,
.small-modal h2 {
    color: var(--navy);
    font-size: 25px;
    line-height: 1.1;
    margin-bottom: 7px;
}

.account-modal > p,
.small-modal > p {
    color: var(--muted);
    font-size: 11px;
    margin-bottom: 22px;
}

.account-modal label,
.small-modal label,
.checkout-modal label {
    display: block;
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 13px;
}

.account-modal input,
.small-modal input,
.checkout-modal input {
    display: block;
    width: 100%;
    height: 44px;
    margin-top: 6px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 7px;
    outline: none;
    font-size: 11px;
    color: var(--text);
}

.account-modal input:focus,
.small-modal input:focus,
.checkout-modal input:focus {
    border-color: var(--orange);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3px 0 17px;
}

.login-options a {
    color: var(--red);
    font-size: 9px;
    font-weight: 700;
}

.remember {
    margin: 0 !important;
    display: flex !important;
    gap: 5px;
    align-items: center;
    color: var(--muted) !important;
    font-weight: 500 !important;
}

.remember input {
    width: 13px !important;
    height: 13px !important;
    margin: 0 !important;
}

.full-btn {
    width: 100%;
    border: 0;
}

.modal-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a1aaba;
    font-size: 10px;
    margin: 20px 0;
}

.modal-divider::before,
.modal-divider::after {
    content: "";
    height: 1px;
    background: var(--border);
    flex: 1;
}

.social-login {
    width: 100%;
    height: 43px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
}

.signup-text {
    text-align: center;
    margin: 20px 0 0 !important;
}

.signup-text a {
    color: var(--red);
    font-weight: 800;
}


/* =========================================================
   CHECKOUT MODAL
========================================================= */

.checkout-modal {
    width: min(980px, 100%);
}

.checkout-heading {
    margin-bottom: 25px;
}

.checkout-heading h2 {
    color: var(--navy);
    font-size: 26px;
}

.checkout-heading p {
    color: var(--muted);
    font-size: 10px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.checkout-grid h3 {
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payment-title {
    margin-top: 22px;
}

.payment-option {
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px;
    cursor: pointer;
}

.payment-option input {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

.payment-option > span {
    font-size: 18px;
}

.payment-option strong,
.payment-option small {
    display: block;
}

.payment-option small {
    color: var(--muted);
    font-size: 8px;
    margin-top: 2px;
}

.checkout-summary {
    background: #f7f9fc;
    border-radius: 14px;
    padding: 20px;
    align-self: start;
}

.checkout-summary-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.checkout-summary-item img {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    object-fit: cover;
}

.checkout-summary-item div {
    flex: 1;
}

.checkout-summary-item strong {
    display: block;
    color: var(--navy);
    font-size: 9px;
}

.checkout-summary-item span {
    color: var(--muted);
    font-size: 8px;
}

.checkout-total {
    margin-top: 15px;
}

.checkout-total > div {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    margin: 8px 0;
}

.checkout-total .grand-total {
    border-top: 1px solid var(--border);
    padding-top: 13px;
    margin-top: 13px;
    font-size: 14px;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;
    z-index: 5000;
    right: 22px;
    top: 90px;
    width: min(360px, calc(100% - 44px));
    background: var(--navy);
    color: white;
    border-radius: 11px;
    padding: 14px;
    display: flex;
    gap: 11px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transform: translateX(130%);
    transition: transform 0.35s ease;
}

.toast.visible {
    transform: translateX(0);
}

.toast-icon {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
}

.toast strong {
    font-size: 10px;
}

.toast p {
    color: #aebdd2;
    font-size: 9px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-main {
        gap: 12px;
    }

    .delivery-location {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .orders-action {
        display: none;
    }

    .nav-inner {
        gap: 17px;
        overflow-x: auto;
    }

    .nav-inner::-webkit-scrollbar {
        display: none;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card {
        border-bottom: 1px solid var(--border);
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .deal-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }

    .footer-contact {
        grid-column: span 2;
    }
}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .announcement-inner {
        font-size: 10px;
        min-height: 34px;
        text-align: center;
    }

    .header-main {
        min-height: 68px;
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: block;
    }

    .brand {
        margin-right: auto;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .header-actions {
        gap: 7px;
    }

    .account-action .action-copy,
    .account-action .down-arrow,
    .cart-action strong {
        display: none;
    }

    .cart-action {
        padding: 4px;
    }

    .search-form {
        order: 5;
        flex-basis: 100%;
        margin-bottom: 10px;
    }

    .site-header {
        position: sticky;
    }

    .main-nav {
        display: none;
    }

    .main-nav.mobile-open {
        display: block;
    }

    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
        gap: 14px;
        overflow: visible;
    }

    .nav-promo {
        margin-left: 0;
    }

    .hero-carousel,
    .hero-content {
        min-height: 690px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-copy {
        padding: 55px 0 20px;
    }

    .hero-copy h1 {
        font-size: clamp(39px, 11vw, 55px);
        letter-spacing: -2.5px;
    }

    .hero-copy p {
        font-size: 14px;
    }

    .hero-trust {
        gap: 20px;
        margin-top: 25px;
    }

    .hero-visual {
        height: 270px;
    }

    .hero-visual > img {
        height: 240px;
        width: 90%;
    }

    .discount-badge {
        width: 82px;
        height: 82px;
        top: 10px;
        left: 3%;
    }

    .discount-badge span {
        font-size: 24px;
    }

    .delivery-card {
        left: 0;
        bottom: 25px;
        width: 185px;
        padding: 12px;
    }

    .gift-card-visual {
        width: 290px;
        height: 180px;
        padding: 20px;
    }

    .gift-card-visual strong {
        font-size: 42px;
    }

    .hero-arrow {
        top: 45%;
    }

    .quick-features {
        display: none;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading .view-all {
        display: inline-block;
        margin-top: 12px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-image {
        height: 150px;
    }

    .product-image {
        height: 180px;
    }

    .product-description {
        display: none;
    }

    .deal-header {
        display: block;
    }

    .countdown {
        display: inline-block;
        margin-top: 15px;
    }

    .membership-inner,
    .gift-inner,
    .business-inner,
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .membership-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-line {
        display: none;
    }

    .step-icon {
        margin-bottom: 10px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .faq-intro h2 {
        font-size: 33px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: span 2;
    }

    .security-inner {
        flex-wrap: wrap;
        padding: 20px 0;
        gap: 20px;
    }

    .payment-methods {
        margin-left: 0;
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding: 18px 0 60px;
        text-align: center;
    }

    .footer-bottom-inner > div {
        flex-wrap: wrap;
        justify-content: center;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .brand-text {
        display: none;
    }

    .search-form select {
        width: 75px;
        font-size: 10px;
    }

    .search-form input {
        font-size: 11px;
        padding: 0 9px;
    }

    .search-form button {
        width: 48px;
    }

    .hero-carousel,
    .hero-content {
        min-height: 650px;
    }

    .hero-copy {
        padding-top: 40px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        justify-content: space-between;
    }

    .hero-trust div {
        text-align: center;
    }

    .hero-visual {
        height: 225px;
    }

    .hero-visual > img {
        height: 205px;
    }

    .category-grid,
    .product-grid,
    .deal-products {
        grid-template-columns: 1fr 1fr;
    }

    .category-image {
        height: 120px;
    }

    .category-info {
        padding: 12px;
    }

    .category-info h3 {
        font-size: 11px;
    }

    .category-info p {
        font-size: 8px;
    }

    .deal-image {
        height: 150px;
    }

    .deal-info {
        padding: 12px;
    }

    .deal-info h3 {
        font-size: 11px;
    }

    .price-row strong {
        font-size: 16px;
    }

    .product-image {
        height: 145px;
    }

    .product-content {
        padding: 12px;
    }

    .product-content h3 {
        font-size: 11px;
    }

    .product-bottom strong {
        font-size: 16px;
    }

    .cart-plus {
        width: 33px;
        height: 33px;
        min-height: 33px;
    }

    .membership-benefits {
        grid-template-columns: 1fr;
    }

    .gift-visual {
        min-height: 260px;
    }

    .gift-card {
        width: 88%;
    }

    .gift-card-front {
        padding: 20px;
    }

    .gift-value {
        font-size: 45px;
    }

    .dashboard {
        padding: 15px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .bars {
        gap: 8px;
        padding: 0 8px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: span 2;
    }

    .account-modal,
    .checkout-modal,
    .small-modal {
        padding: 22px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

:focus-visible {
    outline: 3px solid rgba(255, 122, 24, 0.35);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}