@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');


/* ------------------------------
   RESET
------------------------------ */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f3eb;
    color: #34261c;
    font-family: "Inter", sans-serif;
}


/* ------------------------------
   NAVIGATION
------------------------------ */

.navbar {
    width: 100%;
    height: 90px;

    padding: 0 6%;

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

    background: rgba(247, 243, 235, 0.95);

    border-bottom: 1px solid rgba(164, 126, 55, 0.18);

    position: relative;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-link img {
    width: 95px;
    height: auto;
    display: block;
}


.nav-links {
    display: flex;
    gap: 38px;
    align-items: center;
}

.nav-links a {
    color: #34261c;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1px;

    transition: color 0.3s ease;
}

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


.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cart {
    padding: 14px 18px;
    border: none;
    text-decoration: none;
    color: #3f2d20;
}

.icon-button,
.cart-button {
    background: transparent;
    border: none;

    color: #34261c;

    font-family: "Inter", sans-serif;
    font-size: 12px;

    letter-spacing: 0.7px;

    cursor: pointer;
}

.cart-button {
    padding: 10px 15px;

    border: 1px solid rgba(164, 126, 55, 0.45);
}

.cart-button span {
    margin-left: 5px;
    color: #9b7228;
}


/* ------------------------------
   HERO
------------------------------ */

.hero {
    min-height: calc(100vh - 90px);

    padding: 70px 8%;

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

    position: relative;

    overflow: hidden;
}


.hero-content {
    width: 52%;
    position: relative;
    z-index: 2;
}


.eyebrow {
    color: #9b7228;

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

    letter-spacing: 4px;

    margin-bottom: 24px;
}


.hero h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(64px, 7vw, 105px);

    line-height: 0.9;

    font-weight: 500;

    color: #3a281c;

    margin-bottom: 30px;
}

.hero h1 span {
    color: #64713b;
    font-style: italic;
}


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

    font-size: 15px;

    line-height: 1.9;

    color: #6d6258;

    margin-bottom: 38px;
}


/* ------------------------------
   BUTTONS
------------------------------ */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}


.primary-button,
.secondary-button {
    display: inline-block;

    padding: 15px 27px;

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 1px;

    transition: all 0.3s ease;
}


.primary-button {
    background: #4e5b2d;
    color: #fff;

    border: 1px solid #4e5b2d;
}

.primary-button:hover {
    background: #39451f;
}


.secondary-button {
    color: #4e5b2d;

    border: 1px solid rgba(78, 91, 45, 0.45);
}

.secondary-button:hover {
    background: rgba(78, 91, 45, 0.07);
}


/* ------------------------------
   HERO DECORATION
------------------------------ */

.hero-decoration {
    width: 42%;
    height: 600px;

    position: relative;

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


.gold-ring {
    width: 440px;
    height: 440px;

    border: 1px solid rgba(164, 126, 55, 0.45);

    border-radius: 50%;

    position: absolute;
}


.gold-ring::before,
.gold-ring::after {
    content: "";

    position: absolute;

    background: #f7f3eb;
}


.gold-ring::before {
    width: 90px;
    height: 12px;

    right: -5px;
    top: 75px;
}


.gold-ring::after {
    width: 12px;
    height: 90px;

    left: 45px;
    bottom: -5px;
}


/* ------------------------------
   HERO LOGO
------------------------------ */

.hero-logo {
    width: 330px;
    height: 330px;

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

    position: relative;
    z-index: 2;
}

.hero-logo img {
    width: 285px;
    height: auto;

    display: block;

    filter: drop-shadow(0 18px 30px rgba(55, 40, 25, 0.08));
}


/* ------------------------------
   BOTANICAL DETAILS
------------------------------ */

.leaf-detail {
    position: absolute;

    width: 85px;
    height: 32px;

    border-radius: 100% 0 100% 0;

    background: #66733c;

    opacity: 0.75;

    z-index: 1;
}

.leaf-one {
    right: 8%;
    bottom: 22%;

    transform: rotate(25deg);
}

.leaf-two {
    right: 3%;
    bottom: 28%;

    width: 65px;

    transform: rotate(-25deg);
}

.leaf-three {
    right: 12%;
    bottom: 14%;

    width: 55px;

    transform: rotate(55deg);
}


/* ------------------------------
   MOBILE
------------------------------ */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }

    .hero {
        padding: 60px 7%;

        flex-direction: column;

        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-decoration {
        width: 100%;
        height: 430px;

        margin-top: 30px;
    }

    .gold-ring {
        width: 320px;
        height: 320px;
    }


    .hero-logo {
        width: 280px;
        height: 280px;
    }

    .hero-logo img {
        width: 240px;
    }

    .categories {
    padding: 80px 6%;
}

.category-grid {
    grid-template-columns: 1fr;
    gap: 22px;
}

.category-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.featured-products {
    padding: 80px 6%;
}

.why-pm {
    padding: 80px 7%;
}

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

.quality-item:not(:last-child) {
    border-right: none;
    margin-right: 0;
}

.quality-item {
    padding-right: 25px;
}

.our-story {
    grid-template-columns: 1fr;

    gap: 50px;

    padding: 80px 7%;
}

.story-content {
    max-width: 100%;
}

.story-image {
    max-width: 650px;
}

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

.reviews {
    padding: 80px 7%;
}

.footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-bottom {
    flex-direction: column;
    align-items: flex-start;
}

.product-page {
    grid-template-columns: 1fr;
    gap: 45px;

    padding: 60px 7% 90px;
}

.cart-layout {
    grid-template-columns: 1fr;
}

.cart-item {
    grid-template-columns: 95px 1fr;
}

.cart-quantity,
.cart-item-total,
.remove-item {
    grid-column: 2;
}

}


