/* =========================================================
   LADLI LOCAL STORE
   Main Website Styles
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff4f81;
    --primary-dark: #e83e70;
    --secondary: #ff8a3d;
    --dark: #172033;
    --text: #4b5563;
    --light-text: #6b7280;
    --white: #ffffff;
    --background: #f7f9fc;
    --border: #e7eaf0;
    --success: #22a06b;
    --shadow: 0 10px 35px rgba(23, 32, 51, 0.08);
    --shadow-hover: 0 15px 40px rgba(23, 32, 51, 0.13);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   HEADER
   ========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(23, 32, 51, 0.06);
}

.header-container {
    width: min(1400px, 94%);
    min-height: 78px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 12px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    color: var(--dark);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.brand-tagline {
    margin-top: 4px;
    color: var(--light-text);
    font-size: 11px;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
}

.nav-link {
    position: relative;
    padding: 10px 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    border-radius: 9px;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: #fff2f6;
}

.nav-link.active {
    color: var(--primary);
    background: #fff2f6;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;
    height: 2px;
    background: var(--primary);
    border-radius: 20px;
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-btn,
.cart-btn,
.account-btn {
    min-height: 42px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: 0.25s ease;
}

.location-btn {
    padding: 0 13px;
    gap: 5px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.location-btn:hover,
.cart-btn:hover {
    border-color: #ffc2d3;
    background: #fff6f8;
    color: var(--primary);
}

.cart-btn {
    position: relative;
    width: 44px;
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;

    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: white;

    border: 2px solid white;
    border-radius: 50%;

    font-size: 9px;
    font-weight: 700;
}

.account-btn {
    padding: 0 15px;
    background: var(--primary);
    color: white;
    border-color: var(--primary);

    font-size: 13px;
    font-weight: 700;
}

.account-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-btn {
    display: none;

    width: 43px;
    height: 43px;

    background: #fff2f6;
    color: var(--primary);

    border: 1px solid #ffd6e2;
    border-radius: 10px;

    font-size: 22px;
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-nav {
    display: none;
}


/* =========================================================
   COMMON CONTAINER
   ========================================================= */

