/* ========================================
   PRINTIGLY MOCKUP HOMEPAGE STYLES
   Elementor-compatible custom styles
   ======================================== */

/* ========================================
   ELEMENTOR COMPATIBILITY WRAPPER
   ======================================== */
.elementor-element {
    --flex-wrap: wrap;
    --gap: 20px;
}

.elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.elementor-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.elementor-column {
    flex: 1;
    padding: 0 10px;
    min-width: 0;
}

.elementor-column-20 { width: 20%; }
.elementor-column-25 { width: 25%; }
.elementor-column-33 { width: 33.333%; }
.elementor-column-50 { width: 50%; }
.elementor-column-66 { width: 66.666%; }
.elementor-column-75 { width: 75%; }
.elementor-column-100 { width: 100%; }

@media (max-width: 1024px) {
    .elementor-tablet-column-20 { width: 20%; }
    .elementor-tablet-column-25 { width: 25%; }
    .elementor-tablet-column-33 { width: 33.333%; }
    .elementor-tablet-column-50 { width: 50%; }
    .elementor-tablet-column-66 { width: 66.666%; }
    .elementor-tablet-column-75 { width: 75%; }
    .elementor-tablet-column-100 { width: 100%; }
}

@media (max-width: 767px) {
    .elementor-mobile-column-20 { width: 20%; }
    .elementor-mobile-column-25 { width: 25%; }
    .elementor-mobile-column-33 { width: 33.333%; }
    .elementor-mobile-column-50 { width: 50%; }
    .elementor-mobile-column-66 { width: 66.666%; }
    .elementor-mobile-column-75 { width: 75%; }
    .elementor-mobile-column-100 { width: 100%; }
}

.elementor-widget {
    position: relative;
}

.elementor-widget:not(:last-child) {
    margin-bottom: var(--spacing);
}

/* ========================================
   RESET & BASE
   ======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========================================
   1. ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
    background: #1a1a2e;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 9px 40px;
    position: relative;
    z-index: 10001;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}
.announcement-bar span { color: #FCD153; font-weight: 700; }
.announcement-bar .bar-divider { margin: 0 12px; opacity: 0.4; }
.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}
.announcement-close:hover { color: #fff; }
.announcement-bar.hidden { display: none; }

/* ========================================
   2. STICKY NAVIGATION
   ======================================== */
.navbar {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.nav-logo .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #FF6B35;
    border-radius: 50%;
    margin-left: 2px;
    vertical-align: super;
    position: relative;
    top: -2px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: #54595F;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover { color: #FF6B35; }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s;
    border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #54595F;
    font-size: 18px;
    padding: 6px;
    transition: color 0.2s;
    position: relative;
}
.nav-icon-btn:hover { color: #FF6B35; }
.cart-badge {
    position: absolute;
    top: -2px;
    right: -6px;
    background: #E94536;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-get-quote {
    background: #FF6B35;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Mulish', sans-serif;
}
.btn-get-quote:hover { background: #e55a2b; transform: translateY(-1px); }

/* ========================================
   3. HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0a0a0a 100%);
    padding: 20px 40px 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(255,107,53,0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,107,53,0.05) 0%, transparent 50%);
    z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text { text-align: left; }
.hero-label {
    display: inline-block;
    background: rgba(255,107,53,0.15);
    color: #FF6B35;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.hero h1 {
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.15;
}
.hero h1 span { color: #FF6B35; }
.hero .hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 0 36px;
    line-height: 1.7;
}

/* Hero Search Bar */
.hero-search {
    max-width: 520px;
    margin: 0 0 40px;
    display: flex;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 60px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-search:focus-within {
    border-color: rgba(255,107,53,0.5);
    box-shadow: 0 0 30px rgba(255,107,53,0.15);
}
.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 24px;
    font-size: 15px;
    font-family: 'Mulish', sans-serif;
    color: #fff;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.4); }
.hero-search button {
    background: #FF6B35;
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 14px;
}
.hero-search button:hover { background: #e55a2b; }

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

/* Hero Image / Product Showcase */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 480px;
}
.hero-product-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform 0.3s, background 0.3s;
}
.hero-product-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}
.hero-product-card.featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255,107,53,0.12);
    border-color: rgba(255,107,53,0.25);
}
.hero-product-emoji {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}
.hero-product-card.featured .hero-product-emoji { font-size: 64px; margin-bottom: 16px; }
.hero-product-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}
.hero-product-card.featured .hero-product-name { font-size: 16px; }
.hero-product-price {
    color: #FF6B35;
    font-size: 13px;
    font-weight: 700;
}
.hero-product-card.featured .hero-product-price { font-size: 15px; }

