/* =========================================================
   ANGEL BAKERY — COMPLETE STYLE.CSS
   Cream / Premium Bakery Design
   Retail + Wholesale Popup System
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fffaf2;
    color: #2b2118;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   OPENING INTRO
========================================================= */

.bakery-intro {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100vh;

    background:
        radial-gradient(
            circle at center,
            #fffdf7 0%,
            #fff7e8 35%,
            #f4e5cb 70%,
            #e7cfaa 100%
        );

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

/*
   JS can add this class when the intro finishes.
*/

.bakery-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* INTRO LOGO */

.intro-logo-wrap {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.intro-glow {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.65);

    filter: blur(35px);

    animation:
        introGlow 2s ease-in-out infinite alternate;
}

.intro-logo {
    position: relative;

    z-index: 2;

    width: 150px;
    height: 150px;

    object-fit: contain;

    border-radius: 50%;

    animation:
        introLogo 1.5s ease-out forwards;
}


/* INTRO LINE */

.intro-line {
    width: 0;
    height: 2px;

    margin-bottom: 18px;

    background: #a97835;

    animation:
        introLine 1.2s ease forwards;

    animation-delay: 0.6s;
}


/* INTRO TEXT */

.intro-text {
    margin: 0;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 7px;

    color: #8a642f;

    opacity: 0;

    animation:
        introText 1s ease forwards;

    animation-delay: 0.8s;
}

.intro-name {
    margin-top: 12px;

    font-size: 12px;

    letter-spacing: 2px;

    color: #766044;

    opacity: 0;

    animation:
        introText 1s ease forwards;

    animation-delay: 1s;
}


/* =========================================================
   INTRO ANIMATIONS
========================================================= */

@keyframes introLogo {

    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes introGlow {

    0% {
        transform: scale(0.85);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes introLine {

    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100px;
        opacity: 1;
    }
}

@keyframes introText {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   MAIN WEBSITE
========================================================= */

.site-content {
    position: relative;

    width: 100%;
}


/* =========================================================
   IMPORTANT:
   HIDE THE OLD FULL-SCREEN CUSTOMER TYPE SCREEN
========================================================= */

.customer-type-screen {
    display: none !important;
}


/* =========================================================
   BUYING TYPE POPUP
========================================================= */

.buying-modal {
    position: fixed;

    inset: 0;

    z-index: 99998;

    width: 100%;
    height: 100vh;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(35, 25, 16, 0.58);

    backdrop-filter: blur(7px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}


/*
   THIS IS THE STATE THAT JS ACTIVATES
*/

.buying-modal.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* POPUP BOX */

.buying-modal-box {
    width: min(650px, 94%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 42px 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #fffdf8,
            #fff7e8
        );

    border: 1px solid #eadbc4;

    text-align: center;

    box-shadow:
        0 30px 90px rgba(42, 27, 15, 0.3);

    transform:
        translateY(30px)
        scale(0.94);

    transition:
        transform 0.4s ease;
}


/*
   POPUP OPEN ANIMATION
*/

.buying-modal.active .buying-modal-box {
    transform:
        translateY(0)
        scale(1);
}


/* POPUP EYEBROW */

.buying-modal-eyebrow {
    margin-bottom: 10px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #a97835;
}


/* POPUP TITLE */

.buying-modal-box h2 {
    margin-bottom: 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(30px, 6vw, 42px);

    line-height: 1.1;

    color: #302319;
}


/* POPUP DESCRIPTION */

.buying-modal-box > p {
    margin-bottom: 30px;

    color: #75624d;

    font-size: 15px;
}


/* =========================================================
   BUYING OPTIONS
========================================================= */

.buying-options {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


/* BUYING CARD */

.buying-option {
    padding: 28px 20px;

    border:
        1px solid #e3d4c0;

    border-radius: 18px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.buying-option:hover {
    transform: translateY(-5px);

    border-color: #a97835;

    box-shadow:
        0 15px 35px rgba(70, 45, 20, 0.12);
}


/* ICON */

.buying-option-icon {
    margin-bottom: 12px;

    font-size: 36px;
}


/* CARD TITLE */

.buying-option h3 {
    margin-bottom: 8px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;

    color: #302319;
}


/* CARD DESCRIPTION */

.buying-option p {
    min-height: 65px;

    margin-bottom: 18px;

    font-size: 13px;

    line-height: 1.55;

    color: #75624d;
}


/* BUY BUTTON */

.buying-option button {
    width: 100%;

    min-height: 48px;

    padding: 0 15px;

    border: 0;

    border-radius: 25px;

    background: #3c2a1c;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.buying-option button:hover {
    background: #a97835;

    transform: translateY(-2px);
}


/* =========================================================
   BUYING SWITCHER
   HIDDEN AFTER CUSTOMER CHOICE
========================================================= */

.buying-switcher {
    display: none !important;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 250, 242, 0.94);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid #eadbc4;
}

.navbar {
    width: min(1200px, 92%);

    min-height: 78px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo img {
    width: 58px;
    height: 58px;

    object-fit: contain;

    border-radius: 50%;
}


/* NAVIGATION */

.nav-links {
    display: flex;

    align-items: center;

    gap: 35px;
}

.nav-links a {
    position: relative;

    font-size: 14px;

    font-weight: 600;

    color: #493725;

    transition:
        color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: #a97835;

    transition:
        width 0.3s ease;
}

.nav-links a:hover {
    color: #a97835;
}

.nav-links a:hover::after {
    width: 100%;
}


/* HEADER ACTIONS */

.header-actions {
    display: flex;

    align-items: center;

    gap: 15px;
}


/* CUSTOMER TYPE LABEL */

.customer-type-label {
    display: inline-flex;

    align-items: center;

    padding: 7px 12px;

    border-radius: 20px;

    background: #f2e5d1;

    color: #76532c;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;
}


/* ORDER BUTTON */

.order-btn {
    padding: 12px 22px;

    border-radius: 30px;

    background: #3c2a1c;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-2px);

    background: #a97835;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 680px;

    display: flex;

    align-items: center;

    padding: 100px 6%;

    background:
        linear-gradient(
            rgba(255, 250, 242, 0.92),
            rgba(250, 238, 218, 0.94)
        );
}

.hero-content {
    width: min(850px, 100%);

    margin: auto;

    text-align: center;
}

.eyebrow {
    margin-bottom: 15px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #a97835;
}

.hero h1 {
    margin-bottom: 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(50px, 8vw, 100px);

    line-height: 0.98;

    color: #302319;
}

.hero h1 span {
    display: block;

    color: #a97835;
}

.hero-description {
    max-width: 600px;

    margin:
        0 auto 35px;

    color: #6f5b46;

    font-size: 17px;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 28px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.primary-btn {
    background: #3c2a1c;

    color: white;
}

.secondary-btn {
    border:
        1px solid #c9aa7b;

    background: transparent;

    color: #6d4f2c;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-3px);
}

.primary-btn:hover {
    background: #a97835;
}

.secondary-btn:hover {
    background: #f1dfc1;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    padding: 100px 5%;

    background: #fffaf2;
}

.section-heading {
    max-width: 700px;

    margin:
        0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(35px, 5vw, 55px);

    color: #34271c;
}

.section-heading > p:last-child {
    color: #796955;
}


/* SHOPPING MODE */

.shopping-mode {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    padding: 8px 12px;

    border:
        1px solid #e1d1b9;

    border-radius: 25px;

    background: #fff;

    font-size: 12px;

    color: #75624d;
}

.shopping-mode strong {
    color: #a16e2d;
}

.shopping-mode button {
    padding: 5px 10px;

    border: 0;

    border-radius: 15px;

    background: #3c2a1c;

    color: #fff;

    font-size: 10px;

    font-weight: 700;
}

.shopping-mode button:hover {
    background: #a97835;
}


/* PRODUCT GRID */

.product-grid {
    width: min(1200px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* PRODUCT CARD */

.product-card {
    overflow: hidden;

    border:
        1px solid #eadbc4;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 10px 35px rgba(75, 52, 28, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(75, 52, 28, 0.12);
}


/* PRODUCT IMAGE */

.product-image {
    width: 100%;
    height: 280px;

    overflow: hidden;

    background: #f4ead9;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.product-card:hover
.product-image img {
    transform: scale(1.05);
}


/* PRODUCT INFO */

.product-info {
    padding: 22px;
}

.product-info h3 {
    margin-bottom: 15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    color: #3a2a1c;
}

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.price {
    font-size: 17px;

    font-weight: 700;

    color: #a16e2d;
}


/* VIEW BUTTON */

.view-product {
    padding: 9px 18px;

    border: 0;

    border-radius: 20px;

    background: #3c2a1c;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    transition:
        background 0.3s ease;
}

.view-product:hover {
    background: #a97835;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding: 120px 6%;

    background:
        linear-gradient(
            135deg,
            #f4e5ce,
            #fff8ed
        );
}

.about-content {
    width: min(850px, 100%);

    margin: auto;

    text-align: center;
}

.about h2 {
    margin-bottom: 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(45px, 7vw, 80px);

    color: #3b2b1d;
}

.about-content > p:last-child {
    max-width: 700px;

    margin: auto;

    color: #705c46;

    font-size: 17px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    padding: 100px 5%;

    background: #fffaf2;
}

.contact-grid {
    width: min(1200px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.contact-card {
    width: 100%;

    padding: 35px 25px;

    text-align: center;

    border:
        1px solid #eadbc4;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 10px 35px rgba(75, 52, 28, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(75, 52, 28, 0.1);
}

.contact-icon {
    margin-bottom: 15px;

    font-size: 35px;
}

.contact-card h3 {
    margin-bottom: 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
}

.contact-card p {
    margin-bottom: 20px;

    color: #75624d;
}

.contact-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 45px;

    padding: 0 20px;

    border-radius: 25px;

    background: #3c2a1c;

    color: white;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.3s ease;
}

.contact-btn:hover {
    background: #a97835;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 65px 20px;

    text-align: center;

    background: #2e2117;

    color: #fff7eb;
}

footer h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;
}

.footer-brand {
    margin: 5px 0;

    color: #d3a15d;

    letter-spacing: 5px;

    font-size: 11px;

    font-weight: 700;
}

footer > p:not(.footer-brand):not(.copyright) {
    color: #d4c4b0;
}

.footer-line {
    width: 80px;

    height: 1px;

    margin: 25px auto;

    background: #a97835;
}

.copyright {
    font-size: 11px;

    color: #a99884;
}


/* =========================================================
   CART BUTTON
========================================================= */

.cart-button {
    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 1500;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #3c2a1c;

    color: white;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.3s ease;
}

.cart-button:hover {
    transform: scale(1.08);
}

.cart-icon {
    font-size: 23px;
}

.cart-count {
    position: absolute;

    top: -3px;

    right: -3px;

    min-width: 22px;

    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #b47b32;

    color: white;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-modal,
.details-modal {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(39, 27, 18, 0.65);

    backdrop-filter: blur(7px);
}

.product-modal.active,
.details-modal.active {
    display: flex;
}


/* PRODUCT MODAL BOX */

.product-modal-box {
    position: relative;

    width: min(850px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-radius: 22px;

    background: #fffaf2;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);
}


/* CLOSE */

.modal-close,
.details-close {
    position: absolute;

    top: 15px;

    right: 15px;

    z-index: 5;

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(60, 42, 28, 0.9);

    color: white;

    font-size: 24px;

    line-height: 1;
}


/* PRODUCT IMAGE */

.modal-product-image {
    min-height: 500px;

    background: #f1e4d0;
}

.modal-product-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* PRODUCT DETAILS */

.modal-product-details {
    padding: 50px 35px;
}

.modal-eyebrow {
    margin-bottom: 10px;

    color: #a97835;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}

.modal-product-details h2 {
    margin-bottom: 15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 38px;

    color: #3b2b1d;
}

.modal-description {
    margin-bottom: 20px;

    color: #75624d;
}

.modal-price {
    margin-bottom: 25px;

    font-size: 24px;

    font-weight: 700;

    color: #a16e2d;
}


/* =========================================================
   FLAVOURS
========================================================= */

.flavour-area {
    margin-bottom: 25px;
}

.flavour-area > span,
.quantity-area > span {
    display: block;

    margin-bottom: 10px;

    font-size: 13px;

    font-weight: 700;
}

.flavour-options {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.flavour-option {
    padding: 9px 15px;

    border:
        1px solid #d8c4a8;

    border-radius: 20px;

    background: #fff;

    color: #5d4833;

    font-size: 12px;
}

.flavour-option.selected {
    background: #3c2a1c;

    color: white;

    border-color: #3c2a1c;
}


/* =========================================================
   QUANTITY
========================================================= */

.quantity-area {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;

    align-items: center;

    border:
        1px solid #dcc8ac;

    border-radius: 25px;

    overflow: hidden;
}

.quantity-selector button {
    width: 38px;

    height: 38px;

    border: 0;

    background: #f2e5d1;

    color: #3c2a1c;

    font-size: 18px;
}

.quantity-selector span {
    width: 40px;

    text-align: center;

    font-weight: 700;
}


/* =========================================================
   TOTAL
========================================================= */

.modal-total {
    display: flex;

    justify-content: space-between;

    margin-bottom: 20px;

    padding-top: 20px;

    border-top:
        1px solid #eadbc4;
}

.modal-total strong {
    color: #a16e2d;
}


/* =========================================================
   ADD TO CART
========================================================= */

.add-cart-btn,
.confirm-order-btn {
    width: 100%;

    min-height: 50px;

    border: 0;

    border-radius: 30px;

    background: #3c2a1c;

    color: white;

    font-weight: 700;

    transition:
        background 0.3s ease;
}

.add-cart-btn:hover,
.confirm-order-btn:hover {
    background: #a97835;
}


/* =========================================================
   CART OVERLAY
========================================================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 1800;

    display: none;

    background:
        rgba(39, 27, 18, 0.55);
}

.cart-overlay.active {
    display: block;
}


/* =========================================================
   CART DRAWER
========================================================= */

.cart-drawer {
    position: fixed;

    top: 0;

    right: 0;

    z-index: 2000;

    width: min(430px, 92%);

    height: 100vh;

    display: flex;

    flex-direction: column;

    background: #fffaf2;

    transform:
        translateX(100%);

    transition:
        transform 0.4s ease;

    box-shadow:
        -20px 0 60px rgba(0, 0, 0, 0.18);
}

.cart-drawer.active {
    transform:
        translateX(0);
}


/* CART HEADER */

.cart-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 25px;

    border-bottom:
        1px solid #eadbc4;
}

.cart-small-title {
    color: #a97835;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.cart-header h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

.cart-close {
    width: 40px;

    height: 40px;

    border: 0;

    border-radius: 50%;

    background: #3c2a1c;

    color: white;

    font-size: 22px;
}


/* CART ITEMS */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px;
}

.empty-cart {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #796955;
}

.empty-cart-icon {
    margin-bottom: 15px;

    font-size: 45px;
}


/* CART FOOTER */

.cart-footer {
    padding: 20px;

    border-top:
        1px solid #eadbc4;

    background: #fff;
}

.cart-total {
    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;

    font-size: 16px;
}

.checkout-btn {
    width: 100%;

    min-height: 50px;

    border: 0;

    border-radius: 30px;

    background: #3c2a1c;

    color: white;

    font-weight: 700;

    transition:
        background 0.3s ease;
}

.checkout-btn:hover {
    background: #a97835;
}


/* =========================================================
   CUSTOMER DETAILS MODAL
========================================================= */

.details-box {
    position: relative;

    width: min(500px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 40px 30px;

    border-radius: 22px;

    background: #fffaf2;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25);
}

.details-header {
    margin-bottom: 25px;

    text-align: center;
}

.details-header h2 {
    margin-bottom: 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 38px;
}

.details-header > p:last-child {
    color: #75624d;
}


/* FORM */

.form-group {
    margin-bottom: 20px;
}

.form-group > label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 700;

    color: #4b3927;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    border:
        1px solid #dcc8ac;

    border-radius: 10px;

    outline: none;

    background: #fff;

    color: #3c2a1c;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #a97835;
}


/* ORDER TYPE */

.order-type-options {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;
}

.order-type-card {
    padding: 14px;

    border:
        1px solid #dcc8ac;

    border-radius: 12px;

    background: white;

    cursor: pointer;

    text-align: center;

    transition:
        border 0.3s ease,
        background 0.3s ease;
}

.order-type-card:has(input:checked) {
    border-color: #a97835;

    background: #fbf0dd;
}

.order-type-card input {
    margin-right: 6px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .nav-links {
        gap: 18px;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero {
        min-height: 600px;
    }

    .product-modal-box {
        grid-template-columns: 1fr;
    }

    .modal-product-image {
        min-height: 300px;

        max-height: 350px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .navbar {
        min-height: 70px;
    }

    .logo img {
        width: 48px;

        height: 48px;
    }

    .nav-links {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .customer-type-label {
        display: none;
    }

    .order-btn {
        padding: 10px 16px;

        font-size: 11px;
    }


    /* POPUP */

    .buying-modal {
        padding: 15px;
    }

    .buying-modal-box {
        width: 94%;

        padding: 30px 18px;

        border-radius: 20px;
    }

    .buying-modal-box h2 {
        font-size: 28px;
    }

    .buying-modal-box > p {
        font-size: 14px;

        margin-bottom: 22px;
    }

    .buying-options {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .buying-option {
        padding: 20px 18px;
    }

    .buying-option-icon {
        font-size: 30px;
    }

    .buying-option p {
        min-height: auto;
    }


    /* HERO */

    .hero {
        min-height: 600px;

        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-description {
        font-size: 15px;
    }


    /* PRODUCTS */

    .products-section,
    .contact {
        padding: 75px 20px;
    }

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

    .product-image {
        height: 300px;
    }


    /* ABOUT */

    .about {
        padding: 80px 20px;
    }

    .about h2 {
        font-size: 50px;
    }


    /* CONTACT */

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


    /* CART */

    .cart-button {
        right: 18px;

        bottom: 18px;

        width: 55px;

        height: 55px;
    }


    /* PRODUCT MODAL */

    .modal-product-details {
        padding: 35px 22px;
    }

    .modal-product-details h2 {
        font-size: 32px;
    }


    /* DETAILS */

    .details-box {
        padding: 35px 20px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 44px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .intro-logo {
        width: 125px;

        height: 125px;
    }

    .intro-glow {
        width: 180px;

        height: 180px;
    }

    .order-type-options {
        grid-template-columns: 1fr;
    }

    .buying-modal-box h2 {
        font-size: 25px;
    }
}