.hero-container,
.section-container,
.footer-container {
    width: min(1200px, 92%);
    margin: auto;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;

    padding: 85px 0 75px;

    background:
        radial-gradient(circle at 90% 15%, #ffe3ec 0, transparent 27%),
        radial-gradient(circle at 10% 90%, #fff0df 0, transparent 28%),
        #ffffff;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 8px 14px;
    margin-bottom: 20px;

    background: #fff1f6;
    color: var(--primary);

    border: 1px solid #ffd5e2;
    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
}

.hero-content h1 {
    max-width: 700px;

    color: var(--dark);

    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.08;
    letter-spacing: -1.8px;

    margin-bottom: 22px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 620px;

    color: var(--text);
    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 28px;
}


/* =========================================================
   HERO SEARCH
   ========================================================= */

.hero-search {
    max-width: 650px;
    height: 58px;

    display: flex;
    align-items: center;

    background: white;

    border: 1px solid #dfe4ec;
    border-radius: 14px;

    box-shadow: var(--shadow);

    overflow: hidden;
}

.search-icon {
    padding-left: 18px;
    font-size: 19px;
}

.hero-search input {
    flex: 1;

    height: 100%;

    padding: 0 14px;

    border: none;
    outline: none;

    color: var(--dark);
    background: transparent;

    font-size: 14px;
}

.hero-search input::placeholder {
    color: #9ca3af;
}

.hero-search button {
    height: 44px;
    margin-right: 7px;
    padding: 0 22px;

    background: var(--primary);
    color: white;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.hero-search button:hover {
    background: var(--primary-dark);
}


/* =========================================================
   LOCATION BUTTON
   ========================================================= */

.hero-location-btn {
    margin-top: 14px;

    padding: 11px 17px;

    background: #ffffff;
    color: var(--dark);

    border: 1px solid var(--border);
    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.hero-location-btn:hover {
    color: var(--primary);
    border-color: #ffc3d4;
    background: #fff8fa;
}


/* =========================================================
   HERO FEATURES
   ========================================================= */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-feature > span {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3f7;
    border-radius: 10px;

    font-size: 17px;
}

.hero-feature strong,
.hero-feature small {
    display: block;
}

.hero-feature strong {
    color: var(--dark);
    font-size: 12px;
}

.hero-feature small {
    margin-top: 2px;
    color: var(--light-text);
    font-size: 10px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    width: min(360px, 100%);

    padding: 40px 30px;

    background: white;

    border: 1px solid #edf0f5;
    border-radius: 28px;

    box-shadow: 0 25px 70px rgba(23, 32, 51, 0.12);

    text-align: center;

    position: relative;
    z-index: 2;
}

.hero-card-icon {
    width: 100px;
    height: 100px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f5;

    border-radius: 50%;

    font-size: 48px;
}

.hero-card h3 {
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 7px;
}

.hero-card p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 22px;
}

.delivery-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 13px;

    background: #f0faf5;
    color: var(--success);

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;

    background: var(--success);
    border-radius: 50%;
}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.floating-card {
    position: absolute;
    z-index: 3;

    padding: 13px 17px;

    background: white;

    border: 1px solid #edf0f5;
    border-radius: 12px;

    box-shadow: var(--shadow);

    font-size: 12px;
}

.floating-card strong {
    margin-left: 4px;
}

.floating-card-one {
    top: 48px;
    right: 0;
}

.floating-card-two {
    bottom: 45px;
    left: 0;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.section-heading > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-heading h2 {
    margin-top: 8px;

    color: var(--dark);

    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
}

.section-heading p {
    margin-top: 9px;

    color: var(--light-text);
    font-size: 14px;
}


/* =========================================================
   QUICK SECTION
   ========================================================= */

.quick-section {
    padding: 80px 0;
    background: var(--background);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.quick-card {
    position: relative;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 21px 17px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(23, 32, 51, 0.04);

    transition: 0.25s ease;
}

.quick-card:hover {
    transform: translateY(-4px);
    border-color: #ffc5d6;
    box-shadow: var(--shadow-hover);
}

.quick-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff2f6;

    border-radius: 12px;

    font-size: 21px;
}

.quick-card h3 {
    color: var(--dark);
    font-size: 14px;
}

.quick-card p {
    color: var(--light-text);
    font-size: 11px;
    margin-top: 2px;
}

.quick-arrow {
    margin-left: auto;

    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}


/* =========================================================
   PRODUCTS PREVIEW
   ========================================================= */

.products-preview {
    padding: 80px 0;
    background: white;
}

.empty-product-message {
    max-width: 620px;

    margin: auto;
    padding: 50px 25px;

    text-align: center;

    border: 1px dashed #dfe4ec;
    border-radius: 18px;

    background: #fafbfc;
}

.empty-product-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1f6;

    border-radius: 50%;

    font-size: 32px;
}

.empty-product-message h3 {
    color: var(--dark);
    font-size: 20px;
}

.empty-product-message p {
    max-width: 450px;

    margin: 8px auto 22px;

    color: var(--light-text);
    font-size: 13px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    background: var(--primary);
    color: white;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.main-footer {
    padding: 35px 0 25px;

    background: #172033;
    color: white;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 9px;
}

.footer-brand h3 {
    font-size: 14px;
}

.footer-brand p {
    margin-top: 3px;
    color: #aeb7c7;
    font-size: 11px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-links a {
    color: #d5dbe5;
    font-size: 12px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ff8eae;
}

.footer-copy {
    width: 100%;

    padding-top: 20px;
    margin-top: 5px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;
}

.footer-copy p {
    color: #9da7b8;
    font-size: 11px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 0;
    }

    .nav-link {
        padding: 9px 8px;
        font-size: 12px;
    }

    .location-btn span {
        display: none;
    }

    .hero-container {
        gap: 40px;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   CATEGORIES SECTION
   ========================================================= */

.categories-section {
    padding: 80px 0;
    background: #ffffff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: 0 5px 20px rgba(23, 32, 51, 0.05);

    transition: 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #ffc5d6;
    box-shadow: var(--shadow-hover);
}

.category-image {
    height: 150px;
    overflow: hidden;
    background: #f4f6f8;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.06);
}

.category-info {
    padding: 15px 15px 17px;
}

.category-info h3 {
    color: var(--dark);
    font-size: 15px;
}

.category-info p {
    margin-top: 3px;
    color: var(--light-text);
    font-size: 11px;
}

.category-arrow {
    position: absolute;
    right: 13px;
    bottom: 14px;

    color: var(--primary);

    font-size: 19px;
    font-weight: 700;
}

.section-action {
    margin-top: 30px;
    text-align: center;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 19px;

    background: white;
    color: var(--primary);

    border: 1px solid #ffc2d4;
    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    transition: 0.25s ease;
}

.outline-btn:hover {
    background: #fff2f6;
    transform: translateY(-1px);
}


/* =========================================================
   NEARBY STORES
   ========================================================= */

.stores-section {
    padding: 80px 0;
    background: var(--background);
}

.store-grid {
    max-width: 700px;
    margin: auto;
}

.store-placeholder {
    padding: 45px 25px;

    text-align: center;

    background: white;

    border: 1px dashed #d9dee7;
    border-radius: 18px;
}

.store-placeholder-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff2f6;

    border-radius: 50%;

    font-size: 34px;
}

.store-placeholder h3 {
    color: var(--dark);
    font-size: 20px;
}

.store-placeholder p {
    max-width: 480px;

    margin: 8px auto 22px;

    color: var(--light-text);
    font-size: 13px;
}


/* =========================================================
   POPULAR PRODUCTS
   ========================================================= */

.popular-products-section {
    padding: 80px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-placeholder-card {
    overflow: hidden;

    background: white;

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: 0 5px 20px rgba(23, 32, 51, 0.05);

    transition: 0.25s ease;
}

.product-placeholder-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-placeholder-image {
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #fff1f6,
            #fff8ef
        );

    font-size: 55px;
}

.product-placeholder-card h3 {
    padding: 15px 15px 0;

    color: var(--dark);
    font-size: 15px;
}

.product-placeholder-card p {
    padding: 5px 15px 18px;

    color: var(--light-text);
    font-size: 11px;
    line-height: 1.6;
}

/* =========================================================
   CATEGORIES PAGE
   ========================================================= */


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    padding: 70px 20px 65px;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 217, 227, 0.75),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #fff8fa,
            #f8fafc
        );

    border-bottom: 1px solid var(--border);
}


.page-hero-container {
    width: min(1150px, 100%);
    margin: auto;

    text-align: center;
}


.page-hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 13px;

    background: #fff0f5;

    border: 1px solid #ffd0dc;
    border-radius: 30px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
}


