/* =============================================
   Amfez — SEO Landing Pages Stylesheet
   All SEO landing pages share this file.
   Add new page-specific styles here with comments.
   ============================================= */


/* ---------------------------------------------
   SHARED: Product Grid (all SEO pages)
   Used by: #seo-product-grid
--------------------------------------------- */

/* ---------------------------------------------
   SHARED: Image Gallery Grid
--------------------------------------------- */
.seo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.seo-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
    background: #f9f3ec;
}
.seo-gallery-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: #f9f3ec;
}
.seo-gallery-item:hover .seo-gallery-img {
    transform: scale(1.06);
}
.seo-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(232, 105, 12, 0.85);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 6px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.seo-gallery-item:hover .seo-gallery-overlay {
    transform: translateY(0);
}

/* Tablet: 4 per row */
@media (max-width: 991px) {
    .seo-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile: 2 per row */
@media (max-width: 575px) {
    .seo-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-gallery-img { height: 130px; }
}


/* ---------------------------------------------
   SHARED: Hero Banner
--------------------------------------------- */
.seo-hero-banner {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 60%, #ffd4a0 100%);
    border-bottom: 1px solid #f5dbb8;
    padding: 40px 0 36px;
}
.seo-hero-inner { max-width: 700px; margin: 0 auto; padding: 0 15px; }
.seo-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #c8690c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.seo-hero-title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}
.seo-hero-subtitle {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}
.seo-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.seo-pill {
    background: #fff;
    border: 1px solid #f0c88a;
    color: #c8690c;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}
.seo-pill i { margin-right: 4px; }

/* ---------------------------------------------
   SHARED: Section Headers
--------------------------------------------- */
.seo-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.seo-section-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.seo-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e8690c, #ffa040);
    border-radius: 2px;
    margin: 0 auto 0;
}
.seo-divider-full {
    border: none;
    border-top: 1px solid #f0e0cc;
}

/* ---------------------------------------------
   SHARED: Load More Button
--------------------------------------------- */
.seo-load-more-btn {
    background: #e8690c !important;
    border: 2px solid #e8690c !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 36px;
    border-radius: 25px;
    transition: all 0.2s;
}
.seo-load-more-btn:hover {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* ---------------------------------------------
   SHARED: Feature Cards
--------------------------------------------- */
.seo-feature-card {
    background: #fff;
    border: 1px solid #f0e0cc;
    border-radius: 12px;
    padding: 20px 14px;
    height: 100%;
    transition: box-shadow 0.2s;
}
.seo-feature-card:hover { box-shadow: 0 4px 16px rgba(232,105,12,0.12); }
.seo-feature-icon { font-size: 28px; margin-bottom: 8px; }
.seo-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.seo-feature-desc { font-size: 12px; color: #888; line-height: 1.5; margin: 0; }

/* ---------------------------------------------
   SHARED: Size Guide Card
--------------------------------------------- */
.seo-size-guide-card {
    border: 1px solid #f0c88a;
    border-radius: 12px;
    overflow: hidden;
}
.seo-size-guide-header {
    background: linear-gradient(90deg, #e8690c, #ffa040);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
}
.seo-size-guide-header span { margin-right: 6px; }
.seo-size-table-head th {
    background: #fff8f0;
    font-size: 12px;
    font-weight: 700;
    color: #c8690c;
    border-top: none;
}

/* ---------------------------------------------
   SHARED: Content List
--------------------------------------------- */
.seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.seo-list li {
    font-size: 13px;
    color: #555;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}
.seo-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #e8690c;
    font-size: 9px;
    top: 6px;
}

/* ---------------------------------------------
   SHARED: FAQ
--------------------------------------------- */
.seo-faq { border: none; }
.seo-faq-item {
    border: 1px solid #f0e0cc;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.seo-faq-question {
    width: 100%;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.seo-faq-question:hover { background: #fff8f0; }
.seo-faq-icon { color: #e8690c; font-size: 14px; flex-shrink: 0; }
.seo-faq-answer {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    padding: 0 16px 14px;
    background: #fff;
}

/* ---------------------------------------------
   SHARED: Bottom CTA Banner
--------------------------------------------- */
.seo-cta-banner {
    background: linear-gradient(135deg, #e8690c 0%, #ffa040 100%);
    border-radius: 16px;
    padding: 40px 24px;
}
.seo-cta-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.seo-cta-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}
.seo-cta-btn {
    background: #fff;
    color: #e8690c;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 32px;
    border-radius: 25px;
    border: none;
    transition: all 0.2s;
}
.seo-cta-btn:hover {
    background: #1a1a1a !important;
    color: #fff !important;
    border-color: #1a1a1a !important;
}

/* ---------------------------------------------
   MOBILE RESPONSIVE
--------------------------------------------- */
@media (max-width: 767px) {
    .seo-hero-title { font-size: 22px; }
    .seo-hero-banner { padding: 28px 0 24px; }
    .seo-section-title { font-size: 18px; }
    .seo-cta-title { font-size: 18px; }
    .seo-cta-banner { padding: 28px 16px; }
}

/* ---------------------------------------------
   SHARED: Occasion Cards
--------------------------------------------- */
.seo-occasion-card {
    background: #fff;
    border: 1px solid #f0e0cc;
    border-radius: 12px;
    padding: 18px 10px;
    height: 100%;
    transition: box-shadow 0.2s;
}
.seo-occasion-card:hover { box-shadow: 0 4px 16px rgba(232,105,12,0.12); }
.seo-occasion-icon { font-size: 26px; margin-bottom: 8px; }
.seo-occasion-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.seo-occasion-desc { font-size: 11px; color: #888; line-height: 1.5; margin: 0; }

/* ---------------------------------------------
   SHARED: Delivery Card
--------------------------------------------- */
.seo-delivery-card {
    border: 1px solid #f0c88a;
    border-radius: 12px;
    overflow: hidden;
}
.seo-delivery-header {
    background: #fff8f0;
    border-bottom: 1px solid #f0e0cc;
    font-size: 13px;
    font-weight: 700;
    color: #c8690c;
    padding: 10px 14px;
}
.seo-delivery-body { padding: 12px 14px; }
.seo-city-tag {
    display: inline-block;
    background: #fff;
    border: 1px solid #f0d8b0;
    color: #555;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 12px;
    margin: 3px 2px;
}

/* ---------------------------------------------
   PAGE: /laddu-gopal-poshak
--------------------------------------------- */



/* ---------------------------------------------
   Add new SEO page styles below with page name
--------------------------------------------- */
