/* =========================================================
   FINE DATES & NUTS CO.
   FINAL PREMIUM STYLE
========================================================= */

:root {
    --green: #16833a;
    --green-dark: #0f682d;
    --green-light: #eaf6ee;

    --dark: #1d241f;
    --text: #333;
    --muted: #777;

    --white: #fff;
    --cream: #f7f5ef;
    --light: #f7f7f5;
    --border: #e5e5e5;

    --danger: #d33;
    --whatsapp: #25d366;

    --shadow-sm: 0 6px 20px rgba(0, 0, 0, .05);
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .13);

    --radius: 16px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(10px);
}

.nav-container {
    width: 100%;
    max-width: 1200px;

    min-height: 76px;

    margin: auto;
    padding: 10px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* LOGO */

.logo {
    width: 150px;
    height: 55px;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.logo img {
    width: 150px;
    height: 55px;

    object-fit: contain;
}


/* NAV LINKS */

.navbar nav {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;
}

.navbar nav a {
    position: relative;

    color: var(--dark);

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: .25s ease;
}

.navbar nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: .25s ease;
}

.navbar nav a:hover {
    color: var(--green);
}

.navbar nav a:hover::after {
    width: 100%;
}


/* CART BUTTON */

.cart-button,
#cartbtn {
    flex-shrink: 0;

    padding: 11px 18px;

    border: none;
    border-radius: 10px;

    background: var(--green);
    color: white;

    font-weight: 700;

    transition: .25s ease;
}

.cart-button:hover,
#cartbtn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .10),
            rgba(0, 0, 0, .72)
        ),
        url("pic 2.jpeg") center / cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 50%;
    max-width: 650px;

    margin-right: 7%;

    padding: 40px 20px;

    color: white;

    text-align: right;
}

.hero-small {
    margin-bottom: 14px;

    color: #d9f2df;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 20px;

    font-size: clamp(40px, 4.5vw, 62px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;
}

.hero p {
    max-width: 520px;

    margin-left: auto;

    color: rgba(255, 255, 255, .9);

    font-size: 17px;

    line-height: 1.7;
}

.shop-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 28px;

    padding: 14px 32px;

    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;

    background: var(--green);
    color: white;

    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);

    transition: .3s ease;
}

.shop-btn:hover {
    background: var(--green-dark);

    transform: translateY(-3px);

    box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

.shop-btn:active {
    transform: translateY(-1px) scale(.98);
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.products-section,
.contact-section {
    width: 100%;
    max-width: 1200px;

    margin: auto;

    padding: 90px 20px;
}

.section-heading {
    margin-bottom: 40px;

    text-align: center;
}

.section-heading p,
.admin-label {
    color: var(--green);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 8px;

    color: var(--dark);

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.2;
}


/* =========================================================
   SEARCH
========================================================= */

.search-area {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 40px;
}

.search-area input {
    width: 400px;

    padding: 14px 16px;

    border: 1px solid var(--border);
    border-radius: 10px;

    outline: none;

    transition: .2s ease;
}

.search-area input:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 3px rgba(22, 131, 58, .1);
}

.search-area button {
    padding: 14px 22px;

    border: none;
    border-radius: 10px;

    background: var(--green);
    color: white;

    font-weight: 700;

    transition: .25s ease;
}

.search-area button:hover {
    background: var(--green-dark);
}


/* =========================================================
   CATEGORY
========================================================= */

.category-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

    margin-bottom: 70px;
}

.category-card {
    overflow: hidden;

    background: white;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    cursor: pointer;

    transition: .3s ease;
}

.category-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.category-card img {
    width: 100%;
    height: 160px;

    object-fit: cover;

    transition: .4s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card h3 {
    padding: 15px;

    color: var(--dark);

    text-align: center;

    font-size: 16px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.product-card {
    overflow: hidden;

    background: white;

    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow: var(--shadow-sm);

    transition: .3s ease;
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-lg);
}


/* PRODUCT IMAGE */

.product-image {
    position: relative;

    width: 100%;
    height: 230px;

    overflow: hidden;

    background: var(--light);
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.07);
}


/* PRODUCT INFO */

.product-info {
    padding: 20px;
}