.page-hero h1 {
    margin-top: 17px;

    color: var(--dark);

    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;

    letter-spacing: -1px;
}


.page-hero p {
    max-width: 620px;

    margin: 13px auto 0;

    color: var(--light-text);

    font-size: 14px;
    line-height: 1.7;
}



/* =========================================================
   CATEGORY SEARCH
   ========================================================= */

.category-search-box {
    width: min(650px, 100%);

    margin: 28px auto 0;

    display: flex;
    align-items: center;

    padding: 5px;

    background: #ffffff;

    border: 1px solid #e0e4ea;
    border-radius: 13px;

    box-shadow:
        0 8px 30px rgba(23, 32, 51, 0.08);

    transition: 0.25s ease;
}


.category-search-box:focus-within {
    border-color: #ffb9cc;

    box-shadow:
        0 8px 30px rgba(255, 108, 145, 0.12);
}


.category-search-box > span {
    width: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}


.category-search-box input {
    flex: 1;

    min-width: 0;

    padding: 13px 8px;

    border: none;
    outline: none;

    background: transparent;

    color: var(--dark);

    font-size: 13px;
}


.category-search-box input::placeholder {
    color: #9aa2ad;
}



/* =========================================================
   LOCATION SECTION
   ========================================================= */

.category-location-section {
    padding: 35px 20px 15px;

    background: var(--background);
}


.category-location-card {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 20px 22px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow:
        0 5px 22px rgba(23, 32, 51, 0.05);
}


.category-location-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f5;

    border-radius: 14px;

    font-size: 25px;
}


.category-location-content {
    flex: 1;
}


.category-location-content h3 {
    color: var(--dark);

    font-size: 16px;
}


.category-location-content p {
    margin-top: 5px;

    color: var(--light-text);

    font-size: 12px;
    line-height: 1.5;
}



/* =========================================================
   ALL CATEGORIES
   ========================================================= */

.all-categories-section {
    padding: 65px 20px 80px;

    background: var(--background);
}


.full-category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;
}


