/* =========================================
   STORE APP LAYOUT
========================================= */

body {
    margin: 0;
    padding: 0;
    background: #f4f7f5;
    font-family: Arial, sans-serif;
    color: #1a1a1a;
}

.store-app-layout {
    display: flex;
    min-height: 100vh;
}

/* =========================================
   SIDEBAR
========================================= */

.store-sidebar {
    width: 280px;
    background: #062f1b;
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.08);
}

.store-branding {
    text-align: center;
}

.store-branding img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.store-branding h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.store-branding p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.store-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-sidebar-nav a {
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 14px;
    transition: 0.25s ease;
    font-weight: 600;
}

.store-sidebar-nav a:hover {
    background: #0d7a3d;
    transform: translateX(4px);
}

/* =========================================
   MAIN CONTENT
========================================= */

.store-main-content {
    flex: 1;
    padding: 35px;
}

/* =========================================
   TOPBAR
========================================= */

.store-topbar {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.store-topbar-left h1 {
    margin: 0;
    font-size: 38px;
    color: #062f1b;
}

.store-topbar-left p {
    margin-top: 10px;
    color: #666;
    max-width: 600px;
    line-height: 1.6;
}

.store-account-card {
    background: white;
    padding: 22px;
    border-radius: 20px;
    min-width: 280px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-account-card strong {
    font-size: 20px;
    color: #0d7a3d;
}

/* =========================================
   DASHBOARD GRID
========================================= */

.store-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.store-dashboard-card {
    background: white;
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.store-dashboard-card:hover {
    transform: translateY(-5px);
}

.store-dashboard-card span {
    font-size: 38px;
}

.store-dashboard-card h3 {
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #062f1b;
}

.store-dashboard-card p {
    color: #666;
    line-height: 1.6;
}

.buildframe-store-card {
    background: linear-gradient(135deg,
            #062f1b,
            #0d7a3d);
    color: white;
}

.buildframe-store-card h3,
.buildframe-store-card p {
    color: white;
}

/* =========================================
   FOOTER
========================================= */

.store-app-footer {
    margin-top: 50px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.store-app-footer a {
    color: #0d7a3d;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 600;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .store-app-layout {
        flex-direction: column;
    }

    .store-sidebar {
        width: 100%;
    }

    .store-main-content {
        padding: 20px;
    }

    .store-topbar {
        flex-direction: column;
    }

}

/* FINAL LOGO FIX */
.store-branding img {
    width: 95px !important;
    height: 95px !important;
    max-width: 95px !important;
    object-fit: contain !important;
    background: #ffffff;
    border-radius: 18px;
    padding: 10px;
}

.store-soft-promo {
    margin-top: 30px;
}

.soft-promo-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.soft-promo-card h3 {
    margin-bottom: 8px;
    color: #005f2f;
}

.soft-promo-card p {
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .soft-promo-card {
        flex-direction: column;
        align-items: flex-start;
    }

}