.product-category {
    display: block;

    margin-bottom: 5px;

    color: var(--green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.product-info h3 {
    margin-bottom: 13px;

    color: var(--dark);

    font-size: 20px;
}


/* PRICE SELECT */

.product-option,
.price-select {
    width: 100%;

    padding: 12px;

    margin-bottom: 10px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: white;

    outline: none;

    cursor: pointer;
}

.product-option:focus,
.price-select:focus {
    border-color: var(--green);
}


/* VIEW DETAILS */

.view-details-btn {
    width: 100%;

    padding: 11px;

    margin-bottom: 10px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: white;
    color: var(--dark);

    font-weight: 600;

    transition: .25s ease;
}

.view-details-btn:hover {
    background: var(--light);

    transform: translateY(-2px);
}


/* ADD CART */

.add-cart-btn {
    width: 100%;

    padding: 13px;

    border: none;
    border-radius: 10px;

    background: var(--green);
    color: white;

    font-weight: 700;

    transition: .25s ease;
}

.add-cart-btn:hover {
    background: var(--green-dark);

    transform: translateY(-2px);
}

.add-cart-btn:active {
    transform: scale(.98);
}

.no-products {
    padding: 50px;

    color: var(--muted);

    text-align: center;
}


/* =========================================================
   PRODUCT DETAILS MODAL
========================================================= */

.product-details-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.product-details-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .75);

    backdrop-filter: blur(5px);
}

.product-details-box {
    position: relative;

    z-index: 2;

    width: min(900px, 100%);
    max-height: 90vh;

    overflow-y: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 35px;

    padding: 28px;

    background: white;

    border-radius: 22px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);

    animation: detailsPopup .25s ease;
}

@keyframes detailsPopup {

    from {
        opacity: 0;

        transform:
            scale(.95)
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            scale(1)
            translateY(0);
    }
}


/* CLOSE */

.details-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: white;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, .15);

    font-size: 25px;

    transition: .2s ease;
}

.details-close:hover {
    transform: rotate(90deg);
}


/* DETAILS IMAGE */

.details-image {
    width: 100%;
    height: 430px;

    overflow: hidden;

    border-radius: 18px;

    background: var(--light);
}

.details-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* DETAILS CONTENT */

.details-content {
    padding: 35px 10px 20px;
}

