/* =========================================================
   HANUMA AYUR CARE
   MAIN WEBSITE STYLESHEET
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {

    --green-dark: #315b35;

    --green: #4f7d42;

    --green-light: #789b55;

    --cream: #f7f3e7;

    --cream-dark: #eee7d3;

    --gold: #b08a45;

    --brown: #654b32;

    --text: #2e332c;

    --text-light: #697064;

    --white: #ffffff;

    --border: #ddd8c8;

    --shadow:
        0 10px 35px rgba(42, 55, 35, 0.08);

    --shadow-hover:
        0 18px 45px rgba(42, 55, 35, 0.14);

    --radius: 16px;

    --container: 1200px;

}



/* =========================================================
   2. RESET
   ========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
textarea,
select {

    font: inherit;

}


button {

    cursor: pointer;

}


ul {

    padding-left: 20px;

}



/* =========================================================
   3. COMMON CONTAINER
   ========================================================= */

.section-container,
.nav-container,
.footer-container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-left: auto;

    margin-right: auto;

}



/* =========================================================
   4. HEADER
   ========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.96);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.06);

    backdrop-filter: blur(12px);

}


.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 25px;

}


.site-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.site-logo img {

    width: 52px;

    height: 52px;

    object-fit: contain;

    border-radius: 50%;

}


.site-logo span {

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 27px;

    font-weight: 700;

    color: var(--green-dark);

    white-space: nowrap;

}


.main-navigation {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    flex: 1;

}


.main-navigation a {

    font-size: 13px;

    font-weight: 600;

    color: #4b5147;

    padding: 8px 0;

    position: relative;

    white-space: nowrap;

}


.main-navigation a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--green);

    transition: width 0.25s ease;

}


.main-navigation a:hover,
.main-navigation a.active {

    color: var(--green-dark);

}


.main-navigation a:hover::after,
.main-navigation a.active::after {

    width: 100%;

}


.header-cart {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: var(--green-dark);

    color: white;

    padding: 10px 15px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    flex-shrink: 0;

}


.header-cart:hover {

    background: var(--green);

}


.cart-count {

    min-width: 22px;

    height: 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: white;

    color: var(--green-dark);

    border-radius: 50%;

    font-size: 11px;

    font-weight: 800;

}



/* =========================================================
   5. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4 {

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    color: var(--green-dark);

    line-height: 1.15;

}


h1 {

    font-size: clamp(
        45px,
        6vw,
        78px
    );

}


h2 {

    font-size: clamp(
        34px,
        4vw,
        52px
    );

}


h3 {

    font-size: 27px;

}


p {

    color: var(--text-light);

}


.section-label {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;

}


.section-heading {

    max-width: 760px;

    margin-bottom: 45px;

}


.section-heading h2 {

    margin-bottom: 16px;

}


.section-heading > p:last-child {

    max-width: 700px;

}



/* =========================================================
   6. HERO / INNER PAGE HERO
   ========================================================= */

.inner-page-hero {

    position: relative;

    overflow: hidden;

    padding:
        100px 0
        90px;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(120, 155, 85, 0.18),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #f7f3e7,
            #eef3e5
        );

}


.inner-page-hero::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    right: -120px;

    bottom: -160px;

    border:
        1px solid rgba(79, 125, 66, 0.15);

}


.inner-page-hero .section-container {

    position: relative;

    z-index: 2;

}


.inner-page-hero h1 {

    max-width: 900px;

    margin-bottom: 20px;

}


.inner-page-hero p:not(.section-label) {

    max-width: 720px;

    font-size: 18px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;

}



/* =========================================================
   7. BUTTONS
   ========================================================= */

.primary-button,
.secondary-button,
.light-button,
.service-button,
.text-button,
.certificate-button,
.view-order-button,
.danger-button {

    border: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 8px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;

}


.primary-button {

    background: var(--green-dark);

    color: white;

    padding: 14px 22px;

}


.primary-button:hover {

    background: var(--green);

    transform: translateY(-2px);

    box-shadow: var(--shadow);

}


.secondary-button {

    background: white;

    color: var(--green-dark);

    border:
        1px solid var(--green-dark);

    padding: 13px 21px;

}


.secondary-button:hover {

    background: var(--green-dark);

    color: white;

    transform: translateY(-2px);

}


.light-button {

    background: white;

    color: var(--green-dark);

    padding: 14px 23px;

}


.light-button:hover {

    transform: translateY(-2px);

}


.service-button {

    margin-top: 15px;

    color: var(--green-dark);

    background: transparent;

    padding: 0;

    font-size: 14px;

}


.service-button:hover,
.text-button:hover {

    color: var(--green);

}


.text-button {

    color: var(--green-dark);

    background: transparent;

    padding: 0;

    font-size: 14px;

}


.certificate-button {

    width: 100%;

    margin-top: 20px;

    padding: 12px;

    background: var(--cream);

    color: var(--green-dark);

}


.certificate-button:hover {

    background: var(--green-dark);

    color: white;

}


.danger-button {

    background: #8d3e35;

    color: white;

    padding: 13px 20px;

}


.danger-button:hover {

    background: #6e2f28;

    transform: translateY(-2px);

}



/* =========================================================
   8. GENERAL SECTIONS
   ========================================================= */

.home-section {

    padding:
        90px 0;

}


.capabilities-section {

    background: var(--cream);

}


.two-column-layout {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 60px;

    align-items: center;

}


.home-section p + p {

    margin-top: 15px;

}



/* =========================================================
   9. NOTICE BOXES
   ========================================================= */

.about-note,
.medical-notice,
.compliance-notice {

    display: flex;

    gap: 18px;

    padding: 25px;

    margin-top: 25px;

    background: white;

    border:
        1px solid var(--border);

    border-left:
        4px solid var(--green);

    border-radius: 12px;

    box-shadow: var(--shadow);

}


.about-note i,
.medical-notice-icon,
.compliance-notice-icon {

    color: var(--green);

    font-size: 24px;

    flex-shrink: 0;

}


.medical-notice h3,
.compliance-notice h3 {

    margin-bottom: 8px;

}



/* =========================================================
   10. FEATURE GRID
   ========================================================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;

}


.feature-card {

    padding: 30px 24px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.feature-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-hover);

}


.feature-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    background: var(--cream);

    border-radius: 14px;

    font-size: 28px;

}


.feature-card h3 {

    margin-bottom: 10px;

}



/* =========================================================
   11. RESEARCH PAGE
   ========================================================= */

.research-highlight-card,
.wellness-highlight-card {

    padding: 40px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 22px;

    box-shadow: var(--shadow);

}


.research-icon,
.wellness-icon {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 18px;

    font-size: 30px;

    margin-bottom: 20px;

}


.research-mini-list {

    display: grid;

    gap: 13px;

    margin-top: 25px;

}


.research-mini-list div {

    display: flex;

    align-items: center;

    gap: 10px;

}


.research-mini-list i {

    color: var(--green);

}


.research-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

}


.research-card {

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    padding: 30px;

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.research-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);

}


.research-card-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 14px;

    font-size: 25px;

    margin-bottom: 18px;

}


.research-card h3 {

    margin-bottom: 10px;

}


.research-card ul {

    margin-top: 18px;

}


.research-card li {

    margin-bottom: 7px;

    color: var(--text-light);

}


.research-facility-card {

    min-height: 360px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        linear-gradient(
            135deg,
            #e9eee1,
            #f7f3e7
        );

    border-radius: 22px;

    border:
        1px solid var(--border);

}


.facility-placeholder {

    text-align: center;

    max-width: 400px;

    padding: 30px;

}