/* Target featured card with image only */
.hero-product-card.featured img {
    width: 100%;
    max-width: 180px;
    height: auto;
}

/* Target specific product card by URL - Custom Bookmarks - 2x width */
.hero-product-card[href*="custom-bookmarks"] {
    grid-column: span 2;
    grid-row: span 1;
}

.hero-product-card[href*="custom-bookmarks"] img {
    width: 100%;
    height: 140px;
    max-width: 100%;
    object-fit: cover;
}

/* Reduce gap at top of hero visual */
.hero-visual {
    padding-top: 10px;
}
.hero-product-tag {
    display: inline-block;
    background: #FF6B35;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Floating accent elements around product grid */
.hero-float {
    position: absolute;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: heroFloat 3s ease-in-out infinite;
    z-index: 2;
    white-space: nowrap;
}
.hero-float-1 {
    background: rgba(20,143,208,0.85);
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}
.hero-float-2 {
    background: rgba(233,69,54,0.85);
    bottom: 15%;
    left: -15px;
    animation-delay: 1.5s;
}
.hero-float-3 {
    background: rgba(252,209,83,0.9);
    color: #1a1a2e;
    bottom: 5%;
    right: 5%;
    animation-delay: 0.8s;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 700;
}
.hero-badge .badge-emoji { font-size: 16px; }

/* ========================================
   SHARED SECTION STYLES
   ======================================== */
.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;
}

/* ========================================
   4. PRODUCT CATEGORIES GRID
   ======================================== */
.categories-section {
    padding: 80px 40px;
    background: #f8f9fa;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.category-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
    cursor: pointer;
    position: relative;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}
