* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #171717;
    background: #f7f6f2;
    line-height: 1.6;
}


/* NAVBAR */

.navbar {
    height: 90px;
    background: white;
    border-bottom: 1px solid #e5e5e5;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #222;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
}

.cart-btn {
    background: #111;
    color: white;
    border: none;
    padding: 13px 20px;
    border-radius: 7px;
    font-size: 15px;
    cursor: pointer;
}


/* HERO */

.hero {
    min-height: 650px;
    background: #eeeee9;

    display: flex;
    align-items: center;

    padding: 80px 7%;
}

.hero-content {
    max-width: 750px;
}

.small-title {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #59645a;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.hero-text {
    max-width: 650px;
    font-size: 20px;
    color: #59636b;
    margin-bottom: 35px;
}

.shop-btn {
    display: inline-block;
    background: #111;
    color: white;
    text-decoration: none;
    padding: 17px 28px;
    border-radius: 7px;
    font-weight: bold;
}


/* PRODUCTS */

.products-section {
    padding: 100px 7%;
    background: white;
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading p {
    color: #59645a;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: bold;
}

.section-heading h2 {
    font-size: 46px;
    margin: 10px 0;
}

.section-heading span {
    color: #687078;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #f7f6f2;
    border: 1px solid #e6e3dc;
    border-radius: 12px;
    padding: 25px;

    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.product-icon {
    height: 150px;
    background: #e9e7df;
    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 70px;
    margin-bottom: 22px;
}

.product-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.product-card p {
    color: #687078;
    min-height: 70px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.product-bottom strong {
    font-size: 22px;
}

.product-bottom button {
    background: #111;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
}


/* ABOUT */

.about-section {
    padding: 110px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-section h2 {
    font-size: 48px;
    line-height: 1.1;
}

.about-section > p {
    font-size: 21px;
    color: #59636b;
}


/* WHY */

.why-section {
    background: #e9e7df;
    padding: 100px 7%;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.features div {
    background: white;
    padding: 35px;
    border-radius: 10px;
}

.features span {
    font-size: 40px;
}

.features h3 {
    margin: 15px 0 8px;
    font-size: 23px;
}

.features p {
    color: #687078;
}


/* CONTACT */

.contact-section {
    text-align: center;
    padding: 110px 20px;
    background: white;
}

.contact-section h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.contact-section p {
    color: #687078;
    font-size: 18px;
}

.contact-section button {
    margin-top: 25px;
    padding: 16px 25px;
    background: #111;
    color: white;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    cursor: pointer;
}


/* FOOTER */

footer {
    background: #111;
    color: white;

    padding: 45px 7%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    color: #aaa;
}


/* MOBILE */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .navbar {
        padding: 0 20px;
    }

    .logo {
        font-size: 18px;
    }

    .cart-btn {
        padding: 10px;
    }

    .hero {
        padding: 70px 25px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .products-section,
    .about-section,
    .why-section {
        padding: 70px 25px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .about-section h2 {
        font-size: 38px;
    }

    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}/* CART OVERLAY */

.cart-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    display: flex;
    justify-content: flex-end;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 2000;
}


.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}


/* CART */

.cart {
    width: 480px;
    max-width: 100%;
    height: 100%;

    background: white;

    padding: 30px;

    overflow-y: auto;
}


.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 20px;

    border-bottom: 1px solid #ddd;
}


.cart-header h2 {
    font-size: 28px;
}


.close-cart {
    border: none;
    background: none;

    font-size: 32px;

    cursor: pointer;
}


/* CART ITEMS */

.cart-items {
    padding: 20px 0;
}


.empty-cart {
    text-align: center;

    color: #777;

    padding: 50px 0;
}


.cart-item {
    display: grid;

    grid-template-columns: 1fr auto;

    gap: 12px;

    padding: 20px 0;

    border-bottom: 1px solid #eee;
}


.cart-item-info h3 {
    font-size: 17px;
}


.cart-item-info p {
    color: #777;

    font-size: 14px;
}


.quantity {
    display: flex;

    align-items: center;

    gap: 12px;
}


.quantity button {
    width: 30px;
    height: 30px;

    border: 1px solid #ddd;

    background: white;

    border-radius: 5px;

    cursor: pointer;

    font-size: 18px;
}


.quantity span {
    font-weight: bold;
}


.remove-btn {
    border: none;

    background: none;

    color: #b33;

    cursor: pointer;

    text-align: left;

    font-size: 13px;
}


/* CART SUMMARY */

.cart-summary {
    margin-top: 20px;

    padding-top: 20px;

    border-top: 2px solid #222;
}


.cart-summary > div {
    display: flex;

    justify-content: space-between;

    font-size: 20px;

    margin-bottom: 20px;
}


.checkout-btn {
    width: 100%;

    border: none;

    background: #111;

    color: white;

    padding: 17px;

    border-radius: 7px;

    font-size: 17px;

    font-weight: bold;

    cursor: pointer;
}


.checkout-btn:hover {
    background: #333;
}


/* MOBILE CART */

@media (max-width: 600px) {

    .cart {
        width: 100%;

        padding: 22px;
    }

}
/* CHECKOUT */

.checkout-section {
    background: #f7f6f2;
    padding: 100px 7%;
}

.checkout-container {
    max-width: 900px;
    margin: auto;
}

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-header h2 {
    font-size: 45px;
    margin: 10px 0;
}

.checkout-header p:last-child {
    color: #687078;
}


.form-section {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
}

.form-section h3 {
    margin-bottom: 25px;
    font-size: 22px;
}


.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


.form-group.full {
    grid-column: 1 / -1;
}


.form-group label {
    font-weight: bold;
    font-size: 14px;
}


.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;

    border: 1px solid #d8d8d8;
    border-radius: 6px;

    font-size: 15px;
    background: white;
}


.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #222;
}


.payment-options {
    display: flex;
    gap: 15px;
}


.payment-option {
    flex: 1;

    border: 1px solid #ddd;
    padding: 18px;

    border-radius: 7px;

    cursor: pointer;
}


.payment-option input {
    margin-right: 10px;
}


.checkout-summary {
    background: white;

    padding: 30px;

    border-radius: 10px;

    margin-bottom: 25px;
}


.checkout-summary h3 {
    margin-bottom: 20px;
}


.checkout-item {
    display: flex;

    justify-content: space-between;

    padding: 12px 0;

    border-bottom: 1px solid #eee;
}


.checkout-total {
    display: flex;

    justify-content: space-between;

    margin-top: 20px;

    padding-top: 20px;

    border-top: 2px solid #222;

    font-size: 22px;
}


.place-order-btn {
    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 7px;

    background: #111;

    color: white;

    font-size: 17px;

    font-weight: bold;

    cursor: pointer;
}


.place-order-btn:hover {
    background: #333;
}


@media (max-width: 600px) {

    .checkout-section {
        padding: 70px 20px;
    }

    .checkout-header h2 {
        font-size: 35px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .payment-options {
        flex-direction: column;
    }

}
.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

.learn-btn {
    display: inline-block;
    padding: 13px 24px;
    border: 1px solid currentColor;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.learn-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        text-align: center;
    }
}
.about-section {
    padding: 80px 20px;
    text-align: center;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 15px 0 25px;
}

.about-content p:not(.small-title) {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-highlights {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.about-highlights div {
    min-width: 170px;
    padding: 20px;
    border-radius: 10px;
}

.about-highlights strong {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
}

.about-highlights span {
    font-weight: 600;
}

@media (max-width: 600px) {
    .about-content h2 {
        font-size: 32px;
    }

    .about-section {
        padding: 55px 20px;
    }
}
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.pack-label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    opacity: 0.7;
}

.product-bottom strong {
    font-size: 20px;
}

.product-bottom button {
    white-space: nowrap;
}
.product-bottom select {
    display: block;
    margin: 6px 0;
    padding: 7px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: white;
}

.product-bottom label {
    font-size: 13px;
    font-weight: 600;
}
.product-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}