/*
Theme Name: Yes Global Kenya Two
Author: Antigravity
Version: 2.5.0 - No Blue
*/

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors - Green & Gold Only */
    --primary: #558b2f;  /* Deep Growth Green */
    --primary-light: #8bc34a;
    --primary-gradient: linear-gradient(135deg, #8bc34a 0%, #33691e 100%);
    
    --secondary: #4b5563; /* Slate Grey (Neutral) - Was Blue */
    --secondary-gradient: linear-gradient(135deg, #9ca3af 0%, #374151 100%);
    
    --accent: #ffca28; /* Success Gold */

    /* Neutrals */
    --dark: #111827; 
    --text: #374151; 
    --light: #F9FAFB; 
    --white: #ffffff;
    
    /* Bootstrap Overrides */
    --bs-primary: #558b2f;
    --bs-secondary: #4b5563; 
    --bs-link-color: #558b2f;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Elevations */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    
    /* UI Properties */
    --border-radius: 16px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Global Reset & Typography === */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--text);
    line-height: 1.75;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 1rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1.5rem; }

/* === Spacing Utilities === */
.section-padding { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 992px) {
    .section-padding { padding-top: 7rem; padding-bottom: 7rem; }
}

/* === Header === */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--text) !important;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

/* === Hero Section === */
.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem); 
    line-height: 1.15;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.2em;
    font-weight: 700;
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.6;
}

/* === Cards === */
.md-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--transition);
    height: 100%;
    overflow: hidden;
}

.md-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(85, 139, 47, 0.1);
}

.card-body { padding: 2rem !important; }

/* === Buttons (Compact) === */
.btn {
    padding: 0.6rem 1.75rem; 
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem; 
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #7cb342 0%, #2e7d32 100%);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

/* === Section Dividers === */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* === Footer === */
footer {
    background: var(--dark);
    color: #9ca3af;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

footer h5 { color: var(--white); margin-bottom: 1.5rem; }
footer a { color: #d1d5db; text-decoration: none; }
footer a:hover { color: var(--primary-light); }

/* === Animations === */
@keyframes heroFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float { animation: heroFloat 6s ease-in-out infinite; }
/* ==================================================
   Product Grid/List Toggle Styles (Original Theme)
   ================================================== */

/* List View - Horizontal Layout */
.item.list-group-item {
    float: none;
    width: 48%;
    margin-bottom: 30px;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    max-width: 48%;
    padding: 0;
    border: 0;
    height: 223px;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.5s;
    box-shadow: 0 1px 8px 0 rgb(0 0 0 / 6%);
}

.item.list-group-item .right-list-div {
    padding-left: 20px;
}

.item.list-group-item .left-div-list {
    width: 40%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.item.list-group-item .right-list-div {
    padding-top: 0;
    padding-bottom: 0;
    width: 60%;
}

/* Grid View - Vertical Layout */
.grid-group-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.5s;
}

.grid-group-item .left-div-list,
.grid-group-item .right-list-div {
    width: 100%;
}

.grid-group-item .comon-items-d1 {
    flex-direction: column;
}

/* Product Card Styles */
.comon-items-d1 {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 8px 0 rgb(0 0 0 / 6%);
}

.comon-items-d1 figure {
    height: 184px;
    width: 100%;
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.comon-items-d1 hr {
    background: #bbb;
}

.comon-items-d1 figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all 0.5s;
}

.comon-items-d1:hover figure img {
    transform: scale(1.1);
}

.comon-items-d1 h6 {
    color: #a2be2d;
    font-size: 15px;
    font-weight: 600;
}

.comon-items-d1 .titel-product {
    font-weight: 700;
    font-size: 18px;
    color: #212529;
    text-decoration: none;
    text-overflow: ellipsis;
    width: 100%;
    font-family: 'Red Hat Display', sans-serif;
    text-transform: capitalize;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
}

.comon-items-d1 h2 {
    font-size: 25px;
    color: #a2be2d;
}

.strat-r {
    background: #a2be2d;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    left: 13px;
    top: 10px;
    z-index: 1;
}

.view-products {
    font-weight: 600;
}

.comon-likke,
.share-bn {
    cursor: pointer;
    color: #bbb;
}

.short-link {
    color: #a2be2d !important;
}

.view-products i {
    margin-left: 5px;
}