.facility-placeholder > i {

    font-size: 65px;

    color: var(--green);

    margin-bottom: 20px;

}


.feature-list {

    display: grid;

    gap: 20px;

    margin-top: 28px;

}


.feature-list-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

}


.feature-list-item > i {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 10px;

    flex-shrink: 0;

}


.feature-list-item strong {

    display: block;

    margin-bottom: 3px;

    color: var(--green-dark);

}


.feature-list-item p {

    font-size: 14px;

}


.ip-card {

    padding: 28px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow: var(--shadow);

}


.ip-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 0;

    border-bottom:
        1px solid var(--border);

}


.ip-item:last-child {

    border-bottom: none;

}


.ip-item > i {

    color: var(--green);

    font-size: 24px;

    width: 35px;

}


.ip-item strong,
.ip-item span {

    display: block;

}


.ip-item span {

    font-size: 13px;

    color: var(--text-light);

}


.research-enquiry {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 45px;

    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            #4f7544
        );

    border-radius: 22px;

}


.research-enquiry h2,
.research-enquiry p {

    color: white;

}


.research-enquiry h2 {

    margin-bottom: 12px;

}


.research-enquiry .section-label {

    color: #d8c68d;

}



/* =========================================================
   12. KNOWLEDGE PAGE
   ========================================================= */

.knowledge-category-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

}


.knowledge-category-card {

    padding: 30px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease;

}


.knowledge-category-card:hover {

    transform: translateY(-5px);

}


.knowledge-category-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 15px;

    font-size: 26px;

    margin-bottom: 18px;

}


.knowledge-category-card h3 {

    margin-bottom: 10px;

}


.article-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;

}


.knowledge-article-card {

    padding: 28px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow);

}


.article-icon {

    font-size: 36px;

    margin-bottom: 15px;

}


.article-category {

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.knowledge-article-card h3 {

    margin:
        8px 0 10px;

}


.herb-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;

}


.herb-card {

    overflow: hidden;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow);

}


.herb-image-placeholder {

    height: 170px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #e7eddf,
            #f5f0dd
        );

    font-size: 65px;

}


.herb-content {

    padding: 24px;

}


.herb-content h3 {

    margin:
        7px 0 10px;

}


.formulation-grid {

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 18px;

}


.formulation-card {

    text-align: center;

    padding: 25px 18px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow);

}


.formulation-icon {

    display: block;

    font-size: 35px;

    margin-bottom: 10px;

}


.formulation-card h3 {

    font-size: 22px;

    margin-bottom: 8px;

}


.faq-list {

    max-width: 900px;

    margin: auto;

}


.faq-item {

    border-bottom:
        1px solid var(--border);

    padding: 18px 0;

}


.faq-item summary {

    cursor: pointer;

    list-style: none;

    color: var(--green-dark);

    font-weight: 700;

    font-size: 18px;

}


.faq-item summary::-webkit-details-marker {

    display: none;

}


.faq-item summary::after {

    content: "+";

    float: right;

    font-size: 24px;

    color: var(--green);

}


.faq-item[open]
summary::after {

    content: "−";

}


.faq-item p {

    padding:
        15px 30px 5px 0;

}


.knowledge-search-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 40px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 22px;

    box-shadow: var(--shadow);

}


.knowledge-search-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.knowledge-disclaimer {

    max-width: 900px;

    margin: auto;

    padding: 28px;

    background: #fff9e9;

    border:
        1px solid #ead9a8;

    border-radius: 14px;

}


.knowledge-disclaimer h3 {

    margin-bottom: 10px;

}



/* =========================================================
   13. CERTIFICATIONS
   ========================================================= */

.certification-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

}


.certification-card {

    padding: 30px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.certification-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);

}


.certification-icon {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 15px;

    font-size: 26px;

    margin-bottom: 18px;

}


.certificate-status {

    display: inline-block;

    padding: 5px 9px;

    border-radius: 20px;

    background: #f5ead1;

    color: #80622e;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.certification-card h3 {

    margin:
        14px 0 10px;

}


.certificate-details {

    margin-top: 20px;

    display: grid;

    gap: 12px;

}


.certificate-details div {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding-bottom: 10px;

    border-bottom:
        1px solid var(--border);

}


.certificate-details span {

    color: var(--text-light);

    font-size: 12px;

}


.certificate-details strong {

    text-align: right;

    font-size: 12px;

    color: var(--green-dark);

}


.quality-management-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

}


.quality-management-card {

    padding: 28px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow);

}


.quality-management-icon {

    font-size: 34px;

    margin-bottom: 12px;

}


.document-library-card {

    padding: 15px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow: var(--shadow);

}


.document-library-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    border-bottom:
        1px solid var(--border);

}


.document-library-item:last-child {

    border-bottom: none;

}


.document-library-item > i:first-child {

    color: #a54d42;

    font-size: 24px;

}


.document-library-item > div {

    flex: 1;

}


.document-library-item strong,
.document-library-item span {

    display: block;

}


.document-library-item span {

    font-size: 12px;

    color: var(--text-light);

}


.document-library-item > i:last-child {

    color: #aaa;

}


.transparency-box {

    display: flex;

    align-items: flex-start;

    gap: 25px;

    padding: 40px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);

}


.transparency-icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 15px;

    font-size: 28px;

    flex-shrink: 0;

}


.contact-compliance-card {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 40px;

    background: var(--cream);

    border-radius: 20px;

}



/* =========================================================
   14. CONTACT PAGE
   ========================================================= */

.contact-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;

}


.contact-info-card {

    padding: 28px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow);

}


.contact-info-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 14px;

    font-size: 23px;

    margin-bottom: 15px;

}


.contact-info-card h3 {

    margin-bottom: 8px;

}


.contact-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(330px, 0.65fr);

    gap: 50px;

    align-items: start;

}


.contact-form-wrapper {

    background: white;

    padding: 38px;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);

}


.contact-form {

    display: grid;

    gap: 18px;

}


.form-group {

    display: grid;

    gap: 7px;

}


.form-group label {

    font-size: 13px;

    font-weight: 700;

    color: var(--green-dark);

}


.form-group input,
.form-group textarea,
.form-group select,
.orders-search-input input,
.orders-search-box select,
.modal-status-select {

    width: 100%;

    border:
        1px solid #d7d3c5;

    border-radius: 9px;

    background: white;

    color: var(--text);

    padding: 13px 14px;

    outline: none;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.orders-search-input input:focus,
.orders-search-box select:focus,
.modal-status-select:focus {

    border-color: var(--green);

    box-shadow:
        0 0 0 3px
        rgba(79, 125, 66, 0.1);

}


.form-group textarea {

    resize: vertical;

}


.form-note {

    font-size: 12px;

}


.form-success {

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    padding: 15px;

    background: #edf6e8;

    color: var(--green-dark);

    border-radius: 10px;

}


.form-success i {

    color: var(--green);

}


.contact-submit-button {

    width: fit-content;

}


.contact-side {

    display: grid;

    gap: 20px;

}


.contact-side-card,
.quick-contact-card {

    padding: 32px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);

}


.contact-side-card h2 {

    margin-bottom: 12px;

}


.contact-detail-row {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 18px 0;

    border-bottom:
        1px solid var(--border);

}


.contact-detail-row:last-child {

    border-bottom: none;

}


.contact-detail-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 10px;

    flex-shrink: 0;

}


.contact-detail-row span,
.contact-detail-row strong,
.contact-detail-row a {

    display: block;

}


.contact-detail-row span {

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: var(--text-light);

}


