/* =========================================
   GFT BUSINESS PROFILE PAGE - PREMIUM CSS
   ========================================= */

/* --- GLOBAL PAGE WRAPPER --- */
.gft-page {
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
    color: #334155;
    font-family: 'Open Sans', sans-serif;
}

/* --- BUSINESS HERO (Dark Premium Gradient) --- */
.biz-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.biz-hero-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.biz-hero-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.biz-hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain; /* ENTIRE LOGO VISIBLE */
    background: white;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.biz-hero-text h1 {
    font-size: 2.2rem;
    font-weight: 650;
    margin: 0;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.biz-tagline {
    color: #cbd5e1;
    margin: 6px 0 12px;
    font-size: 1.1rem;
}

.biz-meta {
    display: flex;
    gap: 15px;
}

.biz-meta span {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
}

.biz-meta i {
    color: #22c55e;
    margin-right: 6px;
}

/* --- HERO ACTION BUTTONS --- */
.biz-hero-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #22c55e;
    color: white !important;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1.5px solid #475569;
    color: #f1f5f9 !important;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f1f5f9;
}

/* --- PRODUCT GRID CONTAINER --- */
/* =====================================
   PRODUCT GRID – PREMIUM BALANCED
===================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding: 40px 0;
}

/* --- PRODUCT CARD --- */
.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px -10px rgba(0, 0, 0, 0.15);
    border-color: #bfdbfe;
}

/* --- IMAGE WELL (CLEAN & COMPACT) --- */
.product-card img {
    width: 100%;
    height: 170px;               /* ↓ reduced to avoid tall cards */
    object-fit: contain;
    background: #f8fafc;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 8px;          /* ↓ tighter spacing */
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

/* --- PRODUCT TITLE --- */
.product-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0;                   /* removes ugly bottom gap */
}

/* =====================================
   MOBILE – PREMIUM MARKETPLACE
===================================== */

@media (max-width: 768px) {

    .biz-hero { padding: 40px 20px; } 
    .biz-hero-inner { flex-direction: column; text-align: center; } 
    .biz-hero-left { flex-direction: column; } 
    .biz-hero-actions { width: 100%; justify-content: center; flex-direction: column; }
    .biz-meta{width: 100%; justify-content: center; flex-direction: column;} 
    .btn-primary, .btn-outline { width: 100%; text-align: center; }

    /* 2-column grid = premium feel */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 20px 0;
    }

    .product-card {
        padding: 12px;
        border-radius: 14px;
    }

    .product-card img {
        height: 140px;           /* compact, no stretch */
        padding: 8px;
        margin-bottom: 6px;
    }

    .product-card h3 {
        font-size: 0.9rem;
    }
}

/* MICRO PHONES – SINGLE COLUMN */
@media (max-width: 360px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
