/**
 * Printigly Homepage Styles
 * Matches the approved mockup-homepage.html design
 *
 * Sections:
 *  1. Hero (dark gradient, glassmorphism)
 *  2. Categories (colored borders, icon circles)
 *  3. Trust Signals (colored icon circles)
 *  4. Best Sellers (product cards)
 *  5. How It Works (big step numbers, gradient icons)
 *  6. Design CTA (orange gradient)
 *  7. Testimonial (quote mark, left border)
 *  8. Bulk / Corporate CTA (blue gradient, pill badges)
 *  9. FAQ (button accordion)
 * 10. Payment Trust (pill tags)
 * 11. SEO Content
 */

/* ========================================
   SECTION HEADERS & DIVIDERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 16px;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--printigly-primary);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 16px;
    font-size: 16px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #FF6B35;
    margin: 0 auto 50px;
    border-radius: 2px;
}


/* ========================================
   1. HERO SECTION
   Blue gradient, glassmorphism search, badges
   ======================================== */
.hero {
    background: linear-gradient(145deg, #0f1b4c 0%, #1a3a8f 50%, #2563eb 100%) !important;
    padding: 20px 40px 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative radial glows */
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

/* Layout */
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Left column */
.hero-text {
    text-align: left;
}

/* Label pill */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-label i {
    color: #FF6B35;
    font-size: 13px;
}

/* Heading */
.hero h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: #FF6B35;
}

/* Subtitle */
.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.hero-btn-whatsapp {
    background: #25D366;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

.hero-btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
    color: #fff;
}

.hero-btn-whatsapp i {
    font-size: 20px;
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
    color: #fff;
}

/* Glassmorphism search bar */
.hero-search {
    display: flex;
    max-width: 460px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 60px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: border-color 0.3s, box-shadow 0.3s;
    margin-bottom: 24px;
}

.hero-search:focus-within {
    border-color: rgba(255,107,53,0.4);
    box-shadow: 0 0 20px rgba(255,107,53,0.1);
}

.hero-search input {
    flex: 1;
    padding: 13px 22px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: 'Mulish', sans-serif;
    color: #fff;
    outline: none;
}

.hero-search input::placeholder {
    color: rgba(255,255,255,0.4);
}

.hero-search button {
    padding: 13px 22px;
    background: #FF6B35;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Mulish', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
    white-space: nowrap;
}

.hero-search button:hover {
    background: #e55a28;
}

/* Trust badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.06);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-badge i {
    font-size: 14px;
}

.hero-badge-star, i.hero-badge-star { color: #FCD153; }
.hero-badge-check, i.hero-badge-check { color: #34d399; }
.hero-badge-truck, i.hero-badge-truck { color: #60a5fa; }
.hero-badge-design, i.hero-badge-design { color: #FF6B35; }

/* Hero visual / product showcase */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Product grid — 2x2 bento */
.hero-product-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    width: 100%;
    max-width: 480px;
}

.hero-product-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    display: block;
}

.hero-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* Featured card — spans 2 rows */
.hero-product-card.featured {
    grid-row: span 2;
    aspect-ratio: auto;
    background: rgba(255,107,53,0.08);
    border-color: rgba(255,107,53,0.15);
}

.hero-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Best Seller / product tag */
.hero-product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF6B35;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Emoji fallback */
.hero-product-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 48px;
}