.contact-detail-row a {

    color: var(--green-dark);

    font-weight: 700;

}


.quick-contact-card h3 {

    margin-bottom: 7px;

}


.whatsapp-contact-button,
.call-contact-button {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 14px;

    padding: 13px;

    border-radius: 9px;

    font-weight: 700;

}


.whatsapp-contact-button {

    background: #e7f4e5;

    color: #28733c;

}


.call-contact-button {

    background: var(--cream);

    color: var(--green-dark);

}


.business-enquiry-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;

}


.business-enquiry-card {

    padding: 28px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow);

}


.business-enquiry-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 13px;

    font-size: 23px;

    margin-bottom: 15px;

}


.location-section {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

    align-items: stretch;

}


.location-content,
.map-placeholder {

    padding: 40px;

    border-radius: 20px;

}


.location-content {

    background: var(--cream);

}


.map-placeholder {

    min-height: 330px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #e6ede1,
            #f5f1df
        );

    border:
        1px solid var(--border);

}


.map-placeholder > i {

    font-size: 55px;

    color: var(--green);

    margin-bottom: 15px;

}


.map-placeholder a {

    margin-top: 12px;

    color: var(--green-dark);

    font-weight: 700;

}


.whatsapp-float {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 900;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 28px;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.18);

}



/* =========================================================
   15. CART PAGE
   ========================================================= */

.cart-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        360px;

    gap: 35px;

    align-items: start;

}


.cart-heading-row {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;

}


.cart-heading-row h2 {

    margin-top: 5px;

}


.continue-shopping {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--green-dark);

    font-weight: 700;

    font-size: 14px;

}


.cart-items {

    display: grid;

    gap: 16px;

}


.cart-product {

    display: grid;

    grid-template-columns:
        120px
        minmax(0, 1fr)
        auto;

    gap: 20px;

    align-items: center;

    padding: 20px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow);

}


.cart-product-image {

    width: 120px;

    height: 120px;

    overflow: hidden;

    border-radius: 12px;

    background: var(--cream);

}


.cart-product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.cart-product-info h3 {

    font-size: 25px;

    margin-bottom: 5px;

}


.cart-product-info > p {

    color: var(--green-dark);

    font-weight: 700;

}


.quantity-controls {

    display: inline-flex;

    align-items: center;

    gap: 0;

    margin-top: 14px;

    border:
        1px solid var(--border);

    border-radius: 8px;

    overflow: hidden;

}


.quantity-controls button {

    width: 35px;

    height: 35px;

    border: none;

    background: var(--cream);

    color: var(--green-dark);

    font-size: 20px;

}


.quantity-controls button:hover {

    background: var(--green);

    color: white;

}


.quantity-controls span {

    width: 40px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

}


.remove-button {

    display: block;

    margin-top: 12px;

    border: none;

    background: transparent;

    color: #a24c43;

    font-size: 13px;

    font-weight: 700;

}


.cart-product-total {

    font-size: 18px;

    font-weight: 800;

    color: var(--green-dark);

    align-self: start;

}


.summary-card {

    padding: 28px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 18px;

    box-shadow: var(--shadow);

}


.summary-card h2 {

    font-size: 32px;

    margin-bottom: 25px;

}


.summary-row,
.summary-total-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 10px 0;

}


.summary-row span {

    color: var(--text-light);

}


.summary-row strong {

    color: var(--green-dark);

    font-size: 14px;

}


.summary-divider {

    height: 1px;

    background: var(--border);

    margin: 12px 0;

}


.summary-total-row span {

    font-weight: 800;

}


.summary-total-row strong {

    color: var(--green-dark);

    font-size: 25px;

}


.checkout-button {

    width: 100%;

    margin-top: 22px;

    padding: 15px;

    border: none;

    border-radius: 9px;

    background: var(--green-dark);

    color: white;

    font-weight: 800;

}


.checkout-button:not(:disabled):hover {

    background: var(--green);

}


.checkout-button:disabled {

    opacity: 0.45;

    cursor: not-allowed;

}


.secure-checkout {

    text-align: center;

    margin-top: 12px;

    font-size: 12px;

}


.cart-trust-card {

    margin-top: 20px;

    padding: 25px;

    background: var(--cream);

    border-radius: 16px;

}


.cart-trust-card h3 {

    font-size: 23px;

    margin-bottom: 15px;

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 9px 0;

}


.trust-item i {

    color: var(--green);

}


.empty-cart,
.empty-orders,
.empty-checkout {

    text-align: center;

    padding: 70px 25px;

    background: white;

    border:
        1px dashed var(--border);

    border-radius: 18px;

}


.empty-cart-icon,
.empty-orders-icon {

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto
        20px;

    background: var(--cream);

    color: var(--green);

    border-radius: 50%;

    font-size: 30px;

}


.empty-cart h2,
.empty-orders h2 {

    margin-bottom: 10px;

}


.empty-cart .button {

    display: inline-flex;

    margin-top: 20px;

    padding: 13px 20px;

    background: var(--green-dark);

    color: white;

    border-radius: 8px;

    font-weight: 700;

}


.cart-whatsapp-box {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 35px;

    background: #edf6e9;

    border-radius: 20px;

}


.cart-whatsapp-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25d366;

    color: white;

    border-radius: 50%;

    font-size: 31px;

    flex-shrink: 0;

}


.cart-whatsapp-box > div:nth-child(2) {

    flex: 1;

}


.cart-whatsapp-box h2 {

    margin-bottom: 8px;

}



/* =========================================================
   16. CHECKOUT
   ========================================================= */

.checkout-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        370px;

    gap: 35px;

    align-items: start;

}


.checkout-form-wrapper {

    padding: 38px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);

}


.checkout-form {

    display: grid;

    gap: 18px;

}


.checkout-two-columns {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


.place-order-button {

    width: 100%;

    margin-top: 8px;

    font-size: 16px;

}


.checkout-items {

    display: grid;

    gap: 15px;

    max-height: 500px;

    overflow-y: auto;

}


.checkout-product {

    display: grid;

    grid-template-columns:
        60px
        minmax(0, 1fr)
        auto;

    gap: 12px;

    align-items: center;

    padding-bottom: 14px;

    border-bottom:
        1px solid var(--border);

}


.checkout-product-image {

    width: 60px;

    height: 60px;

    overflow: hidden;

    border-radius: 9px;

    background: var(--cream);

}


.checkout-product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.checkout-product-info h3 {

    font-family: Arial, sans-serif;

    font-size: 14px;

    margin-bottom: 3px;

}


.checkout-product-info p {

    font-size: 12px;

}


.checkout-product > strong {

    font-size: 13px;

    color: var(--green-dark);

}


.checkout-trust-card {

    margin-top: 20px;

    padding: 24px;

    background: var(--cream);

    border-radius: 16px;

}


.checkout-trust-card .trust-item {

    align-items: flex-start;

    font-size: 13px;

}


.order-success {

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 60px 30px;

    background: #eef7e9;

    border-radius: 18px;

}


.order-success-icon {

    font-size: 65px;

    color: var(--green);

    margin-bottom: 18px;

}


.order-success h2 {

    margin-bottom: 12px;

}


.order-success-buttons {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;

    margin-top: 25px;

}


.empty-checkout {

    padding: 40px 20px;

}


.empty-checkout > i {

    font-size: 40px;

    color: var(--green);

    margin-bottom: 12px;

}



/* =========================================================
   17. ORDERS DASHBOARD
   ========================================================= */

.orders-dashboard-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 30px;

}


.orders-actions {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}