/* ==============================
   SHOP BY CATEGORY
============================== */

.categories {
    padding: 110px 8%;
    background: #f8f3e9;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: block;
    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;

    color: #7a693d;
}

.section-heading h2 {
    margin: 0 0 16px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 600;

    color: #3f2d20;
}

.section-heading p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: #74695d;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-card {
    display: block;

    overflow: hidden;

    text-decoration: none;

    background: #fffdf8;

    border: 1px solid rgba(110, 91, 48, 0.12);

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

.category-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(65, 48, 31, 0.10);
}

.category-image {
    height: 300px;
    overflow: hidden;
}

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

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.04);
}

.category-content {
    padding: 24px 25px 27px;
}

.category-content h3 {
    margin: 0 0 8px;

    font-family: "Cormorant Garamond", serif;
    font-size: 28px;

    color: #3f2d20;
}

.category-content span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;

    color: #7a693d;
}


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

.featured-products {
    padding: 110px 8%;
    background: #fffdf8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.product-card {
    background: #f8f3e9;
    border: 1px solid rgba(87, 67, 43, 0.10);
    overflow: hidden;

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

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

    box-shadow:
        0 20px 45px rgba(62, 45, 30, 0.10);
}

.product-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3ede3;
}

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

    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 22px 22px 25px;
}

.product-category {
    display: block;
    margin-bottom: 8px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #8a743f;
}

.product-info h3 {
    margin: 0 0 6px;

    min-height: 58px;

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 600;

    color: #3f2d20;
}

.product-weight {
    margin: 0 0 8px;

    font-size: 13px;

    color: #7d7064;
}

.product-price {
    margin: 0 0 18px;

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

    color: #3f2d20;
}

.product-button {
    width: 100%;

    padding: 13px 18px;

    border: 1px solid #5d6838;

    background: transparent;

    color: #4d582d;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;

    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.product-button:hover {
    background: #5d6838;
    color: #fffdf8;
}


@media (max-width: 550px) {

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

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

    .quality-item {
        padding: 30px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer {
    padding: 65px 7% 25px;
    }

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

}

/* ==============================
   WHY PM FOODS
============================== */

.why-pm {
    padding: 120px 8%;
    background: #3f4a2c;
    color: #f8f3e9;
}

.why-heading {
    max-width: 700px;
    margin-bottom: 70px;
}

.why-pm .section-label {
    color: #c7a65b;
}

.why-heading h2 {
    margin: 12px 0 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 5vw, 70px);
    line-height: 0.95;
    font-weight: 500;

    color: #fffaf0;
}

.why-heading h2 em {
    font-weight: 400;
    color: #d5c49c;
}

.why-heading p {
    max-width: 600px;

    font-size: 14px;
    line-height: 1.9;

    color: rgba(255, 250, 240, 0.68);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quality-item {
    padding: 38px 30px 15px 0;
}

.quality-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    margin-right: 30px;
}

.quality-number {
    display: block;
    margin-bottom: 35px;

    font-family: "Cormorant Garamond", serif;
    font-size: 15px;

    color: #c7a65b;
}

.quality-item h3 {
    margin: 0 0 12px;

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 500;

    color: #fffaf0;
}

.quality-item p {
    margin: 0;

    max-width: 260px;

    font-size: 12px;
    line-height: 1.8;

    color: rgba(255, 250, 240, 0.60);
}


/* ==============================
   OUR STORY
============================== */

.our-story {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 90px;

    padding: 120px 8%;

    background: #f8f3e9;
}

.story-content {
    max-width: 620px;
}

.story-content h2 {
    margin: 12px 0 28px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 0.95;
    font-weight: 500;

    color: #3f2d20;
}

.story-content h2 em {
    font-weight: 400;
    color: #7a693d;
}

.story-content p {
    margin: 0 0 18px;

    max-width: 570px;

    font-size: 14px;
    line-height: 1.9;

    color: #74695d;
}

.story-link {
    display: inline-block;

    margin-top: 18px;

    padding-bottom: 5px;

    border-bottom: 1px solid #7a693d;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;

    color: #6f5b2e;

    transition: opacity 0.3s ease;
}

.story-link:hover {
    opacity: 0.65;
}

.story-image {
    overflow: hidden;

    aspect-ratio: 1 / 1;
}

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

    object-fit: cover;
    display: block;
}