.details-category {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.details-content h2 {
    margin: 5px 0 25px;

    color: var(--dark);

    font-size: 32px;

    line-height: 1.2;
}


/* DETAILS PRICE */

.details-selection {
    margin-bottom: 20px;
}

.details-selection h4,
.details-quantity h4 {
    margin-bottom: 10px;

    color: var(--dark);
}

.details-price-select {
    width: 100%;

    padding: 13px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: white;

    outline: none;
}


/* QUANTITY */

.details-quantity {
    margin-top: 20px;
}

.details-quantity-controls {
    display: flex;

    align-items: center;

    gap: 15px;
}

.details-quantity-controls button {
    width: 38px;
    height: 38px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: white;

    font-size: 22px;

    transition: .2s ease;
}

.details-quantity-controls button:hover {
    background: var(--light);
}

.details-quantity-number {
    min-width: 25px;

    text-align: center;

    font-weight: 700;
}


/* TOTAL */

.details-selected-price {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-top: 25px;

    padding: 15px;

    border-radius: 10px;

    background: var(--light);
}

.details-selected-price strong {
    color: var(--green);

    font-size: 22px;
}


/* DETAILS ADD CART */

.details-add-cart {
    width: 100%;

    padding: 14px;

    margin-top: 20px;

    border: none;
    border-radius: 11px;

    background: var(--green);
    color: white;

    font-weight: 700;

    transition: .25s ease;
}

.details-add-cart:hover {
    background: var(--green-dark);

    transform: translateY(-2px);
}


/* =========================================================
   SPECIAL OFFER
========================================================= */

.offers-section {
    padding: 80px 6%;

    background: var(--cream);
}

.offers-container {
    width: 100%;
    max-width: 1200px;

    min-height: 380px;

    margin: auto;

    display: flex;
    align-items: stretch;

    overflow: hidden;

    background: white;

    border-radius: 25px;

    box-shadow: var(--shadow);
}

.offer-content {
    width: 55%;

    padding: 55px;
}

.offer-badge {
    display: inline-block;

    padding: 8px 16px;

    border-radius: 30px;

    background: var(--green);
    color: white;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.offer-content h2 {
    margin: 18px 0 12px;

    color: var(--dark);

    font-size: 42px;

    line-height: 1.15;
}

.offer-description {
    max-width: 480px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.7;
}

.offer-price {
    display: flex;

    align-items: center;

    gap: 15px;

    margin: 20px 0 5px;
}

.old-price {
    color: #999;

    font-size: 20px;

    text-decoration: line-through;
}

.new-price {
    color: var(--green);

    font-size: 32px;
    font-weight: 800;
}

.offer-note {
    color: #c62828;

    font-size: 14px;
    font-weight: 600;
}

.offer-btn {
    margin-top: 18px;

    padding: 13px 28px;

    border: none;
    border-radius: 9px;

    background: var(--green);
    color: white;

    font-weight: 700;

    transition: .25s ease;
}

.offer-btn:hover {
    background: var(--green-dark);

    transform: translateY(-2px);
}

.offer-image {
    width: 45%;
    height: 380px;
}

.offer-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    width: 100%;

    padding: 90px 20px;

    background: var(--light);

    text-align: center;
}

.about-content {
    max-width: 700px;

    margin: auto;
}

.about-content h2 {
    margin: 15px 0;

    color: var(--dark);

    font-size: 38px;
}

.about-content p {
    color: var(--muted);

    line-height: 1.8;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    text-align: center;
}

.contact-links {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.contact-links a {
    padding: 12px 25px;

    border-radius: 9px;

    background: var(--green);
    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .25s ease;
}

.contact-links a:hover {
    background: var(--green-dark);

    transform: translateY(-2px);
}


/* =========================================================
   LOCATION / MAP READY
========================================================= */

.location-section {
    padding: 80px 6%;

    background: var(--cream);
}

.location-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 35px;

    align-items: center;
}

.location-content {
    padding: 20px;
}

.location-content h2 {
    margin: 10px 0 15px;

    color: var(--dark);

    font-size: 36px;
}

.location-content p {
    color: var(--muted);

    line-height: 1.7;
}

.location-address {
    margin-top: 18px;

    padding: 16px;

    border-left: 4px solid var(--green);

    background: white;

    border-radius: 8px;
}

.location-map {
    width: 100%;
    min-height: 350px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: var(--shadow);
}

.location-map iframe {
    width: 100%;
    height: 350px;

    border: 0;
}


/* =========================================================
   WHATSAPP FLOATING BUTTON READY
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 1500;

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--whatsapp);
    color: white;

    text-decoration: none;

    font-size: 25px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .2);

    transition: .25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 35px 20px;

    background: #111;

    color: white;

    text-align: center;
}

.footer-container {
    max-width: 1200px;

    margin: auto;
}

.footer-logo {
    width: 150px;

    margin: 0 auto 15px;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

    margin: 15px 0;
}

.footer-links a {
    color: #ddd;

    text-decoration: none;

    transition: .2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    color: #999;

    font-size: 13px;
}


/* =========================================================
   CART
========================================================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 1999;

    display: none;

    background: rgba(0, 0, 0, .55);

    backdrop-filter: blur(3px);
}

.cart-overlay.active {
    display: block;
}

.cart-box {
    position: fixed;

    top: 0;
    right: -450px;

    z-index: 2000;

    width: 420px;
    max-width: 95%;

    height: 100vh;

    display: flex;
    flex-direction: column;

    background: white;

    box-shadow:
        -10px 0 35px rgba(0, 0, 0, .15);

    transition: .35s ease;
}

.cart-box.active {
    right: 0;
}

.cart-header {
    padding: 20px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    color: var(--dark);
}

.cart-header button {
    border: none;

    background: none;

    font-size: 22px;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px;
}

.cart-item {
    display: flex;

    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 70px;
    height: 70px;

    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin-bottom: 5px;

    color: var(--dark);
}

.quantity-controls {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 8px;
}

.quantity-controls button {
    width: 28px;
    height: 28px;

    border: 1px solid #ccc;

    background: white;
}

.remove-cart-btn {
    margin-top: 5px;

    border: none;

    background: none;

    color: var(--danger);
}

.cart-footer {
    padding: 20px;

    border-top: 1px solid var(--border);
}

.whatsapp-btn {
    width: 100%;

    padding: 13px;

    margin-top: 15px;

    border: none;
    border-radius: 8px;

    background: var(--whatsapp);
    color: white;

    font-weight: 700;

    transition: .25s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

.empty-cart {
    padding: 50px 10px;

    color: var(--muted);

    text-align: center;
}

.empty-cart h3 {
    margin-bottom: 8px;

    color: var(--dark);
}


/* =========================================================
   ADMIN
========================================================= */

.admin-page {
    min-height: 100vh;

    background: #f5f5f5;
}

.admin-header {
    padding: 30px;

    background: var(--green);

    color: white;
}

.admin-header h1 {
    margin-bottom: 5px;
}

.admin-header a {
    display: inline-block;

    margin-top: 15px;

    color: white;
}

.admin-login {
    max-width: 450px;

    margin: 60px auto;

    padding: 30px;

    background: white;

    border-radius: 14px;

    box-shadow: var(--shadow);
}

.admin-login h2 {
    margin-bottom: 20px;
}

.admin-login input {
    width: 100%;

    padding: 12px;

    margin-bottom: 12px;

    border: 1px solid #ccc;
    border-radius: 6px;
}

.admin-login button {
    width: 100%;

    padding: 12px;

    border: none;
    border-radius: 6px;

    background: var(--green);
    color: white;
}

#loginMessage {
    margin-top: 12px;

    color: var(--danger);
}

