/* cart and shop link optimisation start*/
@media (max-width: 35em) {
    .mobile-cart-link,
    .mobile-shop-link {
        display: block;
        position: absolute;     
        top: 2rem;
        width: 1.7rem;
        height: 1.7rem;
    }

    .mobile-cart-link {
        right: 4rem;
    }

    .mobile-shop-link {
        right: 7rem;
    }

    .mobile-cart-link img,
    .mobile-shop-link img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media (min-width: 35em) {
    .mobile-cart-link,
    .mobile-shop-link {
        display: none;
    }
}
/* cart and shop link optimisation end*/
/* about style start*/
/* about style start*/

/* Black & White theme base */
:root{
    --bg: #ffffff;
    --text: #0b0b0b;
    --muted: #6b6b6b;
    --accent: #000000;
    --max-width: 900px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    padding: 3rem 1rem;
}

.head {
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.brand-description {
    max-width: var(--max-width);
    margin: 0 auto 2rem auto;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--muted);
    text-align: center;
}

/* Emphasis styles: consistent bold and italic treatment */
.brand-description strong {
    color: var(--accent);
    font-weight: 800;
}

.brand-description em {
    font-style: italic;
    color: var(--text);
}

/* Call-to-action emphasis within content */
.brand-description .callout {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* FAQ styles tweaks to match B/W theme */
.faq-section {
    padding: 2.5rem 1rem 4rem 1rem;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.faq-question {
    color: var(--text);
    font-weight: 700;
}

.faq-answer p {
    color: var(--muted);
}

/* Responsive */
@media (min-width: 768px) {
    .brand-description { font-size: 1.125rem; }
    .head { font-size: 3rem; }
}

/* about style end */
/* FAQ Section Styles start */
.faq-section {
    padding: 4rem 1rem;
    max-width: 800px; /* FAQs look better when not too wide */
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-item {
    border-bottom: 1px solid #ddd; /* Line between items */
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #000; /* Darker on hover */
}

.faq-arrow {
    transition: transform 0.3s ease; /* Smooth spin */
    font-size: 0.8rem;
}

/* The Answer Panel (Hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out; /* Smooth slide */
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* ============================
   Active State (Added by JS)
   ============================ */
.faq-item.active .faq-arrow {
    transform: rotate(180deg); /* Flip arrow up */
}

/* uestions styling end */


.footer-end {
    display: flex;
    justify-content: center;
    padding: 5%;
}