/* ==============================
   REVIEWS
============================== */

.reviews {
    padding: 110px 8%;
    background: #fffdf8;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    padding: 40px 34px;

    background: #f8f3e9;

    border: 1px solid rgba(87, 67, 43, 0.10);
}

.review-stars {
    margin-bottom: 24px;

    font-size: 14px;
    letter-spacing: 5px;

    color: #a8853d;
}

.review-card p {
    margin: 0 0 28px;

    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    line-height: 1.45;

    color: #4a382a;
}

.review-card h3 {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #7a693d;
}


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

.footer {
    padding: 80px 8% 30px;
    background: #2f271f;
    color: #f7f0e5;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
    width: 120px;
    height: auto;

    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 340px;

    margin: 0;

    font-size: 13px;
    line-height: 1.8;

    color: rgba(247, 240, 229, 0.65);
}

.footer-column h3 {
    margin: 0 0 22px;

    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 500;

    color: #fff8ed;
}

.footer-column a {
    display: block;

    margin-bottom: 12px;

    font-size: 12px;
    text-decoration: none;

    color: rgba(247, 240, 229, 0.65);

    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #c7a65b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding-top: 25px;
}

.footer-bottom p {
    margin: 0;

    font-size: 11px;
    letter-spacing: 0.6px;

    color: rgba(247, 240, 229, 0.50);
}


/* ==============================
   PRODUCT PAGE
============================== */

.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 90px;
    align-items: center;

    min-height: 80vh;

    padding: 90px 8% 120px;

    background: #f8f3e9;
}

.product-page-image {
    background: #eee6da;
    overflow: hidden;
}

.product-page-image img {
    width: 100%;
    display: block;
}

.product-page-info {
    max-width: 570px;
}

.product-page-info h1 {
    margin: 10px 0 16px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 5vw, 70px);
    line-height: 1;

    color: #3f2d20;
}

.product-page-price {
    margin: 0 0 8px;

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

    color: #3f2d20;
}

.product-page-weight {
    margin: 0 0 35px;

    color: #786d62;
}

.product-page-description {
    padding-top: 25px;

    border-top: 1px solid rgba(70, 52, 35, 0.15);
}

.product-page-description h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;

    color: #3f2d20;
}

.product-page-description p {
    font-size: 14px;
    line-height: 1.8;

    color: #74695d;
}

.quantity-control {
    display: flex;
    align-items: center;

    width: fit-content;

    margin: 30px 0;

    border: 1px solid #b7ad9c;
}

.quantity-control button {
    width: 45px;
    height: 45px;

    border: none;
    background: transparent;

    font-size: 18px;

    cursor: pointer;
}

.quantity-control span {
    width: 45px;

    text-align: center;
}

.product-page-actions {
    display: flex;
    gap: 12px;
}

.add-cart-button,
.buy-now-button {
    flex: 1;

    padding: 15px 20px;

    border: 1px solid #596337;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;
}

.add-cart-button {
    background: transparent;
    color: #4d572e;
}

.buy-now-button {
    background: #596337;
    color: #fffaf1;
}



/* ==============================
   CART PAGE
============================== */

.cart-page {
    min-height: 80vh;
    padding: 90px 8% 120px;

    background: #f8f3e9;
}

.cart-heading {
    margin-bottom: 50px;
}

.cart-heading h1 {
    margin: 10px 0 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 500;

    color: #3f2d20;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.7fr 0.8fr;

    gap: 60px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 130px 1fr auto auto auto;

    align-items: center;
    gap: 25px;

    padding: 18px;

    background: #fffdf8;

    border: 1px solid rgba(87, 67, 43, 0.10);
}

.cart-item-image {
    width: 130px;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #eee6da;
}

.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.cart-item-info h3 {
    margin: 0 0 6px;

    font-family: "Cormorant Garamond", serif;
    font-size: 24px;

    color: #3f2d20;
}

.cart-item-info p {
    margin: 0 0 8px;

    font-size: 12px;

    color: #7d7064;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;

    color: #3f2d20;
}