.admin-container {
    max-width: 1000px;

    margin: 40px auto;

    padding: 0 20px;
}

.admin-form,
.admin-list-section {
    padding: 30px;

    margin-bottom: 40px;

    background: white;

    border-radius: 14px;

    box-shadow: var(--shadow);
}

.admin-form h2,
.admin-list-section h2 {
    margin: 10px 0 25px;
}

.admin-form label {
    display: block;

    margin-top: 15px;
    margin-bottom: 7px;

    font-weight: 700;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;

    padding: 12px;

    border: 1px solid #ccc;
    border-radius: 6px;

    outline: none;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--green);
}

.price-row {
    display: grid;

    grid-template-columns: 1fr 1fr auto;

    gap: 10px;

    margin-bottom: 10px;
}

.remove-price-btn {
    width: 45px;

    border: none;

    background: #eee;
}

.primary-btn,
.secondary-btn,
.cancel-btn {
    padding: 12px 20px;

    margin-top: 15px;

    border: none;
    border-radius: 6px;
}

.primary-btn {
    background: var(--green);

    color: white;
}

.secondary-btn {
    background: #eee;
}

.cancel-btn {
    background: #777;

    color: white;
}

.image-help {
    margin-top: 5px;

    color: #777;

    font-size: 12px;
}

.admin-product-list {
    display: grid;

    gap: 20px;
}

.admin-product-card {
    display: grid;

    grid-template-columns: 150px 1fr auto;

    gap: 20px;

    align-items: center;

    padding: 15px;

    border: 1px solid var(--border);

    border-radius: 10px;
}

.admin-product-image {
    width: 150px;
    height: 120px;
}

.admin-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 6px;
}

.admin-product-info span {
    color: var(--green);
}

.admin-prices {
    margin-top: 8px;
}

.admin-product-actions {
    display: flex;

    gap: 8px;
}

.edit-btn,
.delete-btn {
    padding: 9px 14px;

    border: none;

    border-radius: 5px;
}

.edit-btn {
    background: #eee;
}

.delete-btn {
    background: var(--danger);

    color: white;
}