.order-stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

}


.order-stat-card {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 23px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 15px;

    box-shadow: var(--shadow);

}


.order-stat-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 13px;

    font-size: 22px;

}


.order-stat-card span {

    display: block;

    color: var(--text-light);

    font-size: 12px;

}


.order-stat-card strong {

    display: block;

    margin-top: 3px;

    color: var(--green-dark);

    font-size: 24px;

}


.orders-search-box {

    display: grid;

    grid-template-columns:
        1fr 230px;

    gap: 15px;

    margin:
        30px 0 20px;

}


.orders-search-input {

    position: relative;

}


.orders-search-input i {

    position: absolute;

    left: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: #888;

}


.orders-search-input input {

    padding-left: 43px;

}


.orders-container {

    display: grid;

    gap: 16px;

}


.order-card {

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow);

    overflow: hidden;

}


.order-card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    border-bottom:
        1px solid var(--border);

}


.order-label {

    display: block;

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.order-card-header h3 {

    font-family: Arial, sans-serif;

    font-size: 18px;

    margin-top: 4px;

}


.order-status {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 6px 11px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    background: #edf0ea;

    color: var(--green-dark);

}


.order-status.new-order {

    background: #fff1d6;

    color: #8a642a;

}


.order-status.confirmed {

    background: #e6f2ff;

    color: #34658d;

}


.order-status.processing {

    background: #ede8ff;

    color: #624e94;

}


.order-status.shipped {

    background: #e7f2e5;

    color: #3d7140;

}


.order-status.delivered {

    background: #dff4e5;

    color: #287344;

}


.order-status.cancelled {

    background: #f8e3e0;

    color: #95483e;

}


.order-card-body {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;

    padding: 20px 22px;

}


.order-customer {

    display: flex;

    align-items: center;

    gap: 10px;

}


.order-customer-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 9px;

}


.order-customer span,
.order-customer strong {

    display: block;

}


.order-customer span {

    color: var(--text-light);

    font-size: 11px;

}


.order-customer strong {

    color: var(--green-dark);

    font-size: 13px;

}


.order-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 15px 22px;

    background: #faf9f4;

    border-top:
        1px solid var(--border);

}


.order-date {

    color: var(--text-light);

    font-size: 12px;

}


.order-card-actions {

    display: flex;

    gap: 8px;

}


.view-order-button {

    padding: 9px 14px;

    background: var(--green-dark);

    color: white;

    border-radius: 7px;

}


.order-delete-button {

    width: 36px;

    height: 36px;

    border: none;

    background: #f8e8e5;

    color: #99483f;

    border-radius: 7px;

}


.view-order-button:hover {

    background: var(--green);

}


.order-delete-button:hover {

    background: #f2d7d2;

}



/* =========================================================
   18. ORDER MODAL
   ========================================================= */

.order-modal {

    position: fixed;

    inset: 0;

    z-index: 2000;

    align-items: center;

    justify-content: center;

    padding: 20px;

}


.order-modal-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(25, 35, 24, 0.58);

    backdrop-filter: blur(4px);

}


.order-modal-content {

    position: relative;

    z-index: 2;

    width: min(
        900px,
        100%
    );

    max-height: 90vh;

    overflow-y: auto;

    padding: 35px;

    background: white;

    border-radius: 20px;

    box-shadow:
        0 25px 80px
        rgba(0, 0, 0, 0.25);

}


.modal-close-button {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 38px;

    height: 38px;

    border: none;

    background: var(--cream);

    color: var(--green-dark);

    border-radius: 50%;

    font-size: 17px;

}


.modal-order-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 20px;

    border-bottom:
        1px solid var(--border);

}


.modal-order-header span:first-child {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.modal-order-header h2 {

    margin-top: 5px;

}


.modal-section {

    padding: 22px 0;

    border-bottom:
        1px solid var(--border);

}


.modal-section h3 {

    font-size: 23px;

    margin-bottom: 15px;

}


.modal-details-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.modal-details-grid div {

    padding: 13px;

    background: var(--cream);

    border-radius: 9px;

}


.modal-details-grid span,
.modal-details-grid strong {

    display: block;

}


.modal-details-grid span {

    color: var(--text-light);

    font-size: 11px;

}


.modal-details-grid strong {

    color: var(--green-dark);

    margin-top: 3px;

}


.modal-address {

    background: var(--cream);

    padding: 15px;

    border-radius: 9px;

}


.modal-products {

    display: grid;

    gap: 10px;

}


.modal-product-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    border-bottom:
        1px solid var(--border);

}


.modal-product-row strong,
.modal-product-row span {

    display: block;

}


.modal-product-row span {

    font-size: 12px;

    color: var(--text-light);

}


.modal-total {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px 0;

}


.modal-total strong {

    font-size: 25px;

    color: var(--green-dark);

}


.modal-status-select {

    max-width: 300px;

}


.modal-actions {

    display: flex;

    justify-content: flex-end;

    gap: 10px;

    padding-top: 22px;

}



/* =========================================================
   19. ADMIN DASHBOARD
   ========================================================= */

.admin-status-grid {

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 16px;

}


.admin-status-card {

    text-align: center;

    padding: 22px 12px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow);

}


.admin-status-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto 10px;

    background: var(--cream);

    color: var(--green);

    border-radius: 12px;

}


.admin-status-card span,
.admin-status-card strong {

    display: block;

}


.admin-status-card span {

    font-size: 12px;

    color: var(--text-light);

}


.admin-status-card strong {

    margin-top: 3px;

    color: var(--green-dark);

    font-size: 25px;

}


.admin-action-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;

}


.admin-action-card {

    padding: 30px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 17px;

    box-shadow: var(--shadow);

}


.admin-action-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 14px;

    font-size: 24px;

    margin-bottom: 15px;

}


.admin-action-card h3 {

    margin-bottom: 10px;

}


.latest-orders-container {

    display: grid;

    gap: 10px;

}


.latest-order-row {

    display: grid;

    grid-template-columns:
        1fr
        150px
        150px
        auto;

    align-items: center;

    gap: 20px;

    padding: 17px 20px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 12px;

}


.latest-order-main {

    display: flex;

    align-items: center;

    gap: 12px;

}


.latest-order-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 10px;

}


.latest-order-main strong,
.latest-order-main span {

    display: block;

}


.latest-order-main strong {

    color: var(--green-dark);

}


.latest-order-main span {

    color: var(--text-light);

    font-size: 12px;

}


.latest-order-status span {

    display: inline-flex;

    padding: 6px 9px;

    border-radius: 20px;

    background: var(--cream);

    color: var(--green-dark);

    font-size: 11px;

    font-weight: 700;

}


.latest-order-total {

    text-align: right;

}


.latest-order-total strong,
.latest-order-total span {

    display: block;

}


.latest-order-total strong {

    color: var(--green-dark);

}


.latest-order-total span {

    color: var(--text-light);

    font-size: 11px;

}


.latest-order-view {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--green-dark);

    font-size: 13px;

    font-weight: 700;

}


.admin-information-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;

}


.admin-information-card {

    padding: 25px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 15px;

    box-shadow: var(--shadow);

}


.admin-information-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--cream);

    color: var(--green);

    border-radius: 12px;

    margin-bottom: 15px;

}


.admin-information-card h3 {

    margin-bottom: 7px;

}


.admin-information-card p {

    color: var(--green-dark);

    font-weight: 700;

}


.admin-information-card span {

    color: var(--text-light);

    font-size: 12px;

}



/* =========================================================
   20. FOOTER
   ========================================================= */