.cart-quantity {
    display: flex;
    align-items: center;

    border: 1px solid #c6bcad;
}

.cart-quantity button {
    width: 34px;
    height: 34px;

    border: none;
    background: transparent;

    cursor: pointer;
}

.cart-quantity span {
    width: 34px;

    text-align: center;

    font-size: 13px;
}

.cart-item-total {
    font-weight: 600;

    color: #3f2d20;
}

.remove-item {
    border: none;
    background: transparent;

    font-size: 11px;
    text-decoration: underline;

    color: #8a6957;

    cursor: pointer;
}

.cart-summary {
    height: fit-content;

    padding: 32px;

    background: #3f4a2c;

    color: #fffaf0;
}

.cart-summary h2 {
    margin: 0 0 30px;

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    font-size: 13px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.summary-total {
    margin-top: 10px;

    font-size: 18px;
    font-weight: 600;
}

.checkout-button {
    width: 100%;

    margin-top: 25px;
    padding: 15px;

    border: none;

    background: #c7a65b;

    color: #2f271f;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    cursor: pointer;

    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.empty-cart {
    padding: 60px;

    text-align: center;

    background: #fffdf8;
}

.empty-cart h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;

    color: #3f2d20;
}

.empty-cart p {
    color: #74695d;
}

.empty-cart a {
    display: inline-block;

    margin-top: 15px;

    color: #5d6838;
}


.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cart-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 20px;
    height: 20px;

    padding: 0 5px;

    border-radius: 50%;

    background: #5d6838;
    color: #fffdf8;

    font-size: 10px;
    font-weight: 600;
}

/* ==============================
   CHECKOUT
============================== */

.checkout-page {
    min-height: 80vh;
    padding: 90px 8% 120px;
    background: #f8f3e9;
}

.checkout-heading {
    margin-bottom: 50px;
}

.checkout-heading h1 {
    margin: 10px 0 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 500;

    color: #3f2d20;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
}

.checkout-form {
    padding: 38px;
    background: #fffdf8;
}

.checkout-form h2,
.checkout-summary h2 {
    margin: 0 0 30px;

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;

    color: #3f2d20;
}

.checkout-form label {
    display: block;
    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 500;

    color: #4a382a;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    box-sizing: border-box;

    margin-top: 8px;
    padding: 13px 14px;

    border: 1px solid #d8cfc0;

    background: #fffdf8;

    font-family: "Inter", sans-serif;

    outline: none;
}

.payment-method {
    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid #ddd3c5;
}

.payment-method h3 {
    margin-bottom: 15px;

    font-family: "Cormorant Garamond", serif;
    font-size: 24px;

    color: #3f2d20;
}

.payment-option {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.payment-option input {
    width: auto;
    margin: 0;
}

.place-order-button {
    width: 100%;

    margin-top: 25px;
    padding: 15px;

    border: none;

    background: #596337;
    color: #fffaf1;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    cursor: pointer;
}

.checkout-summary {
    height: fit-content;

    padding: 32px;

    background: #3f4a2c;
    color: #fffaf0;
}

.checkout-summary h2 {
    color: #fffaf0;
}

.checkout-item {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-item h3 {
    margin: 0 0 5px;

    font-size: 13px;
    font-weight: 500;
}

.checkout-item p {
    margin: 0;

    font-size: 11px;

    color: rgba(255, 255, 255, 0.6);
}

.product-image {
    display: block;
    text-decoration: none;
}

/* ==============================
   ADMIN
============================== */

.admin-page {
    min-height: 100vh;
    padding: 80px 8% 120px;
    background: #f8f3e9;
}

.admin-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.admin-heading h1 {
    margin: 10px 0 12px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 500;

    color: #3f2d20;
}

.admin-heading p {
    color: #74695d;
}

.admin-product-form {
    max-width: 850px;

    padding: 40px;

    margin-bottom: 70px;

    background: #fffdf8;
}

.admin-product-form h2,
.admin-products-list h2 {
    margin-top: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;

    color: #3f2d20;
}

.admin-product-form label {
    display: block;

    margin-bottom: 20px;

    font-size: 12px;

    color: #4a382a;
}

.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea {
    width: 100%;

    box-sizing: border-box;

    margin-top: 8px;
    padding: 13px;

    border: 1px solid #d8cfc0;

    background: #fffdf8;
}

.admin-checkbox {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.admin-checkbox input {
    width: auto;
    margin: 0;
}

.admin-save-button {
    padding: 14px 28px;

    border: none;

    background: #596337;
    color: #fffaf1;

    cursor: pointer;
}

.admin-list-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 25px;
}

#adminProductsGrid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.admin-product-card {
    display: grid;
    grid-template-columns: 110px 1fr auto;

    gap: 25px;
    align-items: center;

    padding: 18px;

    background: #fffdf8;

    border: 1px solid rgba(87, 67, 43, 0.10);
}

.admin-product-card img {
    width: 110px;
    height: 110px;

    object-fit: cover;
}

.admin-product-details h3 {
    margin: 0 0 8px;

    font-family: "Cormorant Garamond", serif;
    font-size: 24px;

    color: #3f2d20;
}

.admin-product-details p {
    margin: 4px 0;

    font-size: 12px;

    color: #74695d;
}

.admin-delete-button {
    padding: 10px 16px;

    border: 1px solid #9b6b5c;

    background: transparent;

    color: #8b4e3d;

    cursor: pointer;
}

/* ==============================
   PRODUCT VARIANTS
============================== */

.product-variant-selector {
    margin: 28px 0;
}

.variant-label {
    display: block;

    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #6f6256;
}

#variantOptions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-button {
    min-width: 70px;

    padding: 11px 16px;

    border: 1px solid #b9ae9e;

    background: transparent;

    color: #3f2d20;

    font-family: "Inter", sans-serif;
    font-size: 12px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.variant-button:hover {
    border-color: #596337;
}

.variant-button.active {
    background: #596337;

    border-color: #596337;

    color: #fffaf1;
}

/* ==============================
   PRODUCT SIZE & PRICE VARIANTS
============================== */

.variants-section {
    margin-top: 16px;
    margin-bottom: 24px;
}

.variants-section > label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    color: #4d392b;
}