.logout-btn {
    position: fixed;

    top: 25px;
    right: 25px;

    padding: 10px 18px;

    border: none;
    border-radius: 6px;

    background: var(--danger);
    color: white;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-content {
        width: 60%;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-container {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* NAVBAR */

    .navbar {
        padding: 8px 4%;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .logo {
        width: 115px;
        height: 45px;
    }

    .logo img {
        width: 115px;
        height: 45px;
    }

    .navbar nav {
        order: 3;

        width: 100%;

        flex: none;

        gap: 18px;

        justify-content: center;
    }

    .navbar nav a {
        font-size: 14px;
    }


    /* HERO */

    .hero {
        min-height: 520px;

        justify-content: center;
    }

    .hero-content {
        width: 92%;
        max-width: 500px;

        margin: 0 auto;

        padding: 30px 10px;

        text-align: center;
    }

    .hero-small {
        font-size: 12px;

        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 42px);

        line-height: 1.1;

        letter-spacing: -.5px;
    }

    .hero p {
        margin: auto;

        font-size: 16px;
    }


    /* SECTIONS */

    .products-section,
    .contact-section {
        padding: 65px 15px;
    }


    /* SEARCH */

    .search-area {
        flex-direction: column;
    }

    .search-area input,
    .search-area button {
        width: 100%;
    }


    /* CATEGORY */

    .category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .category-card img {
        height: 130px;
    }


    /* PRODUCTS */

    .product-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .product-image {
        height: 210px;
    }


    /* DETAILS */

    .product-details-modal {
        padding: 12px;
    }

    .product-details-box {
        grid-template-columns: 1fr;

        gap: 15px;

        max-height: 94vh;

        padding: 16px;

        border-radius: 18px;
    }

    .details-image {
        height: 280px;
    }

    .details-content {
        padding: 5px 5px 15px;
    }

    .details-content h2 {
        font-size: 26px;
    }


    /* OFFER */

    .offers-section {
        padding: 45px 5%;
    }

    .offers-container {
        flex-direction: column-reverse;
    }

    .offer-content {
        width: 100%;

        padding: 35px 25px;
    }

    .offer-content h2 {
        font-size: 32px;
    }

    .offer-image {
        width: 100%;

        height: 250px;
    }

    .new-price {
        font-size: 28px;
    }


    /* ABOUT */

    .about-section {
        padding: 65px 15px;
    }

    .about-content h2 {
        font-size: 30px;
    }


    /* CONTACT */

    .contact-section {
        padding: 65px 15px;
    }

    .contact-links {
        flex-direction: column;
    }


    /* LOCATION */

    .location-section {
        padding: 55px 5%;
    }

    .location-container {
        gap: 20px;
    }

    .location-content h2 {
        font-size: 30px;
    }

    .location-map,
    .location-map iframe {
        height: 280px;
    }


    /* ADMIN */

    .price-row {
        grid-template-columns: 1fr;
    }

    .remove-price-btn {
        width: 100%;

        height: 40px;
    }

    .admin-product-card {
        grid-template-columns: 1fr;
    }

    .admin-product-image {
        width: 100%;

        height: 220px;
    }

    .admin-product-actions {
        width: 100%;
    }

    .admin-product-actions button {
        flex: 1;
    }


    /* CART */

    .cart-box {
        width: 100%;

        max-width: 100%;
    }


    /* WHATSAPP */

    .whatsapp-float {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card h3 {
        font-size: 14px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .shop-btn {
        padding: 13px 26px;
    }

    .offer-content h2 {
        font-size: 29px;
    }

    .product-info {
        padding: 16px;
    }
}
/* ==========================================
   MULTIPLE SPECIAL OFFERS
========================================== */

.offers-list {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    display: flex;
    flex-direction: column;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.10);
}

.offer-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-content {
    padding: 22px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.offer-badge {
    display: inline-block;

    width: fit-content;

    padding: 6px 10px;

    border-radius: 20px;

    background: #eaf6ed;
    color: var(--green);

    font-size: 12px;
    font-weight: 700;
}

.offer-content h2 {
    margin: 12px 0 8px;

    font-size: 22px;
}

.offer-description {
    color: var(--muted);

    line-height: 1.6;

    margin-bottom: 12px;
}

.offer-price {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 8px 0 12px;
}

.offer-card .old-price {
    color: #888;

    text-decoration: line-through;

    font-size: 15px;
}

.offer-card .new-price {
    color: var(--green);

    font-size: 24px;

    font-weight: 800;
}

.offer-note {
    color: var(--muted);

    font-size: 14px;

    margin-bottom: 18px;
}

.offer-btn {
    width: 100%;

    margin-top: auto;

    padding: 13px 18px;

    border: none;

    border-radius: 10px;

    background: var(--green);

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;

    transition: background 0.3s ease,
                transform 0.2s ease;
}

.offer-btn:hover {
    transform: translateY(-2px);
}


/* ==========================================
   OFFER LABEL INSIDE CART
========================================== */

.cart-offer-label {
    display: inline-block;

    margin: 4px 0 6px;

    padding: 4px 8px;

    border-radius: 12px;

    background: #eaf6ed;

    color: var(--green);

    font-size: 11px;

    font-weight: 700;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .offers-list {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .offers-list {
        grid-template-columns: 1fr;

        padding: 0 15px;
    }

    .offer-image {
        height: 200px;
    }

    .offer-content h2 {
        font-size: 20px;
    }

}