/* ===================================
   GUIITMARKET - Brand Pages Common
   Applies to: all brand pages (saguaro.html, temu.html, etc.)
   Load order: styles.css → brands.css → [brand].css
   =================================== */

/* ── Hero ── */
.brand-hero {
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2.5rem;
}

.brand-hero-logo {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.hero-brand-image {
    width: 100%;
    height: auto;
}

.brand-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-promo {
    display: inline-block;
    background: white;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s ease;
    text-decoration: none;
}

.hero-promo:hover { opacity: 0.9; }

.hero-promo-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

#promo-display {
    word-break: break-all;
    overflow-wrap: break-word;
}

/* ── Navigation ── */
.back-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.15s ease;
}

.back-nav:hover { color: var(--primary-color); }

/* ── Products ── */
.products-section { padding: 1.5rem 0 3rem; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.product-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.product-card:hover { box-shadow: var(--shadow-lg); }

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-content {
    padding: 0.875rem 1rem 1rem;
    background: #f0f2f5;
    border-top: 1px solid var(--border-color);
}

.product-domain {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
}

.product-link:hover { text-decoration: underline; }

/* ── Info Box ── */
.info-box {
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 0 0 2rem;
    background: var(--gray-50);
}

.info-box-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.info-box-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

.info-box-text strong { font-weight: 700; }

/* ── Promo copy button ── */
.promo-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
    padding: 0.2rem 0.6rem;
    background: #f3f4f6;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    vertical-align: middle;
    line-height: 1;
    transition: background 0.15s ease;
}

.promo-copy-btn:hover { background: #e5e7eb; }

/* ── Featured Banner ── */
.featured-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem 3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    color: white;
}

.featured-banner-body { flex: 1; }

.featured-banner-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.65;
    margin-bottom: 0.5rem;
}

.featured-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.featured-banner-desc {
    opacity: 0.85;
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: 560px;
}

.featured-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.featured-banner-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.featured-banner-btn:hover { opacity: 0.88; }

.featured-banner-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* ── Section title ── */
.section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .brand-hero { padding: 2.5rem 0; }
    .products-grid { grid-template-columns: 1fr; }

    .featured-banner {
        flex-direction: column;
        padding: 1.75rem;
        gap: 1.5rem;
    }

    .featured-banner-actions { width: 100%; }
    .featured-banner-btn { width: 100%; }
}