.variant-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.variant-row input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    box-sizing: border-box;

    border: 1px solid #d4c7b5;
    background: #fffdf9;

    font-family: inherit;
    font-size: 13px;

    outline: none;
}

.variant-row input:focus {
    border-color: #657044;
}

.remove-variant-button {
    height: 44px;
    padding: 0 16px;

    border: 1px solid #b9a99a;
    background: transparent;

    color: #6b4033;

    font-family: inherit;
    font-size: 12px;

    cursor: pointer;

    transition: 0.2s ease;
}

.remove-variant-button:hover {
    background: #6b4033;
    border-color: #6b4033;
    color: #fff;
}

.add-variant-button {
    margin-top: 4px;
    padding: 11px 18px;

    border: 1px solid #596337;
    background: transparent;

    color: #596337;

    font-family: inherit;
    font-size: 12px;
    font-weight: 500;

    cursor: pointer;

    transition: 0.2s ease;
}

.add-variant-button:hover {
    background: #596337;
    color: #fffdf8;
}


.admin-product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-edit-button,
.admin-delete-button {
    padding: 12px 22px;
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.admin-edit-button {
    background: #596337;
    color: #fffdf8;
    border: 1px solid #596337;
}

.admin-edit-button:hover {
    background: #414a27;
    border-color: #414a27;
}

.admin-delete-button {
    background: transparent;
    color: #9a4d35;
    border: 1px solid #b8735d;
}

.admin-delete-button:hover {
    background: #9a4d35;
    color: #fffdf8;
}



/* ========================================
   ADMIN ORDERS
======================================== */

.admin-orders-section {
    margin-top: 70px;
    padding-bottom: 80px;
}

.admin-orders-section .admin-list-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.admin-orders-section .admin-list-heading h2 {
    margin: 8px 0 0;
    font-size: 36px;
    color: #33261d;
}

#adminOrderCount {
    font-size: 17px;
    color: #6c5b4d;
}


/* ORDER CARD */

.admin-order-card {
    background: #fffdf9;
    border: 1px solid #e5ddd1;
    padding: 30px;
    margin-bottom: 25px;
}


/* ORDER HEADER */

.admin-order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-bottom: 22px;
    margin-bottom: 24px;

    border-bottom: 1px solid #e8e0d5;
}

.admin-order-header h3 {
    margin: 5px 0;
    font-size: 25px;
    color: #33261d;
}

.admin-order-header p {
    margin: 0;
    color: #847467;
    font-size: 14px;
}

.admin-order-total {
    font-size: 27px;
    color: #56623b;
}


/* CUSTOMER DETAILS */

.admin-order-customer {
    margin-bottom: 25px;
}

.admin-order-customer h4,
.admin-order-items h4 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #33261d;
}

.admin-order-customer p {
    margin: 4px 0;
    color: #67594e;
    line-height: 1.5;
}


/* ITEMS */

.admin-order-items {
    padding: 20px 0;
    margin-bottom: 20px;

    border-top: 1px solid #eee7dd;
    border-bottom: 1px solid #eee7dd;
}

.admin-order-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 30px;

    align-items: center;

    padding: 8px 0;

    color: #55483e;
}

