/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 85px;
    padding: 0 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    /* لون مختلف بسيط عن الـ Hero */
    background-color: #eee2d4;

    border-bottom: 1px solid #e3d5c5;

    box-shadow: 0 3px 12px rgba(45, 33, 27, 0.05);

    position: relative;
    z-index: 10;
}


/* Logo */

.logo {
    font-size: 33px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #2d211b;
}

.logo span {
    color: #a65d32;
}


/* Navigation Links */

.navbar nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar nav a {
    position: relative;

    padding: 11px 20px;

    border-radius: 50px;

    color: #93735b;

    font-size: 20px;
    font-weight: 550;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* Hover */

.navbar nav a:hover {
    background-color: #f8f3ec;

    color: #a65d32;

    transform: translateY(-2px);
}


/* الخط الصغير تحت اللينك */

.navbar nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 6px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background-color: #a65d32;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

.navbar nav a:hover::after {
    width: 20px;
}


/* الصفحة الحالية */

.navbar nav a.active {
    background-color: #f8f3ec;

    color: #a65d32;
}


/* Order Now */

.nav-btn {
    padding: 13px 26px;

    border: 1px solid #6f422b;

    border-radius: 30px;

    background-color: transparent;

    color: #6f422b;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #8c7366;

    color: white;

    transform: translateY(-3px);

    box-shadow: 0 8px 18px rgba(78, 45, 30, 0.18);
}

/* Active Link */

.navbar nav a.active {
    background-color: #f8f3ec;

    color: #a65d32;
}


.nav-btn {
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: #6f422b;
    color: white;
     font-size: 14px;
    text-decoration: none;
}



/* ===== Hero ===== */

.hero {
    min-height: calc(100vh - 80px);
    padding: 70px 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;
     gap: 60px;
    background-color: #f8f3ec;
    overflow: hidden;
}

.hero-content {
    width: 52%;
    animation: heroText 1s ease

}

.small-title {
    margin-bottom: 18px;
    
    color: #a65d32;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
}

.hero h1 {
    margin: 0;

    font-size: clamp(50px, 6vw,80px);
    line-height: 1.05;
    /*font-weight: 700;*/

    color: #2d211b;
}

.hero h1 span {
    display: block;
    color: #a65d32;
}

.description {
    max-width: 480px;

    margin: 25px 0;

    color: #76665b;

    font-size: 15px;

    line-height: 1.8;
}


/* ===== Buttons ===== */

/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 32px;
}

.btn {
    padding: 14px 30px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* Explore Menu */

.primary {
    background-color: transparent;

    border: 1px solid #6f422b;

    color: #6f422b;
}

.primary:hover {
    background-color: #6f422b;

    color: white;

    transform: translateY(-4px);

    box-shadow: 0 10px 20px rgba(78, 45, 30, 0.18);
}


/* Our Story */

.secondary {
    background-color: transparent;

    border: 1px solid #6f422b;

    color: #6f422b;
}

.secondary:hover {
    background-color: #6f422b;

    color: white;

    transform: translateY(-4px);

    box-shadow: 0 10px 20px rgba(78, 45, 30, 0.18);
}


/* ===== Hero Image ===== */

.hero-image {
     width: 45%;

    display: flex;

    justify-content: center;
    align-items: center;

    position: relative;

    animation: heroImage 1.2s ease;
}
.hero-image::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background-color: #eadccd;

    z-index: 0;
}