/* Floating badges */
.hero-float {
    position: absolute;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    animation: heroFloat 3s ease-in-out infinite;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hero-float-1 {
    background: rgba(20,143,208,0.9);
    top: 5%;
    right: -8px;
}

.hero-float-2 {
    background: rgba(255,107,53,0.9);
    bottom: 22%;
    left: -12px;
    animation-delay: 1.2s;
}

.hero-float-3 {
    background: rgba(37,211,102,0.9);
    bottom: 3%;
    right: 8%;
    animation-delay: 0.6s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========================================
   STATS BAR (below hero)
   White card, negative margin overlap
   ======================================== */
.hero-stats-bar {
    padding: 0 40px;
    position: relative;
    z-index: 2;
    background: transparent;
}

.hero-stats-inner {
    max-width: 1100px;
    margin: -35px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hero-stat {
    padding: 30px 24px;
    text-align: center;
    border-right: 1px solid #f0f2f5;
    transition: background 0.2s;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat:hover {
    background: #f8faff;
}

.hero-stat-number {
    font-size: 30px;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-plus {
    color: #FF6B35;
}

.hero-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
}


/* ========================================
   2. CATEGORIES
   Colored top borders, icon circles
   ======================================== */
.categories-section {
    padding: 80px 40px;
    background: #f8f9fa;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* Full-bleed image */
.category-card .category-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e0d8, #c4d4e0);
}

.category-card .category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-thumb img {
    transform: scale(1.08);
}

/* Fallback icon when no image */
.category-thumb .category-icon-fallback {
    font-size: 48px;
    color: #fff;
    opacity: 0.5;
    z-index: 1;
}

/* Bottom bar for category name */
.category-card .category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: rgba(255,255,255,0.30);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 20px rgba(255,255,255,0.15);
    border-top: 1px solid rgba(255,255,255,0.25);
    z-index: 2;
}

.category-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--printigly-cat-bar-text, #ffffff);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.view-all-link {
    text-align: center;
    margin-top: 40px;
}

.view-all-link a {
    font-size: 16px;
    font-weight: 700;
    color: var(--printigly-primary);
    transition: color 0.2s;
}

.view-all-link a:hover {
    color: #e55a2b;
}


/* ========================================
   3. TRUST SIGNALS
   Colored icon circles, 3x2 grid
   ======================================== */
.trust-section {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
    width: 100%;
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}

/* Icon color variants */
.trust-icon.orange { background: rgba(255,107,53,0.12); color: #FF6B35; }
.trust-icon.yellow { background: rgba(252,209,83,0.18); color: #b89a2a; }
.trust-icon.blue   { background: rgba(20,143,208,0.12); color: #148FD0; }
.trust-icon.red    { background: rgba(233,69,54,0.12);  color: #E94536; }

.trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.trust-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}


/* ========================================
   4. BEST SELLERS
   Product cards with sale badges
   ======================================== */
.bestsellers-section {
    padding: 80px 40px;
    background: #f8f9fa;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.product-card__link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    color: var(--text-dark);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    background: #eef0f3;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--printigly-red, #E94536);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-card__info {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card__name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__price {
    font-size: 16px;
    font-weight: 800;
    color: var(--printigly-primary);
    margin-bottom: 10px;
}

.product-card__price del {
    color: #999;
    font-weight: 400;
    font-size: 13px;
}

.product-card__price ins {
    text-decoration: none;
}

.product-card__atc {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
    border-top: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0 0 16px 16px;
    margin-top: auto;
}

.product-card__atc:hover {
    background: var(--printigly-primary);
    color: #fff;
}


/* ========================================
   5. HOW IT WORKS
   Big faded step numbers, gradient icons
   ======================================== */
.how-section {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.how-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.how-step {
    flex: 1;
    text-align: center;
    padding: 0 28px;
    position: relative;
}

/* Dashed connector lines between steps */
.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: 0;
    width: calc(100% - 100px);
    height: 2px;
    border-top: 3px dashed rgba(255,107,53,0.3);
    transform: translateX(50%);
    z-index: 0;
}

/* Big faded step number */
.step-big-num {
    font-size: 72px;
    font-weight: 800;
    color: rgba(26,26,46,0.06);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

/* Gradient icon circles */
.how-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.how-icon.orange { background: linear-gradient(135deg, #FF6B35, #e55a2b); box-shadow: 0 6px 25px rgba(255,107,53,0.3); }
.how-icon.blue   { background: linear-gradient(135deg, #148FD0, #0a6fa0); box-shadow: 0 6px 25px rgba(20,143,208,0.3); }
.how-icon.green  { background: linear-gradient(135deg, #30AD6E, #27905c); box-shadow: 0 6px 25px rgba(48,173,110,0.3); }

.how-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.how-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* ========================================
   6. DESIGN SUPPORT CTA
   Orange-to-red gradient
   ======================================== */
.design-cta {
    padding: 70px 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #E94536 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.design-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.design-cta > * {
    position: relative;
    z-index: 1;
}

.design-cta .cta-icon {
    font-size: 48px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.design-cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.design-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    font-family: var(--printigly-font);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: #fff;
    color: #1a1a2e;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    font-family: var(--printigly-font);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}


/* ========================================
   7. TESTIMONIAL — Google Reviews Carousel
   ======================================== */
.testimonial-section {
    padding: 80px 40px;
    background: #f8f9fa;
    width: 100%;
    overflow: hidden;
}

.testimonial-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-white, #fff);
    border-radius: 16px;
    padding: 24px 20px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.testimonial-card-stars {
    color: #FBBC05;
    font-size: 14px;
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-card-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
}

.testimonial-author-service {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}


/* ========================================
   8. BULK / CORPORATE CTA
   Blue gradient, pill badges, yellow button
   ======================================== */
.bulk-cta {
    background: linear-gradient(135deg, #148FD0 0%, #0a6fa0 100%);
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bulk-cta::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.bulk-cta > * {
    position: relative;
    z-index: 1;
}

.bulk-cta h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.bulk-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.bulk-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.bulk-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FCD153, #FF6B35);
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    font-family: var(--printigly-font);
    text-decoration: none;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(252,209,83,0.4);
    color: var(--text-dark);
}


/* ========================================
   9. FAQ SECTION
   Button-based accordion
   ======================================== */
.faq-section {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 22px 0;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-dark);
    transition: color 0.2s;
    font-family: var(--printigly-font);
    text-align: left;
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--printigly-primary);
}

.faq-question i {
    transition: transform 0.3s;
    font-size: 14px;
    color: var(--printigly-primary);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}


/* ========================================
   10. PAYMENT TRUST BAR + SEO BLOCK
   ======================================== */
.payment-bar {
    padding: 40px 40px 30px;
    background: #fff;
    border-top: 1px solid #eee;
    text-align: center;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.payment-method {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-method i {
    font-size: 16px;
}

.payment-method.secure {
    color: #30AD6E;
    background: rgba(48,173,110,0.08);
}

.seo-block {
    max-width: 800px;
    margin: 0 auto;
}

.seo-block p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
}


/* ========================================
   11. SEO CONTENT (legacy, now inside payment-bar)
   ======================================== */


/* ========================================
   ALL BUTTONS -- Pill shape override
   ======================================== */
.hero .btn,
.categories-section .btn,
.bestsellers-section .btn,
.how-section .btn,
.faq-section .btn,
.section-cta .btn {
    border-radius: 50px;
}

.section-cta .btn-outline {
    border-radius: 50px;
}


/* ========================================
   RESPONSIVE -- 1024px
   ======================================== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-inner {
        gap: 40px;
    }

    .hero-product-grid {
        max-width: 380px;
        gap: 12px;
    }

    .hero-product-card {
        padding: 16px;
    }

    .hero-product-emoji {
        font-size: 36px;
    }

    .hero-product-card.featured .hero-product-emoji {
        font-size: 48px;
    }
}

/* ========================================
   RESPONSIVE -- 768px
   ======================================== */
@media (max-width: 768px) {
    .hero {
        padding: 20px 20px 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin: 0 auto 30px;
    }

    .hero-search {
        margin: 0 auto 36px;
        flex-direction: column;
        border-radius: 16px;
    }

    .hero-search input {
        padding: 16px 20px;
    }

    .hero-search button {
        justify-content: center;
        border-radius: 0 0 16px 16px;
        padding: 14px;
    }

    .hero-badges {
        justify-content: center;
        gap: 10px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-product-grid {
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-float {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .categories-section,
    .trust-section,
    .bestsellers-section,
    .how-section,
    .faq-section,
    .testimonial-section {
        padding: 60px 20px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-card {
        padding: 24px 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .how-grid {
        flex-direction: column;
        gap: 40px;
    }

    .how-step:not(:last-child)::after {
        display: none;
    }

    .design-cta,
    .bulk-cta {
        padding: 60px 20px;
    }

    .design-cta h2 {
        font-size: 26px;
    }

    .bulk-cta h2 {
        font-size: 28px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .testimonial-card {
        padding: 18px 16px;
    }

    .testimonial-card-text {
        font-size: 12.5px;
        -webkit-line-clamp: 3;
    }

    .faq-question {
        padding: 18px 0;
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .bulk-pills {
        gap: 10px;
    }

    .bulk-pill {
        font-size: 12px;
        padding: 7px 16px;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-method {
        font-size: 12px;
        padding: 6px 12px;
    }

    .payment-bar {
        padding: 30px 20px 20px;
    }
}

/* ========================================
   RESPONSIVE -- 480px
   ======================================== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-product-card {
        padding: 14px 10px;
    }

    .hero-product-emoji {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .hero-product-card.featured .hero-product-emoji {
        font-size: 40px;
    }

    .hero-product-name {
        font-size: 12px;
    }

    .hero-product-price {
        font-size: 11px;
    }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card .category-info {
        padding: 14px;
    }

    .category-card h3 {
        font-size: 0.85rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-card {
        padding: 24px 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card__image img {
        height: 200px;
    }

    .step-big-num {
        font-size: 56px;
    }

    .bulk-pills {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-white,
    .btn-outline-white,
    .btn-yellow {
        width: 100%;
        justify-content: center;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-method {
        font-size: 12px;
        padding: 6px 12px;
    }

    .testimonial-section {
        padding: 40px 12px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .testimonial-card {
        padding: 14px 12px;
    }

    .testimonial-card-text {
        font-size: 11.5px;
        -webkit-line-clamp: 3;
    }

    .testimonial-card-stars {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .testimonial-avatar {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .testimonial-author-name {
        font-size: 11px;
    }

    .testimonial-author-service {
        font-size: 10px;
    }

    .testimonial-google-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* ========================================
   HERO CONSOLIDATED PATCH — single source
   ======================================== */

/* Hero size */
.hero {
    padding: 20px 40px 40px !important;
}

.hero-inner {
    gap: 40px !important;
}

/* Tighter spacing */
.hero-label { margin-bottom: 16px !important; }
.hero h1 { margin-bottom: 14px !important; }
.hero-subtitle { margin-bottom: 24px !important; }
.hero-actions { margin-bottom: 16px !important; }
.hero-search { margin-bottom: 16px !important; }

/* Trust badges — plain text, no pills */
.hero .hero-badges .hero-badge {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* --- PRODUCT GRID --- */
.hero-product-grid {
    max-width: 440px !important;
    gap: 10px !important;
    overflow: hidden !important;
}

/* All cards base */
.hero-product-card {
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-style: solid !important;
}

.hero-product-card img {
    border: none !important;
    outline: none !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Featured card — spans 2 rows, max 340px */
.hero-product-card.featured {
    grid-row: span 2;
    aspect-ratio: auto !important;
    max-height: 340px !important;
}

/* Small cards — square, max 160px */
.hero-product-card:not(.featured):not(.wide) {
    aspect-ratio: 1 / 1 !important;
    max-height: 160px !important;
}

/* Wide card — spans 2 cols, short */
.hero-product-card.wide {
    grid-column: span 2 !important;
    aspect-ratio: auto !important;
    max-height: 110px !important;
    max-width: 100% !important;
}

.hero-product-card.wide img {
    height: 110px !important;
    object-fit: cover !important;
}

/* --- CARD OVERLAY --- */
.hero-card-info {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 10px 12px !important;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%) !important;
    z-index: 2 !important;
}

.hero-card-name {
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 2px !important;
}

.hero-card-price {
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #FF6B35 !important;
}

.hero-card-price del { display: none !important; }
.hero-card-price ins { text-decoration: none !important; }

/* --- STATS BAR ICONS --- */
.hero-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
}

.hero-stat-icon.blue   { background: rgba(37,99,235,0.1);  color: #2563eb; }
.hero-stat-icon.green  { background: rgba(34,197,94,0.1);  color: #22c55e; }
.hero-stat-icon.orange { background: rgba(255,107,53,0.1); color: #FF6B35; }
.hero-stat-icon.gold   { background: rgba(252,209,83,0.15); color: #d4a017; }

/* --- FLOATING BADGES --- */
.hero-float-2 { bottom: 28% !important; left: -16px !important; }
.hero-float-3 { bottom: 0% !important; right: 5% !important; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero { padding: 20px 30px 40px !important; }
    .hero-product-grid { max-width: 360px !important; }
    .hero-product-card.featured { max-height: 300px !important; }
    .hero-product-card:not(.featured):not(.wide) { max-height: 140px !important; }
}

@media (max-width: 768px) {
    .hero { padding: 20px 20px 36px !important; }
    .hero-product-card.featured { max-height: 260px !important; }
    .hero-product-card:not(.featured):not(.wide) { max-height: 120px !important; }
    .hero-product-card.wide { max-height: 90px !important; }
    .hero-product-card.wide img { height: 90px !important; }
    .hero-stat-icon { width: 36px; height: 36px; font-size: 16px; margin-bottom: 8px; }
}

@media (max-width: 480px) {
    .hero { padding: 20px 16px 30px !important; }
    .hero-stat-icon { display: none; }
    .hero-product-card.wide { max-height: 80px !important; }
    .hero-product-card.wide img { height: 80px !important; }
}


/* --- Badges: 1 row desktop, 2 rows mobile --- */
.hero-badges {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
}

@media (max-width: 768px) {
    .hero-badges {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }
}

/* --- Force badges single row desktop --- */
.hero .hero-badges {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    white-space: nowrap !important;
}

.hero .hero-badges .hero-badge {
    font-size: 12px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

@media (max-width: 768px) {
    .hero .hero-badges {
        flex-wrap: wrap !important;
        white-space: normal !important;
        justify-content: center !important;
    }
}

/* --- Minimal top padding --- */
.hero {
    padding-top: 20px !important;
}