.admin-order-item strong {
    color: #33261d;
}


/* PAYMENT */

.admin-order-payment {
    display: flex;
    justify-content: space-between;

    padding-bottom: 22px;

    color: #67594e;
}

.admin-order-payment strong {
    color: #33261d;
}


/* STATUS */

.admin-order-status {
    background: #f6f2e9;

    padding: 20px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 20px;
}

.admin-order-status label {
    display: flex;
    flex-direction: column;

    gap: 8px;

    font-size: 13px;
    color: #6b5c50;

    flex: 1;
}

.admin-status-select {
    width: 100%;
    max-width: 350px;

    padding: 12px 14px;

    border: 1px solid #cfc3b3;
    background: #fffdf9;

    font-family: inherit;
    font-size: 15px;

    color: #33261d;
}


/* UPDATE BUTTON */

.admin-update-status-button {
    border: none;

    background: #56623b;
    color: white;

    padding: 13px 22px;

    font-family: inherit;
    font-size: 14px;

    cursor: pointer;

    transition: 0.2s ease;
}

.admin-update-status-button:hover {
    background: #414b2d;
}


/* MOBILE */

@media (max-width: 700px) {

    .admin-order-card {
        padding: 20px;
    }

    .admin-order-header {
        flex-direction: column;
        gap: 15px;
    }

    .admin-order-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .admin-order-status {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-status-select {
        max-width: none;
    }

    .admin-update-status-button {
        width: 100%;
    }
}

/* ==============================
   TRACK ORDER
============================== */

.track-order-page {
    min-height: 100vh;
    padding: 80px 8% 120px;
    background: #f8f3e9;
}

.track-order-search {
    max-width: 700px;
    margin: 0 auto 50px;
}

.track-order-search h1 {
    margin: 10px 0 14px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;

    color: #3f2d20;
}

.track-order-search p {
    color: #74695d;
    line-height: 1.6;
}

#trackOrderForm {
    margin-top: 30px;

    display: grid;
    gap: 18px;
}

#trackOrderForm label {
    display: flex;
    flex-direction: column;

    gap: 8px;

    font-size: 12px;
    color: #4a382a;
}

#trackOrderForm input {
    padding: 14px;

    border: 1px solid #d8cfc0;

    background: #fffdf8;

    font-size: 14px;
}

#trackOrderForm button {
    width: fit-content;

    padding: 14px 26px;

    border: none;

    background: #596337;
    color: #fffdf8;

    cursor: pointer;
}


/* RESULT */

.tracking-result {
    max-width: 900px;
    margin: 0 auto;
}

.tracking-card {
    padding: 35px;

    background: #fffdf8;

    border: 1px solid #e4dbcf;
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 22px;

    border-bottom: 1px solid #e7ded2;
}

.tracking-header h2 {
    margin: 6px 0 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;

    color: #3f2d20;
}

.tracking-status {
    color: #596337;
}


/* TIMELINE */

.tracking-timeline {
    margin: 35px 0;

    display: grid;
    gap: 16px;
}

.tracking-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 15px;
    align-items: center;

    color: #9a9188;
}

.tracking-dot {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    border: 1px solid #cfc5b7;

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

.tracking-step.completed,
.tracking-step.current {
    color: #3f2d20;
}

.tracking-step.completed .tracking-dot,
.tracking-step.current .tracking-dot {
    background: #596337;
    border-color: #596337;
    color: white;
}


/* ITEMS */

.tracking-items {
    padding-top: 25px;

    border-top: 1px solid #e7ded2;
}

.tracking-item {
    display: flex;
    justify-content: space-between;

    padding: 14px 0;

    border-bottom: 1px solid #eee6dc;
}

.tracking-item p {
    margin: 4px 0 0;

    color: #796d61;
}


/* SUMMARY */

.tracking-summary {
    margin-top: 25px;

    display: grid;
    gap: 12px;
}

.tracking-summary div {
    display: flex;
    justify-content: space-between;
}


/* ERROR */

.tracking-error {
    padding: 18px;

    background: #fff3ef;

    border: 1px solid #d8b8aa;

    color: #8a4a36;
}

/* ==============================
   MY ORDERS
============================== */

.my-orders-page {
    min-height: 100vh;
    padding: 80px 8% 120px;
    background: #f8f3e9;
}

.my-orders-search {
    max-width: 700px;
    margin: 0 auto 50px;
}

.my-orders-search h1 {
    margin: 10px 0 14px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;

    color: #3f2d20;
}

.my-orders-search p {
    color: #74695d;
}

#myOrdersForm {
    display: flex;
    gap: 12px;

    margin-top: 25px;
}

