/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'inter', sans-serif !important; 
}

body {
    background-color: #f8f9fa;
}

:root{
    --background-color: #ffdab9;
}
/* ── NAVBAR ── */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #141414;
    border-radius: 40px;
    padding: 10px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logname {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logname img {
    width: 42px;
    height: 42px;
}

.logname a {
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
    color: white;
    font-size: 17px;
    line-height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-grow: 1;
    justify-content: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: "Inter";
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:first-child {
    color: #FFF94D;
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Currency Selector */
.currency-selector {
    position: relative;
}

.usd-selector {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.usd-selector:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.usd-selector option {
    background: rgb(20, 20, 20);
    color: white;
}

/* Cart Button */
.cart-btn {
    background: white;
    border: none;
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    background: #FF2626;
    color: white;
    border-radius: 50%;
}

/* ── SECTION 1 – HERO ── */
.sect1 {
    background-image: url(../img/3\ Crisps\ V2.png);
    width: 100%;
    padding: 32px 60px;
    padding-top: 20px;
    height: 808px;
    background-size: calc(570px + 500px);
    background-position: center;
    line-height: 100%;
    background-repeat: no-repeat;
}

.text {
    text-align: center;
    margin: 8% auto 0;
    width: 996px;
    letter-spacing: -0.5px;
}

.text1 {
    font-size: 30px;
    color: #D60088;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    line-height: 70px;
}

.text1 span {
    color: black;
}

.text2 {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: black;
    line-height: 32px;
    position: relative;
    top: -45px;
}

.T1C {
    color: red;
}

.orderbtn {
    text-align: center;
    text-decoration: none;
}

.order-btn {
    background: var(--background-color);
    border: none;
    padding: 10px 12px;
    width: 180px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    margin-top: 50px;
    position: relative;
    top: 25rem;
    text-transform: uppercase;
}

.order-btn a {
    text-decoration: none;
    color: black;
}

/* ── SECTION 2 – HOT DEALS ── */
.sect2 {
    padding: 100px 120px;
    background-color: var(--background-color);
}

.sect2 h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: black;
    font-family: "Inter";
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 48px;
    text-transform: capitalize;
}

.sect2 h1 span {
    color: #D60088;
}

.boxgroup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
/* ── HOT DEALS CARDS ── */
.boxgroup .box-card {
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e8ddd0;
    padding: 0;
}

.boxgroup .box-image {
    flex: none;
    width: 100%;
    height: 220px;
    background: #fdf8f2;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxgroup .box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boxgroup .box-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.boxgroup .box-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #1a1408;
}

.boxgroup .box-description {
    font-size: 12px;
    color: #a08c6e;
    text-align: center;
    margin-bottom: 12px;
}

.boxgroup .box-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a08c6e;
}

.deal-price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1408;
}

.deal-price sup {
    font-size: 12px;
    vertical-align: super;
}

.deal-order-btn {
    background: #e8a020;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.deal-order-btn:hover {
    background: #c07010;
}
/* ── SECTION 4 ── */
.sect4 {
    background-color: var(--background-color);
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.sect4 img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── SECTION 5 – WEEKLY OFFERS ── */
.sect5 {
    padding: 100px 120px;
    text-align: center;
    background-color: var(--background-color);
}

.sect5 h6 {
    font-size: 18px;
    color: #008048;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sect5 h1 {
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 20px;
    color: black;
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 48px;
    text-transform: capitalize;
}

.sect5 h1 span {
    background-color: #d62700;
    color: white;
    padding: 0px 8px;
}

.imgpos {
    margin-top: 30px;
}

.five-btn {
    background: #D60088;
    border: none;
    padding: 10px 12px;
    width: 385px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    margin-top: 50px;
    text-transform: uppercase;
}

.five-btn a {
    text-decoration: none;
    color: white;
}

/* Weekly offers image grid */
.Big-div {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.lhdiv img {
    width: 460px;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
}

.rhdiv {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.imgup {
    display: flex;
    gap: 40px;
}

.rhdiv .imgup img {
    width: 220px;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}

.imgdown {
    margin-top: 20px;
}

.imgdown img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}

/* ── SECTION 6 – BEST SELLERS / NEW PRODUCTS ── */
.sect6 {
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    gap: 40px;
}

.lsubsect {
    margin-top: 150px;
    margin-bottom: 150px;
}

.section-header {
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.box-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.box-image {
    flex: 0 0 250px;
    overflow: hidden;
}

.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.box-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.box-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.star {
    color: #e0e0e0;
    font-size: 18px;
    margin-right: 2px;
}

.star.filled {
    color: #ffd700;
}

.box-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 20px;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.buy-btn {
    background-color: rgb(244, 233, 109);
    color: black;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #0a6b3f;
    color: white;
}

.buy-btn:active {
    transform: scale(0.98);
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .text {
        width: 100%;
        padding: 0 20px;
    }

    .sect2,
    .sect5 {
        padding: 60px 20px;
    }

    .boxgroup {
        grid-template-columns: 1fr;
    }

    .Big-div {
        flex-direction: column;
        align-items: center;
    }

    .lhdiv img {
        width: 100%;
        height: 300px;
    }

    .sect6 {
        flex-direction: column;
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}