/* ============================================================
   ABOUT US STYLES (Page 17)
   ============================================================ */

.m-about-page {
    background: #FFFFFF;
    min-height: 100vh;
    padding-bottom: 90px;
}

/* TOP BAR */
.m-about-top-bar {
    height: 52px;
    background: transparent;
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.m-about-top-bar .back-btn {
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.m-about-top-bar .back-btn svg {
    width: 22px; height: 22px;
}

/* HERO SECTION */
.m-about-hero {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.m-about-hero .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(88,28,135,0.4) 60%, rgba(88,28,135,0.7) 100%);
}

.m-about-hero .hero-content {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
}

.m-about-hero .logo-mark {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.m-about-hero .icon-circle {
    width: 24px; height: 24px;
    background: #7C3AED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-about-hero .icon-circle svg {
    width: 14px; height: 14px; color: white;
}

.m-about-hero .hero-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.m-about-hero .hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin: 4px 0 0;
}

.m-about-hero .btn-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.m-about-hero .btn-outline {
    height: 38px;
    border-radius: 20px;
    border: 1.5px solid white;
    color: white;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    padding: 0 16px;
}

.m-about-hero .btn-solid {
    height: 38px;
    border-radius: 20px;
    background: white;
    color: #7C3AED;
    border: none;
    font-size: 13px;
    font-weight: 700;
    padding: 0 20px;
}

/* WELCOME SECTION */
.m-about-welcome {
    padding: 20px 16px;
}

.m-about-welcome h2 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
}

.m-about-welcome p {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.m-about-welcome p + p {
    margin-top: 10px;
}

/* WHY SHOP WITH US */
.m-about-features {
    padding: 0 16px 20px;
}

.m-about-features h2 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 14px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.feat-card {
    background: #F9FAFB;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #F3F4F6;
}

.feat-card .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #EDE9FE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.feat-card .icon svg {
    width: 18px; height: 18px; color: #7C3AED;
}

.feat-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.feat-card p {
    font-size: 11px;
    color: #6B7280;
    line-height: 1.5;
    margin: 4px 0 0;
}

/* OUR MISSION CARD */
.m-about-mission {
    margin: 0 16px 16px;
    background: #FDFBFF;
    border: 2px solid #EDE9FE;
    border-radius: 16px;
    padding: 20px;
}

.m-about-mission h3 {
    font-size: 18px;
    font-weight: 800;
    color: #7C3AED;
    margin: 0 0 10px;
}

.m-about-mission p {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* QUOTE CARD */
.m-about-quote {
    margin: 0 16px 16px;
    background: #F9FAFB;
    border-radius: 14px;
    padding: 16px;
    border-left: 4px solid #7C3AED;
}

.m-about-quote p {
    font-size: 13px;
    color: #4B5563;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* WHAT MAKES US DIFFERENT */
.m-about-different {
    padding: 0 0 16px;
}

.m-about-different h2 {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 16px;
    padding: 0 16px;
}

.diff-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
}

.diff-scroll::-webkit-scrollbar { display: none; }

.diff-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    min-width: 90px;
}

.diff-card .emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
}

.diff-card h4 {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.diff-card p {
    font-size: 10px;
    color: #6B7280;
    margin: 2px 0 0;
}

/* JOIN OUR COMMUNITY CARD */
.m-about-community {
    margin: 0 16px 16px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: white;
    border: 1px solid #F3F4F6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.m-about-community .left-img {
    width: 110px;
    object-fit: cover;
}

.m-about-community .content {
    flex: 1;
    padding: 14px;
}

.m-about-community h3 {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 4px;
}

.m-about-community p {
    font-size: 11px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0 0 8px;
}

.m-about-community .check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.m-about-community .check-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.m-about-community .check-item svg {
    width: 12px; height: 12px; color: #10B981; flex-shrink: 0;
}

.m-about-community .check-item span {
    font-size: 10px; color: #374151; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* THANK YOU FOOTER BANNER */
.m-about-footer-banner {
    margin: 0 0 16px;
    background: #7C3AED;
    padding: 24px 16px;
}

.m-about-footer-banner h2 {
    font-size: 17px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin: 0 0 14px;
}

.start-shopping-btn {
    width: 100%;
    height: 50px;
    background: white;
    color: #7C3AED;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.start-shopping-btn svg {
    width: 18px; height: 18px; color: #7C3AED;
}