#myOrdersForm input {
    flex: 1;

    padding: 14px;

    border: 1px solid #d8cfc0;

    background: #fffdf8;
}

#myOrdersForm button {
    padding: 14px 24px;

    border: none;

    background: #596337;
    color: white;

    cursor: pointer;
}

.orders-result {
    max-width: 900px;
    margin: 0 auto;
}

.my-order-card {
    padding: 28px;

    margin-bottom: 22px;

    background: #fffdf8;

    border: 1px solid #e4dbcf;
}

.my-order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-bottom: 20px;

    border-bottom: 1px solid #e7ded2;
}

.my-order-header h2 {
    margin: 6px 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 29px;

    color: #3f2d20;
}

.my-order-header p {
    margin: 0;

    color: #817366;
}

.my-order-status {
    padding: 8px 12px;

    background: #eef0e7;

    color: #596337;

    font-size: 12px;
}

.my-order-items {
    padding: 20px 0;
}

.my-order-item {
    display: flex;
    justify-content: space-between;

    padding: 8px 0;

    color: #5f5146;
}

.my-order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 18px;

    border-top: 1px solid #e7ded2;
}

.track-order-link {
    padding-bottom: 3px;

    border-bottom: 1px solid #596337;

    color: #596337;

    text-decoration: none;
}

.empty-orders {
    padding: 45px;

    text-align: center;

    background: #fffdf8;
}


/* ==============================
   AUTH PAGES
============================== */

.auth-page {
    min-height: 100vh;

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

    padding: 60px 20px;

    background: #f8f3e9;
}

.auth-card {
    width: 100%;
    max-width: 520px;

    padding: 40px;

    background: #fffdf8;

    border: 1px solid #e4dbcf;
}

.auth-card h1 {
    margin: 10px 0 28px;

    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 500;

    color: #3f2d20;
}

.auth-card form {
    display: grid;
    gap: 18px;
}

.auth-card label {
    display: grid;
    gap: 8px;

    font-size: 12px;

    color: #4a382a;
}

.auth-card input,
.auth-card textarea {
    padding: 13px;

    border: 1px solid #d8cfc0;

    background: #fffdf8;

    font-family: inherit;
}

.auth-card button {
    margin-top: 8px;

    padding: 14px;

    border: none;

    background: #596337;
    color: white;

    cursor: pointer;
}

.auth-switch {
    margin-top: 22px;

    font-size: 13px;

    color: #74695d;
}

.auth-switch a {
    color: #596337;
}



/* ==============================
   ACCOUNT
============================== */

.account-page {
    min-height: 100vh;
    padding: 80px 8% 120px;
    background: #f8f3e9;
}

.account-header {
    margin-bottom: 45px;
}

.account-header h1 {
    margin: 10px 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;

    color: #3f2d20;
}

.account-layout {
    display: grid;
    grid-template-columns: 240px 1fr;

    gap: 40px;
}

.account-menu {
    display: flex;
    flex-direction: column;

    height: fit-content;

    background: #fffdf8;

    border: 1px solid #e4dbcf;
}

.account-menu-button {
    padding: 16px 20px;

    border: none;
    border-bottom: 1px solid #eee6dc;

    background: transparent;

    text-align: left;

    cursor: pointer;

    color: #5d5146;
}

.account-menu-button.active {
    background: #596337;
    color: white;
}

.logout-button {
    color: #934f3d;
}

.account-content {
    padding: 35px;

    background: #fffdf8;

    border: 1px solid #e4dbcf;
}

.account-section {
    display: none;
}

.account-section.active {
    display: block;
}

.account-section h2 {
    margin-top: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 34px;

    color: #3f2d20;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.profile-details div {
    padding: 18px;

    background: #f8f3e9;
}

.profile-details span {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;

    color: #817366;
}

.profile-details strong {
    color: #3f2d20;
}

.account-order-card {
    padding: 22px;

    margin-bottom: 18px;

    border: 1px solid #e4dbcf;
}

.account-order-header,
.account-order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-order-header {
    padding-bottom: 15px;

    border-bottom: 1px solid #eee6dc;
}

.account-order-header h3 {
    margin: 5px 0 0;

    color: #3f2d20;
}

.account-order-items {
    padding: 15px 0;
}

.account-order-item {
    display: flex;
    justify-content: space-between;

    padding: 7px 0;

    color: #67594e;
}

.account-order-footer {
    padding-top: 15px;

    border-top: 1px solid #eee6dc;
}

.account-track-button {
    border: none;

    background: #596337;
    color: white;

    padding: 10px 16px;

    cursor: pointer;
}

#accountTrackingForm {
    display: flex;
    gap: 12px;

    margin-bottom: 25px;
}