.category-card.border-orange { border-top-color: #FF6B35; }
.category-card.border-blue { border-top-color: #148FD0; }
.category-card.border-red { border-top-color: #E94536; }
.category-card.border-yellow { border-top-color: #FCD153; }
.category-card:hover.border-orange { border-top-width: 5px; }
.category-card:hover.border-blue { border-top-width: 5px; }
.category-card:hover.border-red { border-top-width: 5px; }
.category-card:hover.border-yellow { border-top-width: 5px; }
.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}
.category-icon.orange { background: rgba(255,107,53,0.12); color: #FF6B35; }
.category-icon.blue { background: rgba(20,143,208,0.12); color: #148FD0; }
.category-icon.red { background: rgba(233,69,54,0.12); color: #E94536; }
.category-icon.yellow { background: rgba(252,209,83,0.18); color: #b89a2a; }
.category-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.category-card .cat-price {
    font-size: 14px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 8px;
}
.category-card .cat-arrow {
    font-size: 13px;
    color: #148FD0;
    font-weight: 600;
    transition: color 0.2s;
}
.category-card:hover .cat-arrow { color: #FF6B35; }
.view-all-link {
    text-align: center;
    margin-top: 40px;
}
.view-all-link a {
    font-size: 16px;
    font-weight: 700;
    color: #FF6B35;
    transition: color 0.2s;
}
.view-all-link a:hover { color: #e55a2b; }

/* ========================================
   5. TRUST SIGNALS
   ======================================== */
.trust-section {
    padding: 80px 40px;
    background: #fff;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.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;
}
.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: #1a1a2e;
    margin-bottom: 6px;
}
.trust-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   6. BEST SELLERS
   ======================================== */
.bestsellers-section {
    padding: 80px 40px;
    background: #f8f9fa;
}
.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.bestseller-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.bestseller-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}
.bestseller-img {
    height: 250px;
    background: #eef0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}
.bestseller-info {
    padding: 20px;
    text-align: center;
}
.bestseller-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.bestseller-info .bs-price {
    font-size: 16px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 10px;
}
.bestseller-info .bs-link {
    font-size: 13px;
    font-weight: 700;
    color: #148FD0;
    transition: color 0.2s;
}
.bestseller-info .bs-link:hover { color: #FF6B35; }

/* ========================================
   7. HOW IT WORKS
   ======================================== */
.how-section {
    padding: 80px 40px;
    background: #fff;
}
.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;
}
.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;
}
.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;
}
.how-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}
.how-icon.orange { background: linear-gradient(135deg, #FF6B35, #e55a2b); color: #fff; }
.how-icon.blue { background: linear-gradient(135deg, #148FD0, #0a6fa0); color: #fff; }
.how-icon.green { background: linear-gradient(135deg, #30AD6E, #27905c); color: #fff; }
.how-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.how-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   8. DESIGN SUPPORT CTA
   ======================================== */
.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%;
}
.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: 'Mulish', sans-serif;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.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: 'Mulish', sans-serif;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* 9. TESTIMONIAL — styles moved to homepage.css */

/* ========================================
   10. CORPORATE / BULK CTA
   ======================================== */
.bulk-cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, #148FD0 0%, #0a6fa0 100%);
    text-align: center;
    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%;
}
.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;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.bulk-pill {
    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 {
    background: linear-gradient(135deg, #FCD153, #FF6B35);
    color: #1a1a2e;
    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: 'Mulish', sans-serif;
}
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(252,209,83,0.4); }

/* ========================================
   11. FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 40px;
    background: #fff;
}
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: #FF6B35; }
.faq-question i {
    font-size: 14px;
    color: #FF6B35;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding-bottom: 22px;
}

/* ========================================
   12. PAYMENT TRUST BAR + SEO
   ======================================== */
.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;
}

/* ========================================
   13. FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 10000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37,211,102,0.5);
}
@keyframes waPulse {
    0% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 25px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.12); }
    100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
}

/* ========================================
   RESPONSIVE — 1024px
   ======================================== */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .bestsellers-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; }
    .nav-links { gap: 24px; }
}

/* ========================================
   RESPONSIVE — 768px
   ======================================== */
@media (max-width: 768px) {
    .announcement-bar { font-size: 12px; padding: 9px 36px 9px 16px; }
    .navbar-inner { height: 60px; }
    .nav-links { display: none; }
    .hero { padding: 40px 20px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-text { text-align: center; }
    .hero h1 { font-size: 36px; }
    .hero .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; }
    .categories-section,
    .trust-section,
    .bestsellers-section,
    .how-section,
    .faq-section,
    .payment-bar { padding: 60px 20px; }
    .section-title { font-size: 28px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .category-card { padding: 22px 14px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bestsellers-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; }
}

/* ========================================
   RESPONSIVE — 480px
   ======================================== */
@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero .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; }
    .section-title { font-size: 24px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .category-card { padding: 18px 12px; }
    .category-icon { width: 48px; height: 48px; font-size: 18px; }
    .category-card h3 { font-size: 13px; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .trust-card { padding: 24px 16px; }
    .bestsellers-grid { grid-template-columns: 1fr; }
    .bestseller-img { height: 200px; }
    .hero-badges { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .bulk-pills { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .payment-methods { gap: 10px; }
    .payment-method { font-size: 12px; padding: 6px 12px; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
}

/* ===== MOBILE BOTTOM NAV ===== */
/* Note: Mobile bottom nav styles are now in main.css */
/* This section is kept for reference but disabled */
/*
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: #6c757d;
    font-size: 0.65rem;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
    transition: color 0.2s;
    padding: 4px 12px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav a i {
    font-size: 1.15rem;
}

.mobile-bottom-nav a.active {
    color: #FF6B35;
}

.mobile-bottom-nav a.whatsapp-btn {
    color: #25D366;
}

.mobile-bottom-nav a:active {
    transform: scale(0.92);
}
*/

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}
