/* AEM Labs Limited - Storefront About CSS */
/* ======================================= */

.about-section {
    padding: 40px 0;
}

.about-section .container {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-section .body {
    margin: 0 auto 20px;
    width: 100%;
}

.about-section .body h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.4;
}

.about-section .body .shop-description,
.about-section .body:not(:has(.disclaimer)) p {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.about-section .body:first-of-type p {
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0;
}

/* Store Tags / Specializations */
.about-section .body .specializations {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-section .body .specializations span {
    gap: 6px;
    background: var(--accent-color);
    color: white;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}


/* Store Policies */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 20px 0;
}

.specs-grid h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-color);
}

.specs-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-grid li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 14px;
}

.specs-grid li:last-child {
    border-bottom: none;
}

/* Disclaimer */
.disclaimer {
    font-size: 14px;
    font-weight: 600;
    color: #3d3d3d;
    border-radius: 8px;
    padding: 8px 12px;
    background-color: rgba(var(--accent-color-rgb), 0.1);
    border: 2px dashed rgba(var(--accent-color-rgb), 0.75);
    margin-top: 24px;
}

.disclaimer p {
    margin: 0;
}

.disclaimer i {
    margin-right: 6px;
}



@media (max-width: 1440px) {
    .about-section .container {
        width: 80%;
    }
}

@media (max-width: 992px) {
    .about-section .container {
        width: 85%;
    }

    .about-section .body,
    .about-section .body h3 {
        margin: 0 0 12px;
    }

    .about-section .body h3 {
        font-size: 20px;
    }

    /* Store Policies */
    .specs-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .specs-grid h4 {
        font-size: 16px;
    }

    .specs-grid ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 20px 0 40px;
    }

    .about-section .container {
        gap: 10px;
    }

    .about-section .body h3 {
        font-size: 18px;
        margin: 0 0 8px;
    }

    .about-section .body .shop-description,
    .about-section .body:not(:has(.disclaimer)) p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .about-section .body .specializations {
        margin-top: 12px;
    }

    /* Store Policies */
    .specs-grid h4 {
        font-size: 14px;
        padding-bottom: 6px;
        margin-bottom: 6px;
    }

    .specs-grid ul li {
        font-size: 12px;
    }
}