#accountTrackingForm label {
    flex: 1;

    display: grid;
    gap: 8px;
}

#accountTrackingForm input {
    padding: 12px;

    border: 1px solid #d8cfc0;
}

#accountTrackingForm button {
    align-self: end;

    padding: 12px 20px;

    border: none;

    background: #596337;
    color: white;

    cursor: pointer;
}

.account-tracking-card {
    margin-top: 20px;
}

@media (max-width: 800px) {

    .account-layout {
        grid-template-columns: 1fr;
    }

    .account-menu {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .profile-details {
        grid-template-columns: 1fr;
    }

    #accountTrackingForm {
        flex-direction: column;
    }

}



/* ==============================
   EDIT PROFILE
============================== */

.profile-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 25px;
}

.profile-heading h2 {
    margin: 0;
}

.edit-profile-button {
    padding: 10px 18px;

    border: 1px solid #596337;

    background: transparent;
    color: #596337;

    cursor: pointer;
}

.edit-profile-button:hover {
    background: #596337;
    color: white;
}


.edit-profile-form {
    display: none;

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

    gap: 20px;
}

.edit-profile-form.active {
    display: grid;
}

.edit-profile-form label {
    display: grid;
    gap: 8px;

    color: #5d5146;
}

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

    padding: 12px;

    border: 1px solid #d8cfc0;

    background: #fffdf8;

    font: inherit;
}

.edit-profile-form input:disabled {
    background: #eeeae2;
    color: #857a70;
}

.edit-profile-actions {
    grid-column: 1 / -1;

    display: flex;
    gap: 12px;

    margin-top: 10px;
}

.save-profile-button,
.cancel-profile-button {
    padding: 12px 20px;

    cursor: pointer;
}

.save-profile-button {
    border: none;

    background: #596337;
    color: white;
}

.cancel-profile-button {
    border: 1px solid #d8cfc0;

    background: transparent;

    color: #5d5146;
}


@media (max-width: 700px) {

    .edit-profile-form {
        grid-template-columns: 1fr;
    }

}


/* ==============================
   ADMIN DASHBOARD
============================== */

.admin-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    margin: 30px 0 45px;
}

.admin-nav a {
    padding: 11px 18px;

    border: 1px solid #d8cfc0;

    background: #fffdf8;
    color: #4f4035;

    text-decoration: none;

    transition: 0.2s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: #596337;
    border-color: #596337;
    color: white;
}


.admin-dashboard-grid {
    display: grid;

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

    gap: 24px;
}

.admin-dashboard-card {
    display: block;

    min-height: 220px;

    padding: 30px;

    background: #fffdf8;

    border: 1px solid #e4dbcf;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.admin-dashboard-card:hover {
    transform: translateY(-3px);

    border-color: #596337;
}

.admin-dashboard-card h2 {
    margin: 12px 0;

    font-size: 28px;

    color: #3f2d20;
}

.admin-dashboard-card p {
    margin: 0;

    line-height: 1.6;

    color: #74695d;
}


@media (max-width: 850px) {

    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

}

.current-product-image {
    margin-bottom: 20px;
}

.current-product-image p {
    margin-bottom: 10px;
    font-size: 12px;
    color: #74695d;
}

.current-product-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;

    padding: 8px;

    background: #fffdf8;

    border: 1px solid #e4dbcf;
}

.admin-order-payment {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;

    margin: 20px 0;
    padding: 18px;

    background: #faf7f0;
    border: 1px solid #e4dbcf;
}

.admin-order-payment div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-order-payment span {
    font-size: 12px;
    color: #74695d;
}

.admin-order-payment strong {
    color: #3f2d20;
}

.payment-status.payment-paid {
    color: #596337;
}

.payment-status.payment-pending {
    color: #9a6b2f;
}

@media (max-width: 600px) {

    .admin-order-payment {
        grid-template-columns: 1fr;
    }

}



.admin-stats-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 40px;
}

.admin-stat-card {
    padding: 24px;

    background: #fffdf8;

    border: 1px solid #e4dbcf;
}

.admin-stat-card span {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;

    color: #74695d;
}

.admin-stat-card strong {
    font-size: 30px;

    color: #3f2d20;
}

.admin-recent-orders {
    margin-top: 50px;
}

.dashboard-order-row {
    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        0.8fr
        auto;

    gap: 20px;

    align-items: center;

    padding: 16px 0;

    border-bottom:
        1px solid #e8e0d5;
}

.dashboard-order-row div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.dashboard-order-row span {
    color: #74695d;

    font-size: 13px;
}

@media (max-width: 850px) {

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

    .dashboard-order-row {
        grid-template-columns:
            1fr;
    }

}

@media (max-width: 550px) {

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

}