.site-footer {

    padding-top: 65px;

    background: #263d2b;

    color: white;

}


.footer-container {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 45px;

    padding-bottom: 45px;

}


.footer-column h3 {

    color: white;

    font-size: 24px;

    margin-bottom: 15px;

}


.footer-column p {

    color: #c9d2c8;

    font-size: 14px;

}


.footer-column a {

    display: block;

    margin:
        7px 0;

    color: #c9d2c8;

    font-size: 14px;

}


.footer-column a:hover {

    color: white;

}


.footer-bottom {

    padding: 18px 20px;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,0.12);

    color: #b8c4b8;

    font-size: 12px;

}



/* =========================================================
   21. RESPONSIVE — TABLET
   ========================================================= */

@media (
    max-width: 1100px
) {


    .nav-container {

        flex-wrap: wrap;

        padding:
            15px 0;

    }


    .main-navigation {

        order: 3;

        flex-basis: 100%;

        overflow-x: auto;

        justify-content: flex-start;

        padding-bottom: 5px;

    }


    .feature-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .article-grid,
    .herb-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .research-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .certification-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quality-management-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .formulation-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .contact-info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .business-enquiry-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .order-stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .admin-status-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .admin-action-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .admin-information-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


}



/* =========================================================
   22. RESPONSIVE — MOBILE
   ========================================================= */

@media (
    max-width: 700px
) {


    .section-container,
    .nav-container,
    .footer-container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .site-header {

        position: relative;

    }


    .nav-container {

        gap: 12px;

    }


    .site-logo span {

        font-size: 22px;

    }


    .site-logo img {

        width: 44px;

        height: 44px;

    }


    .header-cart {

        margin-left: auto;

        padding: 9px 12px;

    }


    .header-cart span:not(.cart-count) {

        display: none;

    }


    .main-navigation {

        gap: 16px;

        padding-bottom: 8px;

    }


    .main-navigation a {

        font-size: 12px;

    }


    .inner-page-hero {

        padding:
            70px 0
            65px;

    }


    .inner-page-hero h1 {

        font-size: 46px;

    }


    .inner-page-hero p:not(.section-label) {

        font-size: 16px;

    }


    .home-section {

        padding:
            65px 0;

    }


    .two-column-layout,
    .contact-layout,
    .checkout-layout,
    .cart-layout,
    .location-section {

        grid-template-columns:
            1fr;

        gap: 30px;

    }


    .feature-grid,
    .research-grid,
    .knowledge-category-grid,
    .article-grid,
    .herb-grid,
    .certification-grid,
    .quality-management-grid,
    .business-enquiry-grid,
    .admin-action-grid,
    .admin-information-grid {

        grid-template-columns:
            1fr;

    }


    .formulation-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .contact-info-grid {

        grid-template-columns:
            1fr;

    }


    .section-heading {

        margin-bottom: 30px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-buttons a,
    .hero-buttons button {

        width: 100%;

    }


    .research-enquiry,
    .knowledge-search-box,
    .contact-compliance-card,
    .cart-whatsapp-box,
    .transparency-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 28px;

    }


    .research-enquiry {

        display: flex;

    }


    .cart-product {

        grid-template-columns:
            85px
            minmax(0, 1fr);

    }


    .cart-product-image {

        width: 85px;

        height: 85px;

    }


    .cart-product-total {

        grid-column: 2;

        justify-self: start;

    }


    .cart-heading-row {

        align-items: flex-start;

        flex-direction: column;

    }


    .checkout-form-wrapper {

        padding: 24px;

    }


    .checkout-two-columns {

        grid-template-columns:
            1fr;

    }


    .orders-dashboard-header {

        align-items: flex-start;

        flex-direction: column;

    }


    .order-stats-grid {

        grid-template-columns:
            1fr;

    }


    .orders-search-box {

        grid-template-columns:
            1fr;

    }


    .order-card-header {

        align-items: flex-start;

        flex-direction: column;

    }


    .order-card-body {

        grid-template-columns:
            1fr 1fr;

    }


    .order-card-footer {

        align-items: flex-start;

        flex-direction: column;

    }


    .modal-details-grid {

        grid-template-columns:
            1fr;

    }


    .order-modal-content {

        padding: 25px;

    }


    .modal-order-header {

        align-items: flex-start;

        flex-direction: column;

    }


    .modal-actions {

        flex-direction: column;

    }


    .modal-actions a,
    .modal-actions button {

        width: 100%;

    }


    .admin-status-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .latest-order-row {

        grid-template-columns:
            1fr;

        gap: 12px;

    }


    .latest-order-total {

        text-align: left;

    }


    .footer-container {

        grid-template-columns:
            1fr 1fr;

        gap: 30px;

    }


    .footer-column:first-child {

        grid-column:
            1 / -1;

    }


    .whatsapp-float {

        width: 52px;

        height: 52px;

        right: 15px;

        bottom: 15px;

        font-size: 25px;

    }

}



/* =========================================================
   23. VERY SMALL PHONES
   ========================================================= */

@media (
    max-width: 420px
) {


    h2 {

        font-size: 34px;

    }


    h3 {

        font-size: 24px;

    }


    .site-logo span {

        font-size: 19px;

    }


    .header-cart {

        padding:
            8px 10px;

    }


    .order-card-body {

        grid-template-columns:
            1fr;

    }


    .formulation-grid {

        grid-template-columns:
            1fr;

    }


    .admin-status-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .footer-container {

        grid-template-columns:
            1fr;

    }


    .footer-column:first-child {

        grid-column:
            auto;

    }

}

/* =========================================================
   FINAL SIZE FIXES
   ========================================================= */

/* Keep all normal content inside a professional width */
main,
section {
    max-width: 100%;
}

/* Prevent random images from becoming enormous */
main img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   HERO IMAGE SIZE
   ========================================================= */

.hero-image img,
.hero img,
.hero-visual img,
.hero-section img {
    width: 100%;
    max-width: 520px;
    max-height: 520px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}


/* =========================================================
   PRODUCT IMAGE SIZE
   ========================================================= */

.product img,
.product-card img,
.product-item img,
.product-image img,
.products img {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
    margin: 0 auto;
}


/* Product card itself */
.product,
.product-card,
.product-item {
    max-width: 300px;
    width: 100%;
}


/* =========================================================
   PRODUCT CONTAINER
   ========================================================= */