.hero-image img {
    position: relative;

    z-index: 1;

    width: 400px;
    height: 400px;

    object-fit: cover;

    border-radius: 50%;

    border: 10px solid #f8f3ec;

    box-shadow:
        0 25px 60px rgba(64, 39, 25, 0.2);

    transition: transform 0.5s ease;
}
.hero-image img:hover {
    transform: scale(1.04) rotate(2deg);
}
@keyframes heroText {

    from {
        opacity: 0;

        transform: translateX(-40px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }
}


@keyframes heroImage {from {
        opacity: 0;

        transform: translateX(40px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }
}


/* ===== Features ===== */

.features {
    padding: 60px 8%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    background-color: #efe5d8;
}

.feature {
    padding: 25px;

    text-align: center;
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #f8f3ec;

    font-size: 25px;
}

.feature h3 {
    margin-bottom: 8px;

    font-size: 22px;
    color: #2d211b;
}

.feature p {
    color: #77675b;
    font-size: 13px;
}


/* ===== Responsive ===== */

@media (max-width: 900px) {

    .navbar {
        padding: 0 5%;
    }

    .navbar nav {
        display: none;
    }

    .hero {
        min-height: auto;

        padding: 70px 5%;

        flex-direction: column;

        text-align: center;

        gap: 60px;
    }

    .hero-content {
        width: 100%;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
    }
    .hero-image::before {
        width: 350px;
        height: 350px;
    }

    .hero-image img {
        width: 320px;
        height: 320px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 500px) {

    .hero {
        padding: 50px 5%;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-buttons {
        flex-direction: column;
    }


    .btn {
        width: 100%;
    }

    .hero-image::before {
        width: 300px;
        height: 300px;
    }
    .hero-image img {
        width: 270px;
        height: 270px;
    }
}
/* =========================
   MENU PAGE
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f3ec;
    color: #2d211b;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 80px;
    padding: 0 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: #f8f3ec;
}

.logo {
    font-size: 30px;
    font-weight: 700;
}

.logo span {
    color: #a65d32;
}

.navbar nav {
    display: flex;
    gap: 30px;
}

.navbar nav a {
    text-decoration: none;
    color: #4a382d;
    font-size: 15px;

    transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #a65d32;
}

.nav-btn {
    padding: 12px 22px;

    background-color: #6f422b;
    color: white;

    border-radius: 25px;

    text-decoration: none;
}


/* =========================
   MENU HEADER
========================= */

.menu-header {
    padding: 80px 8% 60px;

    text-align: center;

    background-color: #efe5d8;
}

.small-title {
    margin-bottom: 15px;

    color: #a65d32;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 4px;
}

.menu-header h1 {
    font-size: 60px;
    line-height: 1.1;
}

.menu-header h1 span {
    color: #a65d32;
}

.menu-header p:last-child {
    max-width: 550px;

    margin: 20px auto 0;

    color: #76665b;

    line-height: 1.8;
}


/* =========================
   MENU SECTION
========================= */

.menu-section {
    padding: 70px 8%;
}

.section-title {
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.section-title p {
    color: #88766a;
    font-size: 14px;
}


/* =========================
   MENU CARDS
========================= */

.menu-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.menu-card {
    overflow: hidden;

    background-color: #fffaf4;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(65, 42, 28, 0.08);

    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-8px);
}

.menu-card img {
    width: 100%;
    height: 230px;

    display: block;

    object-fit: cover;
}

.menu-info {
    padding: 22px;
}

.menu-name {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.menu-name h3 {
    font-size: 20px;
}

.menu-name span {
    color: #a65d32;

    font-size: 17px;
    font-weight: 600;

    white-space: nowrap;
}

.menu-info p {
    margin-top: 10px;

    color: #806f63;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 50px 8%;

    text-align: center;

    background-color: #2d211b;

    color: white;
}

.footer .logo {
    margin-bottom: 10px;
}

.footer p {
    color: #c9b9ac;
    font-size: 13px;
}

.footer .copyright {
    margin-top: 20px;
    font-size: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .navbar {
        padding: 0 5%;
    }

    .navbar nav {
        display: none;
    }

    .menu-header h1 {
        font-size: 48px;
    }

    .menu-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .menu-header {
        padding: 60px 5% 45px;
    }

    .menu-header h1 {
        font-size: 40px;
    }

    .menu-section {
        padding: 50px 5%;
    }

    .menu-container {
        grid-template-columns: 1fr;
    }

    .nav-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}
/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    min-height: 650px;

    padding: 80px 8%;

    display: flex;
    align-items: center;
    gap: 80px;

    background-color: #f8f3ec;
}


/* =========================
   IMAGE
========================= */

.about-image {
    width: 50%;
}

.about-image img {
    width: 100%;
    height: 550px;

    object-fit: cover;

    border-radius: 20px;
}


/* =========================
   CONTENT
========================= */

.about-content {
    width: 50%;
}

.small-title {
    margin-bottom: 15px;

    color: #a65d32;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 4px;
}

.about-content h1 {
    margin-bottom: 25px;

    font-size: 60px;
    line-height: 1.1;
}

.about-content h1 span {
    display: block;

    color: #a65d32;
}

.about-content p:not(.small-title) {
    max-width: 500px;

    margin-bottom: 18px;

    color: #76665b;

    font-size: 15px;
    line-height: 1.9;
}


/* =========================
   BUTTON
========================= */

.about-btn {
    display: inline-block;

    margin-top: 15px;

    padding: 14px 28px;

    border-radius: 30px;

    background-color: #6f422b;
    color: white;

    text-decoration: none;

    transition: 0.3s;
}

.about-btn:hover {
    background-color: #4e2d1e;

    transform: translateY(-3px);
}


/* =========================
   WHY US
========================= */

.why-us {
    padding: 80px 8%;

    background-color: #efe5d8;

    text-align: center;
}

.section-title h2 {
    margin-top: 5px;

    font-size: 45px;
}

.section-title h2 span {
    color: #a65d32;
}


.about-features {
    margin-top: 50px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.about-feature {
    padding: 35px;

    background-color: #f8f3ec;

    border-radius: 15px;
}

.feature-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #eadccd;

    font-size: 25px;
}

.about-feature h3 {
    margin-bottom: 10px;

    font-size: 21px;
}

.about-feature p {
    color: #76665b;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================
   NUMBERS
========================= */

.numbers {
    padding: 70px 8%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background-color: #6f422b;

    color: white;

    text-align: center;
}

.number-box h2 {
    margin-bottom: 8px;

    font-size: 40px;
}

.number-box p {
    color: #e5d6ca;

    font-size: 13px;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 50px 8%;

    text-align: center;

    background-color: #2d211b;

    color: white;
}

.footer .logo {
    margin-bottom: 10px;
}

.footer p {
    color: #c9b9ac;

    font-size: 13px;
}

.footer .copyright {
    margin-top: 20px;

    font-size: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .about-hero {
        flex-direction: column;

        padding: 60px 5%;

        gap: 50px;
    }

    .about-image,
    .about-content {
        width: 100%;
    }

    .about-image img {
        height: 450px;
    }

    .about-content h1 {
        font-size: 50px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .numbers {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }
}


@media (max-width: 600px) {

    .about-image img {
        height: 350px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h1 {
        font-size: 42px;
    }

    .about-content p:not(.small-title) {
        margin-left: auto;
        margin-right: auto;
    }

    .numbers {
        grid-template-columns: 1fr;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   CONTACT HEADER
========================= */

.contact-header {
    padding: 80px 8% 70px;

    text-align: center;

    background-color: #efe5d8;
}

.small-title {
    margin-bottom: 15px;

    color: #a65d32;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 4px;
}

.contact-header h1 {
    font-size: 60px;
    line-height: 1.1;
}

.contact-header h1 span {
    display: block;

    color: #a65d32;
}

.contact-header > p:last-child {
    max-width: 550px;

    margin: 20px auto 0;

    color: #76665b;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 80px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    background-color: #f8f3ec;
}


/* =========================
   CONTACT INFO
========================= */

.contact-info h2,
.contact-form h2 {
    margin-bottom: 15px;

    font-size: 32px;
}

.contact-info > p {
    max-width: 450px;

    margin-bottom: 35px;

    color: #76665b;

    font-size: 14px;

    line-height: 1.8;
}

.info-item {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #eadccd;

    font-size: 20px;
}

.info-item h3 {
    margin-bottom: 3px;

    font-size: 16px;
}

.info-item p {
    color: #76665b;

    font-size: 13px;
}


/* =========================
   FORM
========================= */

.contact-form {
    padding: 35px;

    background-color: #fffaf4;

    border-radius: 15px;

    box-shadow: 0 10px 35px rgba(65, 42, 28, 0.08);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;

    margin-bottom: 8px;

    color: #4a382d;

    font-size: 13px;
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #dfd1c3;

    border-radius: 8px;

    outline: none;

    background-color: #f8f3ec;

    color: #2d211b;

    font-family: inherit;

    font-size: 13px;

    transition: 0.3s;
}

.input-group textarea {
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #a65d32;
}


.contact-form button {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 30px;

    background-color: #6f422b;

    color: white;

    font-family: inherit;

    font-size: 14px;

    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #4e2d1e;

    transform: translateY(-2px);
}


/* =========================
   MAP
========================= */

.map-section {
    padding: 0 8% 80px;

    background-color: #f8f3ec;
}

.map-box {
    width: 100%;
    height: 350px;

    overflow: hidden;

    border-radius: 20px;

    background-color: #ded4c8;
}

.map-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    color: #6f422b;
}

.map-placeholder span {
    font-size: 45px;
}

.map-placeholder h3 {
    margin: 10px 0 5px;

    font-size: 24px;
}

.map-placeholder p {
    color: #76665b;

    font-size: 13px;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 50px 8%;

    text-align: center;

    background-color: #2d211b;

    color: white;
}

.footer .logo {
    margin-bottom: 10px;
}

.footer p {
    color: #c9b9ac;

    font-size: 13px;
}

.footer .copyright {
    margin-top: 20px;

    font-size: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .contact-header h1 {
        font-size: 48px;
    }

    .contact-section {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 60px 5%;
    }

    .map-section {
        padding: 0 5% 60px;
    }
}


@media (max-width: 600px) {

    .contact-header {
        padding: 60px 5%;
    }

    .contact-header h1 {
        font-size: 40px;
    }

    .contact-form {
        padding: 25px;
    }

    .info-item {
        align-items: flex-start;
    }
}
/* =========================
   ORDER HEADER
========================= */

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;

    background-color: #f8f3ec;

    color: #2d211b;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 85px;

    padding: 0 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: #eee2d4;

    border-bottom: 1px solid #e3d5c5;

    box-shadow: 0 3px 12px rgba(45, 33, 27, 0.05);
}


.logo {
    font-size: 33px;
    font-weight: 700;

    letter-spacing: 1px;
}

.logo span {
    color: #a65d32;
}


.navbar nav {
    display: flex;
    align-items: center;

    gap: 12px;
}


.navbar nav a {
    padding: 11px 20px;

    border-radius: 50px;

    color: #4a382d;

    font-size: 18px;
    font-weight: 500;

    text-decoration: none;

    transition: 0.3s;
}


.navbar nav a:hover {
    background-color: #f8f3ec;

    color: #a65d32;

    transform: translateY(-2px);
}


.nav-btn {
    padding: 13px 26px;

    border: 1px solid #a65d32;

    border-radius: 30px;

    background-color: #a65d32;

    color: white;

    font-size: 15px;

    text-decoration: none;

    transition: 0.3s;
}


.nav-btn:hover {
    background-color: #6f422b;

    transform: translateY(-3px);
}


/* =========================
   ORDER HEADER
========================= */

.order-header {
    padding: 80px 8% 70px;

    text-align: center;

    background-color: #efe5d8;
}


.small-title {
    margin-bottom: 15px;

    color: #a65d32;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 4px;
}


.order-header h1 {
    font-size: 60px;

    line-height: 1.1;
}


.order-header h1 span {
    display: block;

    color: #a65d32;
}


.order-header > p:last-child {
    max-width: 550px;

    margin: 20px auto 0;

    color: #76665b;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================
   ORDER SECTION
========================= */

.order-section {
    padding: 80px 8%;

    display: grid;

    grid-template-columns: 1fr 0.75fr;

    gap: 70px;
}


/* =========================
   ORDER FORM
========================= */

.order-form {
    padding: 40px;

    background-color: #fffaf4;

    border-radius: 20px;

    box-shadow: 0 12px 35px rgba(65, 42, 28, 0.08);
}


.order-form > h2 {
    margin-bottom: 35px;

    font-size: 30px;
}


/* =========================
   CATEGORY
========================= */

.category {
    margin-bottom: 35px;
}


.category-title {
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.category-title h3 {
    font-size: 19px;
}


.add-item {
    border: none;

    background: none;

    color: #a65d32;

    font-family: inherit;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}


.add-item:hover {
    color: #6f422b;

    transform: translateX(3px);
}


/* =========================
   ORDER ITEM
========================= */

.order-item {
    display: grid;

    grid-template-columns: 1fr 75px 40px;

    gap: 10px;

    margin-bottom: 12px;
}


.product,
.quantity {
    height: 46px;

    padding: 10px 12px;

    border: 1px solid #dfd1c3;

    border-radius: 8px;

    outline: none;

    background-color: #f8f3ec;

    color: #2d211b;

    font-family: inherit;

    font-size: 13px;
}


.product:focus,
.quantity:focus {
    border-color: #a65d32;
}


.quantity {
    text-align: center;
}


.remove-item {
    width: 40px;
    height: 46px;

    border: none;

    border-radius: 8px;

    background-color: #eadccd;

    color: #6f422b;

    font-size: 22px;

    cursor: pointer;

    transition: 0.3s;
}


.remove-item:hover {
    background-color: #6f422b;

    color: white;
}


/* =========================
   CUSTOMER INFO
========================= */

.customer-info {
    margin-top: 40px;

    padding-top: 35px;

    border-top: 1px solid #dfd1c3;
}


.customer-info h2 {
    margin-bottom: 25px;

    font-size: 25px;
}


.input-group {
    margin-bottom: 20px;
}


.input-group label {
    display: block;

    margin-bottom: 8px;

    color: #4a382d;

    font-size: 13px;
    font-weight: 500;
}


.input-group input,
.input-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #dfd1c3;

    border-radius: 8px;

    outline: none;

    background-color: #f8f3ec;

    color: #2d211b;

    font-family: inherit;

    font-size: 13px;
}


.input-group textarea {
    resize: vertical;
}


.input-group input:focus,
.input-group textarea:focus {
    border-color: #a65d32;
}


/* =========================
   TOTAL
========================= */

.order-total {
    margin-top: 30px;
    padding-top: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid #dfd1c3;
}


.order-total span {
    font-size: 18px;
}


.order-total strong {
    color: #a65d32;

    font-size: 25px;
}


/* =========================
   PLACE ORDER
========================= */

.place-order {
    width: 100%;

    margin-top: 20px;

    padding: 16px;

    border: none;

    border-radius: 30px;

    background-color: #a65d32;

    color: white;

    font-family: inherit;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}


.place-order:hover {
    background-color: #6f422b;

    transform: translateY(-3px);

    box-shadow: 0 10px 20px rgba(78, 45, 30, 0.18);
}


/* =========================
   ORDER IMAGE
========================= */

.order-image {
    height: fit-content;

    position: sticky;

    top: 30px;

    display: flex;

    flex-direction: column;

    align-items: center;
}


.image-circle {
    width: 430px;
    height: 430px;

    padding: 12px;

    border-radius: 50%;

    background-color: #eadccd;

    box-shadow: 0 25px 60px rgba(64, 39, 25, 0.18);

    transition: 0.4s;
}


.image-circle:hover {
    transform: scale(1.03) rotate(2deg);
}


.image-circle img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================
   MESSAGE
========================= */

.order-message {
    max-width: 430px;

    margin-top: 25px;

    padding: 25px;

    border-radius: 15px;

    background-color: #efe5d8;

    text-align: center;
}


.order-message h2 {
    margin-bottom: 8px;

    font-size: 22px;
}


.order-message p {
    color: #76665b;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 50px 8%;

    background-color: #2d211b;

    color: white;

    text-align: center;
}


.footer .logo {
    margin-bottom: 10px;
}


.footer p {
    color: #c9b9ac;

    font-size: 13px;
}


.footer .copyright {
    margin-top: 20px;

    font-size: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .order-section {
        grid-template-columns: 1fr;
    }

    .order-image {
        position: static;
    }

}


@media (max-width: 700px) {

    .navbar {
        height: auto;

        padding: 20px 5%;

        flex-direction: column;

        gap: 20px;
    }

    .navbar nav {
        flex-wrap: wrap;

        justify-content: center;
    }

    .navbar nav a {
        font-size: 15px;

        padding: 8px 13px;
    }


    .order-header {
        padding: 60px 5%;
    }

    .order-header h1 {
        font-size: 45px;
    }


    .order-section {
        padding: 50px 5%;
    }


    .order-form {
        padding: 25px;
    }


    .order-item {
        grid-template-columns: 1fr 65px 35px;
    }


    .image-circle {
        width: 300px;
        height: 300px;
    }

}


@media (max-width: 450px) {

    .order-item {
        grid-template-columns: 1fr 55px 35px;
    }

    .product,
    .quantity {
        font-size: 12px;
    }

    .image-circle {
        width: 260px;
        height: 260px;
    }

}