.full-category-card {
    position: relative;

    overflow: hidden;

    display: block;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 17px;

    box-shadow:
        0 5px 20px rgba(23, 32, 51, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.full-category-card:hover {
    transform: translateY(-6px);

    border-color: #ffc2d3;

    box-shadow:
        0 14px 35px rgba(23, 32, 51, 0.10);
}


.full-category-image {
    width: 100%;
    height: 190px;

    overflow: hidden;

    background: #f4f6f8;
}


.full-category-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.full-category-card:hover
.full-category-image img {
    transform: scale(1.07);
}


.full-category-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 16px;
}


.full-category-content h3 {
    color: var(--dark);

    font-size: 16px;
    font-weight: 700;
}


.full-category-content p {
    margin-top: 4px;

    color: var(--light-text);

    font-size: 11px;
    line-height: 1.4;
}


.full-category-content > span {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f5;

    border-radius: 50%;

    color: var(--primary);

    font-size: 16px;
    font-weight: 700;

    transition: 0.25s ease;
}


.full-category-card:hover
.full-category-content > span {
    transform: translateX(3px);

    background: var(--primary);

    color: #ffffff;
}



/* =========================================================
   CATEGORY NO RESULT
   ========================================================= */

.category-no-result {
    margin: 35px auto 0;

    max-width: 500px;

    padding: 40px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px dashed #d8dde5;
    border-radius: 16px;
}


.category-no-result > div {
    font-size: 40px;

    margin-bottom: 10px;
}


.category-no-result h3 {
    color: var(--dark);

    font-size: 18px;
}


.category-no-result p {
    margin-top: 6px;

    color: var(--light-text);

    font-size: 12px;
}



/* =========================================================
   CATEGORY BENEFITS
   ========================================================= */

.category-benefits-section {
    padding: 75px 20px;

    background: #ffffff;
}


.category-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


.category-benefit-card {
    padding: 27px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow:
        0 5px 20px rgba(23, 32, 51, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.category-benefit-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(23, 32, 51, 0.08);
}


.category-benefit-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1f5;

    border-radius: 50%;

    font-size: 25px;
}


.category-benefit-card h3 {
    color: var(--dark);

    font-size: 15px;
}


.category-benefit-card p {
    margin-top: 7px;

    color: var(--light-text);

    font-size: 11px;
    line-height: 1.6;
}



/* =========================================================
   CATEGORY BUTTON
   ========================================================= */

.category-location-card .primary-btn {
    flex: 0 0 auto;

    border: none;

    cursor: pointer;
}



/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .full-category-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .category-benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

/* =========================================================
   LADLI LOCAL STORE
   PRODUCTS PAGE
   MAIN CSS
   ========================================================= */


/* =========================================================
   PRODUCTS HERO
   ========================================================= */

.products-page-hero {
    padding: 55px 20px 50px;
    background:
        linear-gradient(
            135deg,
            #fff5f8 0%,
            #ffffff 50%,
            #f4f8ff 100%
        );
    border-bottom: 1px solid #eeeeee;
}

.products-hero-container {
    width: min(1200px, 100%);
    margin: 0 auto;
    text-align: center;
}

.products-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #ffd6e2;
    border-radius: 50px;
    color: #d6336c;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.products-hero-container h1 {
    margin: 18px 0 10px;
    color: #172033;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 800;
}

.products-hero-container p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: #687386;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   PRODUCTS SEARCH
   ========================================================= */

.products-search-box {
    width: min(760px, 100%);
    min-height: 58px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 8px 7px 18px;
    background: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(26, 38, 56, 0.09);
}

.products-search-box > span {
    flex-shrink: 0;
    font-size: 20px;
}

.products-search-box input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #202735;
    font-size: 15px;
}

.products-search-box input::placeholder {
    color: #9aa3b2;
}

.products-search-box button {
    border: none;
    padding: 13px 23px;
    border-radius: 10px;
    background: #d6336c;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.products-search-box button:hover {
    background: #b92759;
    transform: translateY(-1px);
}


/* =========================================================
   LOCATION SECTION
   ========================================================= */

.products-location-section {
    padding: 25px 20px 5px;
    background: #ffffff;
}

.products-location-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid #e5e8ee;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.products-location-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.products-location-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff0f4;
    border-radius: 12px;
    font-size: 23px;
}

.products-location-left strong {
    display: block;
    margin-bottom: 4px;
    color: #1d2635;
    font-size: 15px;
}

.products-location-left span {
    display: block;
    color: #7a8494;
    font-size: 13px;
}


/* =========================================================
   PRODUCTS MAIN
   ========================================================= */

.products-main-section {
    padding: 35px 20px 70px;
    background: #f7f9fc;
}


/* =========================================================
   PRODUCTS TOOLBAR
   ========================================================= */

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.products-toolbar-left h2 {
    margin: 0 0 5px;
    color: #182235;
    font-size: 25px;
}

.products-toolbar-left span {
    color: #7b8595;
    font-size: 13px;
}