.product-container,
.products-container,
.product-grid {
    width: min(1200px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* =========================================================
   GENERAL CONTENT WIDTH
   ========================================================= */

.container,
.section-container {
    width: min(1200px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   LARGE LOGO / BRAND IMAGES
   ========================================================= */

.logo img,
.site-logo img,
header img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}


/* =========================================================
   MOBILE SIZE FIX
   ========================================================= */

@media (max-width: 768px) {

    .hero-image img,
    .hero img,
    .hero-visual img,
    .hero-section img {
        max-width: 360px;
        max-height: 360px;
    }

    .product-container,
    .products-container,
    .product-grid {
        grid-template-columns: 1fr;
        width: calc(100% - 30px);
    }

    .product,
    .product-card,
    .product-item {
        max-width: 100%;
    }

    .product img,
    .product-card img,
    .product-item img,
    .product-image img,
    .products img {
        max-width: 180px;
        height: 180px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-image img,
    .hero img,
    .hero-visual img,
    .hero-section img {
        max-width: 280px;
        max-height: 280px;
    }

    .product img,
    .product-card img,
    .product-item img,
    .product-image img,
    .products img {
        max-width: 150px;
        height: 150px;
    }

}
/* =========================================================
   HANUMA AYUR CARE — FINAL SIZE CONTROL
   ========================================================= */


/* =========================
   HOME PAGE
   ========================= */

/* Main home headings */
h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
}

/* Prevent the main hero heading from becoming enormous */
.hero h1,
.hero-section h1,
.home-hero h1 {
    max-width: 750px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
}

/* Hero description */
.hero p,
.hero-section p,
.home-hero p {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   HOME HERO IMAGE
   ========================= */

/* Tree / main decorative image */
.hero img,
.hero-section img,
.home-hero img,
.hero-image img,
.hero-visual img {
    width: auto;
    max-width: 460px;
    max-height: 460px;
    height: auto;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
}


/* =========================
   PRODUCT PAGE
   ========================= */

/*
   Product images were becoming extremely large.
   This catches product images even when the older
   product CSS class is different.
*/

main .product img,
main .product-card img,
main .product-item img,
main .product-image img,
main .products img,
main [class*="product"] img {
    width: 220px;
    height: 220px;
    max-width: 220px;
    max-height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


/* Specifically control the large logo.jpeg
   when it is being displayed as a product image */
main img[src*="logo.jpeg"] {
    width: 220px;
    height: 220px;
    max-width: 220px;
    max-height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


/* =========================
   PRODUCT CARDS
   ========================= */

.product,
.product-card,
.product-item {
    width: 100%;
    max-width: 320px;
    min-height: 420px;
    padding: 25px;
}


/* Product title */
.product h2,
.product h3,
.product-card h2,
.product-card h3,
.product-item h2,
.product-item h3 {
    font-size: 24px;
    line-height: 1.2;
}


/* Product description */
.product p,
.product-card p,
.product-item p {
    font-size: 14px;
    line-height: 1.6;
}


/* Product price */
.product .price,
.product-card .price,
.product-item .price {
    font-size: 18px;
    font-weight: 700;
}


/* =========================
   PRODUCT GRID
   ========================= */

.product-container,
.products-container,
.product-grid {
    width: min(1100px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* =========================
   FEATURED SECTION
   ========================= */

.featured-products,
.featured-section {
    padding-top: 70px;
    padding-bottom: 70px;
}


.featured-products h2,
.featured-section h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
}


/* =========================
   GENERAL SECTION HEADINGS
   ========================= */

.section-heading h1,
.section-heading h2 {
    line-height: 1.15;
}


.section-heading p {
    font-size: 16px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    h1,
    .hero h1,
    .hero-section h1,
    .home-hero h1 {
        font-size: 40px;
        line-height: 1.12;
    }

    .hero img,
    .hero-section img,
    .home-hero img,
    .hero-image img,
    .hero-visual img {
        max-width: 340px;
        max-height: 340px;
    }

    main .product img,
    main .product-card img,
    main .product-item img,
    main .product-image img,
    main .products img,
    main [class*="product"] img,
    main img[src*="logo.jpeg"] {
        width: 180px;
        height: 180px;
        max-width: 180px;
        max-height: 180px;
    }

    .product-container,
    .products-container,
    .product-grid {
        width: calc(100% - 30px);
        grid-template-columns: 1fr;
    }

    .product,
    .product-card,
    .product-item {
        max-width: 100%;
    }

}


/* =========================
   SMALL PHONES
   ========================= */

@media (max-width: 480px) {

    h1,
    .hero h1,
    .hero-section h1,
    .home-hero h1 {
        font-size: 34px;
    }

    .hero img,
    .hero-section img,
    .home-hero img,
    .hero-image img,
    .hero-visual img {
        max-width: 270px;
        max-height: 270px;
    }

    main .product img,
    main .product-card img,
    main .product-item img,
    main .product-image img,
    main .products img,
    main [class*="product"] img,
    main img[src*="logo.jpeg"] {
        width: 150px;
        height: 150px;
        max-width: 150px;
        max-height: 150px;
    }

}

/* =========================================================
   FINAL PRODUCT IMAGE FIX
   ========================================================= */

/* Homepage products */
#homeProductsGrid .product-card {
    overflow: hidden !important;
}

#homeProductsGrid .product-image {
    width: 100% !important;
    height: 220px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}

#homeProductsGrid .product-image img {
    width: 180px !important;
    height: 180px !important;

    max-width: 180px !important;
    max-height: 180px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    object-fit: contain !important;

    display: block !important;
}


/* =========================================================
   PRODUCTS PAGE
   ========================================================= */

#productsGrid .product-card {
    overflow: hidden !important;
}

#productsGrid .product-image {
    width: 100% !important;
    height: 240px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}

#productsGrid .product-image img {
    width: 190px !important;
    height: 190px !important;

    max-width: 190px !important;
    max-height: 190px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    object-fit: contain !important;

    display: block !important;
}


/* =========================================================
   PRODUCT CARD TEXT
   ========================================================= */

#homeProductsGrid .product-info h3,
#productsGrid .product-info h3 {
    font-size: 24px !important;
    line-height: 1.2 !important;
}

#homeProductsGrid .product-info p,
#productsGrid .product-info p {
    font-size: 14px !important;
    line-height: 1.5 !important;
}

#homeProductsGrid .product-price,
#productsGrid .product-price {
    font-size: 18px !important;
    font-weight: 700 !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    #homeProductsGrid .product-image {
        height: 200px !important;
    }

    #homeProductsGrid .product-image img {
        width: 160px !important;
        height: 160px !important;
        max-width: 160px !important;
        max-height: 160px !important;
    }

    #productsGrid .product-image {
        height: 210px !important;
    }

    #productsGrid .product-image img {
        width: 165px !important;
        height: 165px !important;
        max-width: 165px !important;
        max-height: 165px !important;
    }

}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 480px) {

    #homeProductsGrid .product-image img,
    #productsGrid .product-image img {
        width: 140px !important;
        height: 140px !important;
        max-width: 140px !important;
        max-height: 140px !important;
    }

}

/* =========================================================
   PRODUCTS PAGE - FINAL FIX
   ========================================================= */

.products-page-header {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0 30px;
}

.products-page-header h1 {
    margin: 0 0 15px;
}

.products-page-header p:not(.section-label) {
    font-size: 16px;
    color: var(--text-light);
}


/* PRODUCT PAGE */

.products-page {
    width: 100%;
    padding: 20px 0 80px;
}


/* CATEGORY BUTTONS */

.product-categories {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto 40px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-button {
    border: 1px solid var(--border);
    background: white;
    color: var(--green-dark);

    padding: 10px 18px;
    border-radius: 25px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.category-button:hover {
    background: var(--cream);
    transform: translateY(-1px);
}

.category-button.active {
    background: var(--green-dark);
    color: white;
    border-color: var(--green-dark);
}


/* PRODUCT GRID */

.products-page-grid {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* PRODUCT CARD */

#productsGrid .product-card {
    width: 100%;
    max-width: none;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

#productsGrid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}


/* PRODUCT IMAGE AREA */

#productsGrid .product-image {
    width: 100%;
    height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--cream);

    overflow: hidden;
}

#productsGrid .product-image img {
    width: 190px;
    height: 190px;

    max-width: 190px;
    max-height: 190px;

    object-fit: contain;

    display: block;
}


/* PRODUCT INFORMATION */

#productsGrid .product-info {
    padding: 22px;
}

#productsGrid .product-info h3 {
    font-size: 24px;
    line-height: 1.2;

    margin-bottom: 8px;

    color: var(--green-dark);
}

#productsGrid .product-info p {
    font-size: 14px;
    line-height: 1.5;

    color: var(--text-light);

    margin-bottom: 12px;
}

