/* ============================================
   Kadir & Sons - Home Page Styles
   Brand: Dark #2b2928 + Yellow #fceb04
   Fonts: Barlow Condensed (display) + IBM Plex Sans (body)
   ============================================ */

/* --- Category Icon Strip (below menu, above hero) --- */
.cat-icon-strip {
    background: #fff;
    padding: 18px 0 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: relative;
    z-index: 100;
}
.cat-icon-strip .cat-strip-inner {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
    justify-content: center;
}
.cat-icon-strip .cat-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #334155;
   
    border-radius: 10px;
    transition: all 0.2s;
  
    flex-shrink: 0;
    border: 1px solid transparent;
}
.cat-icon-strip .cat-strip-item:hover {
    border: 1px solid #e5e7eb;
    background: #fafaf9;
}
.cat-icon-strip .cat-strip-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
}
.cat-icon-strip .cat-strip-item span {
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
}

/* --- Hero Banner --- */
.hero-banner {
    background: #2b2928;
    background-image: url(/images/hero.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: stretch;
}
.hero-banner::after {
    display: none;
}
.hero-panel {
    position: relative;
    z-index: 2;
    width: 36%;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    padding: 60px 48px 60px 60px;
}
.hero-banner .hero-content {
    width: 100%;
    text-align: left;
}
.hero-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #fceb04;
    margin-bottom: 18px;
    font-weight: 600;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero-subtitle {
    font-size: 1rem;
    color: #b0b7c3;
    margin: 0 0 32px;
    line-height: 1.7;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.hero-cta {
    display: inline-block;
    background: #fceb04;
    color: #2b2928;
    font-weight: 800;
    padding: 16px 44px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
}
.hero-cta:hover {
    background: #e6d600;
    transform: translateY(-2px);
    color: #2b2928;
}
.hero-cta-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 16px 44px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.hero-cta-outline:hover {
    border-color: #fceb04;
    color: #fceb04;
}

/* --- Category Product Sections --- */
.cat-section {
    padding-top: 50px;
}
.cat-section:nth-child(even) {
   
}
.cat-section:nth-child(last) {
   padding-bottom: 50px;
}
.cat-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.cat-section-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2b2928;
    margin: 0;
    letter-spacing: 0.5px;
    border-left: 5px solid #fceb04;
    padding-left: 14px;
}
.cat-section-header .view-all {
    color: #2b2928;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    background: #fceb04;
    padding: 10px 22px;
    border-radius: 8px;
    transition: background 0.2s;
}
.cat-section-header .view-all:hover {
    background: #e6d600;
}
.cat-product-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 480px) {
    .cat-product-row { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
    .cat-product-row { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
    .cat-product-row { grid-template-columns: repeat(6, 1fr); gap: 18px; }
}
.cat-product-row .product-card {
    min-width: 0;
    max-width: none;
    width: 100%;
}

/* --- Why Choose Us --- */
.why-choose {
    background: #2b2928;
    padding: 80px 0;
    margin-top: 50px;
}
.why-choose .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.why-choose .section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fceb04;
    margin: 0 0 14px;
    letter-spacing: 1px;
}
.why-choose .section-header p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin: 0;
}
.why-card {
    background: #3a3736;
    
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.why-card:hover {
    border-color: #fceb04;
    box-shadow: 0 10px 30px rgba(252,235,4,0.08);
}
.why-card .why-icon {
    width: 64px;
    height: 64px;
    background: rgba(252,235,4,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.why-card .why-icon svg {
    width: 30px;
    height: 30px;
    color: #fceb04;
}
.why-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: 0.5px;
}
.why-card p {
    font-size: 0.95rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.65;
}

/* --- Responsive --- */
@media (min-width: 768px) {
    .hero-panel {
        width: 40%;
        padding: 72px 52px 72px 64px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .cat-icon-strip .cat-strip-item img {
        width: 56px;
        height: 56px;
    }
    .cat-icon-strip .cat-strip-item span {
        font-size: 0.75rem;
    }
}
@media (min-width: 1024px) {
    .hero-banner {
        min-height: 540px;
    }
.hero-panel {
    width: 36%;
    padding: 80px 56px 80px 72px;
    margin-left: 200px;
}
    .hero-title {
        font-size: 2rem;
    }
    .cat-icon-strip .cat-strip-item img {
        width: 60px;
        height: 60px;
    }
    .cat-icon-strip .cat-strip-item span {
        font-size: 0.75rem;
    }
}
@media (max-width: 767px) {
    .hero-banner {
        min-height: 0;
    }
.hero-panel {
    width: 100%;
    min-width: 0;
    padding: 48px 28px;
    background: rgba(0, 0, 0, 0);
}
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-cta, .hero-cta-outline {
        padding: 13px 24px;
        font-size: 0.95rem;
    }
    .cat-icon-strip .cat-strip-inner {
        justify-content: flex-start;
    }
    .cat-icon-strip .cat-strip-item {
        min-width: 68px;
        padding: 6px 8px;
    }
.cat-icon-strip .cat-strip-item img {
    width: 80px;
    height: 80px;
}
    .cat-icon-strip .cat-strip-item span {
        
    }
    .cat-section-header h2 {
        font-size: 1.4rem;
    }
    .why-choose .section-header h2 {
        font-size: 1.75rem;
    }
}