.products-toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-toolbar-right select {
    min-width: 170px;
    padding: 11px 13px;
    background: #ffffff;
    border: 1px solid #dfe4eb;
    border-radius: 10px;
    outline: none;
    color: #374151;
    font-size: 13px;
    cursor: pointer;
}

.products-toolbar-right select:focus {
    border-color: #d6336c;
}


/* =========================================================
   NEARBY PRIORITY BANNER
   ========================================================= */

.nearby-priority-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
    padding: 17px 20px;
    background: linear-gradient(
        135deg,
        #fff9fb,
        #ffffff
    );
    border: 1px solid #f3d8e1;
    border-radius: 15px;
}

.nearby-priority-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff0f4;
    border-radius: 11px;
    font-size: 21px;
}

.nearby-priority-banner strong {
    display: block;
    margin-bottom: 4px;
    color: #252d3a;
    font-size: 14px;
}

.nearby-priority-banner p {
    margin: 0;
    color: #7b8492;
    font-size: 13px;
    line-height: 1.5;
}

.priority-status {
    margin-left: auto;
    flex-shrink: 0;
    padding: 8px 13px;
    background: #eaf8ef;
    border-radius: 50px;
    color: #218838;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   PRODUCTS GRID
   ========================================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.product-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e8ee;
    border-radius: 16px;
    box-shadow: 0 7px 25px rgba(26, 38, 56, 0.055);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #f0c6d4;
    box-shadow: 0 15px 35px rgba(26, 38, 56, 0.11);
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-image-wrapper {
    position: relative;
    height: 215px;
    overflow: hidden;
    background: #f5f7fa;
}

.product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    background: #ffffff;
    border-radius: 50px;
    color: #d6336c;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.product-info {
    padding: 17px;
}

.product-category {
    display: inline-block;
    margin-bottom: 7px;
    color: #d6336c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-info h3 {
    min-height: 42px;
    margin: 0 0 5px;
    color: #1d2635;
    font-size: 16px;
    line-height: 1.35;
}

.product-size {
    margin: 0 0 10px;
    color: #7c8593;
    font-size: 12px;
}

.product-store {
    padding: 8px 10px;
    margin-bottom: 15px;
    background: #f7f8fa;
    border-radius: 8px;
    color: #687282;
    font-size: 11px;
}


/* =========================================================
   PRODUCT BOTTOM
   ========================================================= */

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-price {
    color: #172033;
    font-size: 20px;
    font-weight: 800;
}

.add-cart-btn {
    border: none;
    padding: 9px 13px;
    background: #d6336c;
    border-radius: 9px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.add-cart-btn:hover {
    background: #b92759;
    transform: translateY(-1px);
}


/* =========================================================
   NO PRODUCT RESULT
   ========================================================= */

.products-no-result {
    padding: 55px 20px;
    margin-top: 20px;
    background: #ffffff;
    border: 1px solid #e4e8ee;
    border-radius: 16px;
    text-align: center;
}

.products-no-result > div {
    font-size: 38px;
    margin-bottom: 10px;
}

.products-no-result h3 {
    margin: 0 0 7px;
    color: #202938;
    font-size: 20px;
}

.products-no-result p {
    margin: 0;
    color: #7b8593;
    font-size: 14px;
}


/* =========================================================
   VIEW MORE
   ========================================================= */

.products-view-more {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid #d6336c;
    border-radius: 10px;
    background: #ffffff;
    color: #d6336c;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.outline-btn:hover {
    background: #d6336c;
    color: #ffffff;
}


/* =========================================================
   PRODUCTS INFORMATION SECTION
   ========================================================= */

.products-info-section {
    padding: 75px 20px;
    background: #ffffff;
}

.products-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.products-info-card {
    padding: 25px 20px;
    background: #fafbfc;
    border: 1px solid #e6e9ee;
    border-radius: 15px;
    text-align: center;
    transition: 0.25s ease;
}

.products-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.products-info-card > div {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: #fff0f4;
    border-radius: 14px;
    font-size: 24px;
}

.products-info-card h3 {
    margin: 0 0 8px;
    color: #202938;
    font-size: 16px;
}

.products-info-card p {
    margin: 0;
    color: #788291;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   PRODUCTS PAGE BUTTON SUPPORT
   ========================================================= */

.products-page-hero .primary-btn,
.products-location-card .primary-btn {
    border: none;
    cursor: pointer;
}


/* =========================================================
   PRODUCTS PAGE SECTION CONTAINER
   ========================================================= */

.products-page-hero .section-container,
.products-location-section .section-container,
.products-main-section .section-container,
.products-info-section .section-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}