#productsGrid .product-price {
    font-size: 18px;
    font-weight: 700;

    color: var(--green-dark);
}


/* MOBILE */

@media (max-width: 768px) {

    .products-page-header {
        width: calc(100% - 30px);
        padding-top: 50px;
    }

    .products-page-header h1 {
        font-size: 40px;
    }

    .product-categories {
        width: calc(100% - 30px);
    }

    .products-page-grid {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        gap: 20px;
    }

    #productsGrid .product-image {
        height: 220px;
    }

    #productsGrid .product-image img {
        width: 165px;
        height: 165px;
    }
}


@media (max-width: 480px) {

    .products-page-header h1 {
        font-size: 34px;
    }

    .category-button {
        padding: 9px 14px;
        font-size: 13px;
    }

    #productsGrid .product-image img {
        width: 140px;
        height: 140px;
    }

}
/* =========================================
   FINAL E-COMMERCE HEADER FIX
   ========================================= */

.shop-nav {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

/* TOP ROW */
.shop-nav-top {
    width: 100%;
    max-width: 1400px;
    min-height: 85px;
    margin: 0 auto;
    padding: 10px 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

/* LOGO */
.shop-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.shop-logo img {
    width: 105px !important;
    height: auto !important;
    max-width: 105px !important;
    display: block;
}

/* SEARCH */
.shop-nav .search-box {
    flex: 1;
    max-width: 500px;
    height: 45px;

    display: flex;
    align-items: center;

    border: 2px solid #d8dcc7;
    border-radius: 25px;
    overflow: hidden;

    background: #f9faf5;
}

.shop-nav .search-box input {
    flex: 1;
    width: 100%;
    height: 100%;

    border: none;
    outline: none;

    background: transparent;

    padding: 0 18px;
    font-size: 15px;
}

.shop-nav .search-box button {
    width: 55px;
    height: 100%;

    border: none;

    background: #6d8b35;
    color: white;

    cursor: pointer;
    font-size: 17px;
}

/* ACCOUNT + CART */
.shop-nav .shop-account,
.shop-nav .shop-cart {
    position: relative;

    display: flex;
    align-items: center;
    gap: 7px;

    color: #3f5425;
    text-decoration: none;

    font-weight: bold;
    white-space: nowrap;
}

.shop-nav .shop-account i,
.shop-nav .shop-cart i {
    font-size: 20px;
}

.shop-nav .shop-account:hover,
.shop-nav .shop-cart:hover {
    color: #a85b20;
}

/* CART NUMBER */
.shop-nav .cart-count {
    position: absolute;

    top: -12px;
    left: 15px;

    min-width: 19px;
    height: 19px;

    padding: 2px 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #a85b20;
    color: white;

    border-radius: 50%;

    font-size: 11px;
}

/* NAVIGATION MENU */
.shop-nav .shop-menu {
    width: fit-content;
    max-width: 90%;

    margin: 0 auto 15px;
    padding: 11px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 40px;

    background: #3f5425;
    border-radius: 40px;
}

.shop-nav .shop-menu a {
    display: block;

    color: white;
    text-decoration: none;

    font-size: 15px;
    font-weight: bold;

    white-space: nowrap;
}

.shop-nav .shop-menu a:hover {
    color: #e5e9c8;
}


/* =========================================
   PRODUCTS PAGE SIZE FIX
   ========================================= */

.products-page {
    padding: 70px 5%;
}

.products-page-grid {
    width: min(1200px, 100%);
    max-width: 1200px;

    margin: 40px auto 0;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}

.products-page .product-card {
    width: 100%;
    min-width: 0;
}

.products-page .product-image {
    width: 100%;
    height: 230px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: #f7f5ed;
}

.products-page .product-image img {
    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    display: block;
}

.products-page .product-info {
    padding: 22px;
}

.products-page .product-info h3 {
    font-size: 27px;
    line-height: 1.15;
}

.products-page .product-info p {
    font-size: 15px;
    line-height: 1.5;
}

.products-page .product-price {
    font-size: 20px;
    font-weight: bold;
    color: #3f5425;
    margin: 12px 0;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .shop-nav-top {
        gap: 15px;
        padding: 10px 3%;
    }

    .shop-nav .search-box {
        max-width: 400px;
    }

    .shop-nav .shop-menu {
        gap: 25px;
    }

    .products-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .shop-nav-top {
        min-height: auto;
        padding: 10px 15px;

        gap: 12px;
        flex-wrap: wrap;
    }

    .shop-logo img {
        width: 75px !important;
        max-width: 75px !important;
    }

    .shop-nav .shop-account span,
    .shop-nav .shop-cart span:not(.cart-count) {
        display: none;
    }

    .shop-nav .search-box {
        order: 3;

        flex-basis: 100%;
        max-width: none;

        height: 42px;
    }

    .shop-nav .shop-menu {
        width: 100%;
        max-width: 100%;

        margin: 0;

        justify-content: flex-start;

        gap: 20px;

        padding: 10px 15px;

        border-radius: 0;

        overflow-x: auto;
    }

    .shop-nav .shop-menu a {
        font-size: 14px;
    }

    .products-page {
        padding: 50px 15px;
    }

    .products-page-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .products-page .product-image {
        height: 240px;
    }

    .products-page .product-info h3 {
        font-size: 25px;
    }
}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 480px) {

    .shop-logo img {
        width: 65px !important;
        max-width: 65px !important;
    }

    .products-page .product-image {
        height: 220px;
    }

    .products-page .product-info {
        padding: 20px;
    }
}
/* =========================================
   FINAL HEADER SIZE / OVERLAP FIX
   ========================================= */

.shop-nav {
    position: relative !important;
    top: auto !important;
}

/* Make header more compact */
.shop-nav-top {
    min-height: 72px !important;
    padding: 8px 5% !important;
}

/* Smaller logo */
.shop-logo img {
    width: 90px !important;
    max-width: 90px !important;
}

/* Smaller search */
.shop-nav .search-box {
    max-width: 500px;
    height: 42px;
}

/* Smaller menu */
.shop-nav .shop-menu {
    margin-bottom: 10px;
    padding: 9px 22px;
    gap: 32px;
}

/* Products page should start normally */
.products-page-header {
    padding-top: 55px !important;
}

/* Category buttons */
.product-categories {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}
/* =========================================
   PRODUCT IMAGE AREA
   ========================================= */

.products-page .product-image {
    width: 100%;
    height: 240px;

    background: #f7f5ed;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Keep product photos nicely contained */
.products-page .product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    padding: 25px;

    display: block;
}
/* =========================================
   HEADER - ORIGINAL SINGLE ROW DESIGN
   ========================================= */

.shop-nav {
    position: relative !important;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    z-index: 1000;
}

/* Everything in one row */
.shop-nav-top {
    width: 100%;
    max-width: 1280px;
    height: 95px;
    margin: 0 auto;
    padding: 8px 20px;

    display: flex;
    align-items: center;
    gap: 25px;
}

/* Logo */
.shop-logo {
    flex: 0 0 auto;
}

.shop-logo img {
    width: 100px !important;
    height: auto !important;
    display: block;
}

/* Search */
.shop-nav-top .search-box {
    flex: 1 1 320px;
    max-width: 430px;
    height: 45px;

    display: flex;
    align-items: center;

    border: 2px solid #d9dfc8;
    border-radius: 25px;
    overflow: hidden;
    background: #fafbf7;
}

.shop-nav-top .search-box input {
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;

    padding: 0 18px;
    font-size: 15px;
}

.shop-nav-top .search-box button {
    width: 55px;
    height: 100%;
    border: 0;

    background: #6d8b35;
    color: white;

    font-size: 17px;
    cursor: pointer;
}

/* Account */
.shop-account {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 7px;

    color: #3f5425;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.shop-account i {
    font-size: 20px;
}

/* Cart */
.shop-cart {
    position: relative;

    display: flex;
    align-items: center;
    gap: 7px;

    color: #3f5425;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.shop-cart i {
    font-size: 20px;
}

/* Cart number */
.shop-cart .cart-count {
    position: absolute;
    top: -12px;
    left: 12px;

    min-width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #a85b20;
    color: white;

    border-radius: 50%;
    font-size: 11px;
}


/* =========================================
   MENU - SAME ROW
   ========================================= */

.shop-menu {
    flex: 0 0 auto !important;

    width: auto !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 12px 22px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 28px;

    background: #3f5425;
    border-radius: 30px;
}

.shop-menu a {
    color: white !important;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    white-space: nowrap;
}

.shop-menu a:hover {
    color: #e5e9c8 !important;
}


/* =========================================
   DESKTOP WIDTH ADJUSTMENT
   ========================================= */

@media (min-width: 1200px) {

    .shop-nav-top {
        max-width: 1350px;
        gap: 20px;
    }

    .shop-logo img {
        width: 95px !important;
    }

    .shop-nav-top .search-box {
        max-width: 400px;
    }

    .shop-menu {
        gap: 24px;
        padding: 11px 20px !important;
    }
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1100px) {

    .shop-nav-top {
        gap: 15px;
        padding: 8px 15px;
    }

    .shop-logo img {
        width: 80px !important;
    }

    .shop-nav-top .search-box {
        max-width: 300px;
    }

    .shop-menu {
        gap: 16px;
        padding: 10px 15px !important;
    }

    .shop-menu a {
        font-size: 13px;
    }
}
/* =========================================================
   FINAL HEADER - EVERYTHING IN ONE ROW
   ========================================================= */

@media (min-width: 1101px) {

    .shop-nav {
        width: 100%;
        min-height: 95px;

        display: flex !important;
        align-items: center;

        padding: 8px 3% !important;

        background: #ffffff;

        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

        gap: 18px;

        box-sizing: border-box;
    }

    /* Make the contents of shop-nav-top behave
       as direct items of shop-nav */
    .shop-nav-top {
        display: contents !important;
    }

    /* LOGO */
    .shop-logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .shop-logo img {
        width: 100px !important;
        height: auto !important;
        max-width: 100px !important;
        display: block;
    }

    /* SEARCH */
    .shop-nav .search-box {
        flex: 0 1 290px !important;

        width: 290px;
        max-width: 290px;

        height: 45px;

        display: flex;
        align-items: center;

        margin: 0 !important;

        border: 2px solid #d9dfc8;
        border-radius: 25px;

        overflow: hidden;

        background: #fafbf7;
    }

    .shop-nav .search-box input {
        flex: 1;

        width: auto;

        height: 100%;

        border: none;
        outline: none;

        background: transparent;

        padding: 0 18px;

        font-size: 14px;
    }

    .shop-nav .search-box button {
        width: 55px;
        height: 100%;

        border: none;

        background: #6d8b35;
        color: #ffffff;

        cursor: pointer;
    }

    /* ACCOUNT */
    .shop-nav .shop-account {
        flex: 0 0 auto;

        display: flex;
        align-items: center;
        gap: 7px;

        color: #3f5425;

        text-decoration: none;

        white-space: nowrap;

        font-weight: 700;

        margin-left: auto;
    }

    /* CART */
    .shop-nav .shop-cart {
        flex: 0 0 auto;

        display: flex;
        align-items: center;
        gap: 7px;

        color: #3f5425;

        text-decoration: none;

        white-space: nowrap;

        font-weight: 700;
    }

    /* CART NUMBER */
    .shop-nav .cart-count {
        position: absolute;

        top: -11px;
        left: 12px;

        min-width: 19px;
        height: 19px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #a85b20;
        color: #ffffff;

        border-radius: 50%;

        font-size: 11px;
    }

    /* =====================================================
       MENU - NOW PART OF SAME ROW
       ===================================================== */

    .shop-nav .shop-menu {

        flex: 0 0 auto !important;

        width: auto !important;
        max-width: none !important;

        margin: 0 !important;

        padding: 12px 20px !important;

        display: flex !important;

        align-items: center;
        justify-content: center;

        gap: 24px;

        background: #3f5425;

        border-radius: 30px;

        white-space: nowrap;
    }

    .shop-nav .shop-menu a {

        display: block;

        color: #ffffff !important;

        text-decoration: none;

        font-size: 14px;

        font-weight: 700;

        white-space: nowrap;
    }

    .shop-nav .shop-menu a:hover {
        color: #e5e9c8 !important;
    }
}
/* =========================================================
   PRODUCT DETAILS PAGE - FINAL DESIGN
   ========================================================= */

.product-details-page {
    width: 100%;
    padding: 70px 5% 90px;
    background: #faf9f3;
    box-sizing: border-box;
}

.product-details-container {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    background: #ffffff;

    padding: 45px;

    border-radius: 20px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}


/* PRODUCT IMAGE */

.product-details-image {
    width: 100%;
    height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7f5ed;

    border-radius: 18px;

    overflow: hidden;
}

.product-details-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 30px;

    box-sizing: border-box;
}


