
.page-about .products-section{
    background-color: var(--card-bg-color);
    padding: 5px 0;
    margin-top: 98px;
}

.page-about .section-title{
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.page-about .section-subtitle{
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--description-color);
}

.page-about .figma-section {
    padding: 48px 80px;
}

.page-about .figma-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* IMAGE FIX */
.page-about .figma-image {
    width: 100%;
    max-width: 480px;
    height: auto;                 /* 🔥 keeps natural ratio */
    border-radius: 8px;
    object-fit: contain;          /* 🔥 prevents cropping */
    display: block;
}

/* TEXT */
.page-about .figma-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 16px;
}

.page-about .figma-paragraph {
    font-size: 16px;
    color: var(--description-color);
    line-height: 150%;
    margin-bottom: 12px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 992px) {
    .page-about .figma-section {
        padding: 32px 32px;
    }

    .page-about .figma-title {
        font-size: 30px;
        margin-top: 10px;
    }

    .page-about .figma-image {
        max-width: 100%;
        width: 100%;
        height: auto;             
    }
}




@media (max-width: 576px) {
    .page-about .figma-section {
        padding: 24px 20px;
    }

    .page-about .figma-title {
        font-size: 26px;
    }

    .page-about .figma-paragraph {
        font-size: 15px;
    }

        .page-about .figma-image {
        width: 100%;
        max-width: 100%;
    }
}
.page-products .modal-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Close button ON the image */
.page-products .product-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;

    background-color: var(--header-color);
    border-radius: 50%;
    padding: 6px;
    border:2px solid black,
}
page-products #productModal .modal-dialog {
    max-width: 100vw;
    margin: 0 auto;
}
/* Image stays clean */
.page-products .product-modal-img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}


.dropdown-icon {
    transition: transform 0.3s ease;
}

button[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .btn-outline-secondary {
        border-radius: 12px;
        font-weight: 500;
    }
    .btn-outline-secondary {
        border-radius: 14px;
        padding: 10px 14px;
        font-weight: 500;
    }
}
/* ============================================================
   ABOUT PAGE — WHY CHOOSE US
============================================================ */
.page-about .why-choose-us {    
    padding-bottom: 55px;
    padding-top: 0px;
}

.page-about .why-choose-us h2 {
    font-size: 36px;
    font-weight: 500;
}

.page-about .why-subtext {
    font-size: 16px;
    color: var(--description-color);
    max-width: 750px;
}

.page-about .why-card {
    background: var(--bg-color);
    border: 1px solid var(--bg-color);
    border-radius: 24px;
    padding: 20px;
    transition: 0.2s ease;
}

.page-about .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.page-about .why-card p {
    font-size: 14px;
    color: var(--description-color);
}

@media (max-width: 576px) {
    .page-about .why-choose-us h2 {
        font-size: 28px;
    }

    .page-about .why-subtext {
        font-size: 14px;
        padding: 0 15px;
    }
}

/* ============================================================
   ABOUT PAGE — TASTE OF TRADITION SECTION
============================================================ */
.page-about .taste-tradition-section {
    background: linear-gradient(90deg, var(--card-bg-color) 0%, var(--card-bg-color) 100%);
    padding: 48px 80px;
}

.page-about .spice-stack-img {
    width: 240px;
    object-fit: contain;
}

.page-about .taste-title {
    font-size: 36px;
    font-weight: 500;
}

.page-about .taste-desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 150%;
    max-width: 600px;
    margin: 0 auto;
}

.page-about .taste-btn {
    width: 183px;
    height: 44px;
    border-radius: 8px;
    padding: 10px 16px;
    background-color: var(--button-color);
    color:var(--bg-color);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .page-about .taste-tradition-section {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .page-about .taste-tradition-section {
        padding: 32px 20px;
    }

    .page-about .spice-stack-img {
        width: 180px;
        display: none;
    }

    .page-about .taste-title {
        font-size: 28px;
    }

    .page-about .taste-desc {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .page-about .spice-stack-img {
        display: none;
    }

    .page-about .taste-title {
        font-size: 24px;
    }
}

/* ============================================================
   ABOUT PAGE — STILL CRAVING SECTION
============================================================ */
.page-about .still-craving {
    background: linear-gradient(90deg, var(--card-bg-color) 0%, var(--card-bg-color) 100%);
}

.page-about .spice-img {
    height: 180px;
    object-fit: contain;
    margin-left: auto;
}

.page-about .still-craving-goodness {
    font-size: 36px;
    font-weight: 500;
}

.page-about .View-all-Products {
    width: 183px;
    height: 44px;
    border-radius: 8px;
    padding: 10px 16px;
    background-color:var(--button-color);
    color: var(--bg-color);
    text-decoration: none;
}

@media (max-width: 576px) {
    .page-about .spice-img {
        height: 130px;
        margin: 0 auto;
    }

    .page-about .still-craving-goodness {
        font-size: 24px;
    }

    .page-about .View-all-Products {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-about .still-craving-goodness {
        font-size: 28px;
    }
}