/* PRODUCT INFORMATION */

.product-details-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-details-info .section-label {
    margin-bottom: 8px;
}

.product-details-info h1 {
    margin: 5px 0 15px;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 58px;
    line-height: 1.05;

    color: #3f5425;
}

.product-details-price {
    font-size: 30px;
    font-weight: 700;

    color: #6d8b35;

    margin-bottom: 20px;
}

.product-details-description {
    font-size: 17px;
    line-height: 1.7;

    color: #666;

    margin-bottom: 30px;
}


/* QUANTITY */

.product-quantity {
    margin-bottom: 25px;
}

.product-quantity > span {
    display: block;

    font-size: 15px;
    font-weight: 700;

    color: #555;

    margin-bottom: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-selector button {
    width: 38px;
    height: 38px;

    border: none;

    border-radius: 50%;

    background: #6d8b35;
    color: white;

    font-size: 20px;
    font-weight: bold;

    cursor: pointer;
}

.quantity-selector button:hover {
    background: #526b29;
}

.quantity-selector span {
    min-width: 30px;

    text-align: center;

    font-size: 18px;
    font-weight: 700;
}


/* ACTION BUTTONS */

.product-details-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.product-details-actions .product-button {
    min-height: 48px;

    padding: 12px 25px;

    border: none;

    border-radius: 25px;

    background: #6d8b35;
    color: white;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.product-details-actions .product-button:hover {
    background: #526b29;
}


/* WHATSAPP */

.product-whatsapp-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 22px;

    border-radius: 25px;

    background: #25d366;
    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    box-sizing: border-box;
}

.product-whatsapp-button:hover {
    background: #1da851;
}


/* FEATURES */

.product-details-features {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #e5e5e5;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.product-details-features div {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #555;

    font-size: 15px;
}

.product-details-features i {
    width: 22px;

    text-align: center;

    color: #6d8b35;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .product-details-page {
        padding: 40px 15px 70px;
    }

    .product-details-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 25px;
    }

    .product-details-image {
        height: 350px;
    }

    .product-details-info h1 {
        font-size: 44px;
    }

    .product-details-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .product-details-actions .product-button,
    .product-whatsapp-button {
        width: 100%;
    }
}