/* =====================================================
   IST SunPower System — Frontend Stylesheet
   Green Solar Theme | CodeIgniter 3
   ===================================================== */

/* ── Google Fonts loaded in header.php ── */
:root {
    --green:        #2e7d32;
    --green-dark:   #1b5e20;
    --green-light:  #4caf50;
    --green-pale:   #e8f5e9;
    --accent:       #f9a825;   /* amber sun accent */
    --accent-dark:  #f57f17;
    --text:         #212121;
    --text-muted:   #616161;
    --border:       #e0e0e0;
    --white:        #ffffff;
    --bg-light:     #f5f5f5;
    --shadow:       0 4px 20px rgba(0,0,0,.10);
    --shadow-lg:    0 8px 40px rgba(0,0,0,.15);
    --radius:       8px;
    --radius-lg:    16px;
    --transition:   .3s ease;
    --font-head:    'Rajdhani', sans-serif;
    --font-body:    'Hind Siliguri', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: .5px;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,125,50,.35);
}
.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-accent {
    background: var(--accent);
    color: #212121;
    border-color: var(--accent);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 8px 18px; font-size: .875rem; }

/* ── Section Styles ── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header .subtitle {
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-header .divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--accent));
    border-radius: 2px;
    margin: 16px auto 0;
}
.section-dark .section-header .subtitle { color: var(--accent); }
.section-dark .section-header p { color: rgba(255,255,255,.75); }

/* ── Topbar ── */
.topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,.85);
    font-size: .8125rem;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ── Navbar ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,.10);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,.15); }
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
}
.navbar-brand .brand-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}
.brand-text span { color: var(--accent); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu a {
    padding: 8px 14px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .9375rem;
    color: var(--text);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--green);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--green);
    background: var(--green-pale);
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu .btn { margin-left: 8px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Slider ── */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--green-dark);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    background-size: cover;
    background-position: center;
}
.slide.active { opacity: 1; position: relative; }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,94,32,.85) 0%, rgba(0,0,0,.45) 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 560px;
    padding: 80px 0;
}
.slide-inner { max-width: 640px; color: var(--white); }
.slide-inner .badge {
    display: inline-block;
    background: rgba(249,168,37,.25);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.slide-inner h1 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.slide-inner p { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 30px; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.slider-dot.active {
    background: var(--white);
    width: 28px;
    border-radius: 5px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.4);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--green); border-color: var(--green); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ── Counter Section ── */
.counters { background: var(--green); padding: 50px 0; }
.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.counter-item { color: var(--white); }
.counter-number {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.counter-suffix { font-size: 1.5rem; }
.counter-label {
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    margin-top: 8px;
}

/* ── About Section (Home) ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    height: 420px;
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    width: 110px; height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    box-shadow: var(--shadow);
}
.about-badge .num { font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge .txt { font-size: .6875rem; letter-spacing: .5px; text-align: center; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature .icon {
    width: 40px; height: 40px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.about-feature h4 { margin: 0 0 4px; font-size: 1rem; }
.about-feature p { margin: 0; font-size: .875rem; color: var(--text-muted); }

/* ── Cards ── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-meta {
    font-size: .8125rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-title { font-size: 1.2rem; margin-bottom: 10px; }
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--green); }
.card-text { color: var(--text-muted); font-size: .9375rem; margin-bottom: 16px; }
.card-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    margin-right: 4px;
    margin-bottom: 4px;
}

/* ── Grid Layouts ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ── Why Choose Us ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon {
    width: 70px; height: 70px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 50%;
    font-size: 1.75rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition);
}
.why-card:hover .why-icon { background: var(--green); color: var(--white); }
.why-card h4 { margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ── Featured Badge ── */
.badge-featured {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--accent);
    color: #212121;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}
.card-img { position: relative; }

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '☀';
    position: absolute;
    top: -40px; right: -40px;
    font-size: 200px;
    opacity: .04;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 30px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Page Banner ── */
.page-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1 { color: var(--white); position: relative; z-index: 1; margin-bottom: 12px; }
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: rgba(255,255,255,.7);
    position: relative;
    z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.4); }

/* ── Project / Product Single ── */
.single-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.single-main-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.single-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.single-gallery a img { border-radius: 6px; aspect-ratio: 1; object-fit: cover; }
.single-info .tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.specs-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.specs-table tr:nth-child(even) td { background: var(--bg-light); }
.specs-table td { padding: 10px 14px; border: 1px solid var(--border); font-size: .9375rem; }
.specs-table td:first-child { font-weight: 600; color: var(--green-dark); width: 40%; }

/* ── Sidebar ── */
.sidebar { position: sticky; top: 90px; }
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.sidebar-widget h3 {
    font-size: 1.1rem;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--green-pale);
    color: var(--green-dark);
}
.recent-post { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.recent-post:last-child { border: none; padding-bottom: 0; }
.recent-post img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.recent-post-info h5 { font-size: .9rem; line-height: 1.35; margin-bottom: 4px; }
.recent-post-info h5 a { color: var(--text); }
.recent-post-info h5 a:hover { color: var(--green); }
.recent-post-info small { color: var(--text-muted); font-size: .8rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .8125rem;
    transition: all var(--transition);
}
.tag-cloud a:hover { background: var(--green); color: var(--white); }

/* ── Inquiry Form ── */
.inquiry-box {
    background: var(--green-pale);
    border: 2px solid var(--green-light);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.inquiry-box h3 { color: var(--green-dark); margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: 6px; }
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .9375rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(46,125,50,.12);
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-error { color: #c62828; font-size: .8125rem; margin-top: 4px; }

/* ── Gallery Page ── */
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
    padding: 8px 22px;
    border-radius: 24px;
    border: 2px solid var(--border);
    background: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .9375rem;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text-muted);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}
.gallery-grid { columns: 3; gap: 16px; }
.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.gallery-item img { width: 100%; display: block; }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,94,32,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay-icon { color: white; font-size: 2rem; }
.yt-thumb { position: relative; }
.yt-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yt-play svg { width: 54px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }

/* ── Blog ── */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.post-hero img { width: 100%; border-radius: var(--radius-lg); max-height: 420px; object-fit: cover; margin-bottom: 30px; }
.post-meta { display: flex; gap: 16px; font-size: .875rem; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.post-meta span { display: flex; align-items: center; gap: 5px; }
.post-body { font-size: 1rem; line-height: 1.8; }
.post-body h2, .post-body h3 { margin: 28px 0 12px; }
.post-body img { border-radius: var(--radius); margin: 20px 0; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon {
    width: 52px; height: 52px;
    background: var(--green-pale);
    color: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p { color: var(--text-muted); margin: 0; font-size: .9375rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 30px; }
.map-embed iframe { width: 100%; height: 280px; border: none; display: block; }

/* ── Footer ── */
.footer { background: #1a1a1a; color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .navbar-brand { margin-bottom: 16px; }
.footer-brand .navbar-brand { color: var(--white); }
.footer-about { color: rgba(255,255,255,.6); font-size: .9375rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    transition: all var(--transition);
}
.social-link:hover { background: var(--green); border-color: var(--green); color: white; }
.footer-heading {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,.08);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,.6);
    font-size: .9375rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--green-light); font-size: 1.1rem; }
.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: .9375rem;
    color: rgba(255,255,255,.6);
}
.footer-contact-item i { color: var(--green-light); margin-top: 3px; min-width: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: .875rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--green-light); }

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}
.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition);
    animation: wa-pulse 2s infinite;
}
.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37,211,102,.55);
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.45); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,.7); }
}

/* ── Alerts ── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9375rem;
    border-left: 4px solid;
}
.alert-success { background: #e8f5e9; color: #1b5e20; border-color: var(--green); }
.alert-error   { background: #ffebee; color: #b71c1c; border-color: #e53935; }

/* ── Pagination ── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 50px; flex-wrap: wrap; }
.page-link {
    width: 40px; height: 40px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}
.page-link:hover, .page-link.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .single-layout { grid-template-columns: 1fr; }
    .blog-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .about-grid { gap: 40px; }
}
@media (max-width: 768px) {
    .section { padding: 55px 0; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 2; }
    .topbar-right { display: none; }

    /* Mobile Nav */
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
        transform: translateY(-110%);
        transition: transform var(--transition);
        z-index: 999;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu a { padding: 12px 16px; border-radius: var(--radius); }
    .nav-toggle { display: flex; }
    .nav-menu .btn { margin-left: 0; width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .gallery-grid { columns: 1; }
    .slide-content { min-height: 400px; }
    .slider-arrow { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════════════════════ */

/* Page Hero (shared across inner pages) */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 80px 0 60px;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}
.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 12px;
}

/* Breadcrumb (white version for page-hero) */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    padding: 0;
    margin: 0;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: '›'; opacity: .5; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--white); }

/* Section utilities */
.bg-light { background: var(--bg-light); }
.section-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}
.section-cta { text-align: center; margin-top: 48px; }

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cards-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.card-badge {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.product-price {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 8px 0 14px;
}
.product-price small { font-size: .8rem; color: var(--text-muted); font-weight: 400; }

/* Product detail layout */
.product-detail { padding: 70px 0; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Gallery column */
.product-gallery-col {}
.product-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-main-img a { display: block; width: 100%; height: 100%; }
.product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-main-img:hover img { transform: scale(1.03); }
.product-no-img {
    font-size: 4rem;
    color: var(--border);
    aspect-ratio: 4/3;
}
.product-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.prod-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition);
    flex-shrink: 0;
}
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-thumb:hover,
.prod-thumb.active { border-color: var(--green); }

/* Info column */
.product-info-col {}
.product-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 12px 0 16px;
    color: var(--text);
}
.product-price-big {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 20px;
}
.product-price-big small { font-size: 1rem; font-weight: 400; }
.product-description {
    color: var(--text-muted);
    font-size: .9875rem;
    line-height: 1.8;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}
.product-description p { margin-bottom: .75rem; }
.product-specs {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
}
.product-specs h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
}
.product-specs table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.product-specs td, .product-specs th {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.product-specs tr:last-child td { border-bottom: none; }
.product-specs td:first-child { font-weight: 600; color: var(--text); width: 45%; }
.product-specs td:last-child { color: var(--text-muted); }

/* CTA actions */
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: var(--white);
    transform: translateY(-2px);
}

/* Form utilities (used in inquiry & contact strip) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}
.contact-form .form-row { margin-bottom: 0; }
.contact-form .form-group { margin-bottom: 18px; }
.w-full { width: 100%; justify-content: center; }

/* Read more link */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--green);
    transition: gap var(--transition);
}
.read-more:hover { gap: 10px; color: var(--green-dark); }

/* Contact strip (home page) */
.contact-strip {}
.contact-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}
.contact-strip-info { padding-top: 8px; }
.cs-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}
.cs-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cs-item strong { display: block; font-size: .875rem; color: var(--text-muted); margin-bottom: 3px; }
.cs-item a, .cs-item span { font-size: 1rem; font-weight: 600; color: var(--text); }
.cs-item a:hover { color: var(--green); }
.quick-contact-form {}
.quick-contact-form .form-control { margin-bottom: 14px; }
.quick-contact-form .form-row .form-control { margin-bottom: 0; }
.quick-contact-form .form-row { margin-bottom: 14px; }

/* Why us grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 10px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--green-pale);
}
.why-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: var(--green-pale);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: .9375rem; margin: 0; }

/* CTA strip */
.cta-strip {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 60px 0;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-strip-text h2 { color: var(--white); margin-bottom: 8px; }
.cta-strip-text p { color: rgba(255,255,255,.8); margin: 0; }
.cta-strip-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
    color: var(--white);
}

/* About snippet */
.about-snippet-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.about-snippet-img { position: relative; }
.about-snippet-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent);
    color: var(--text);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}
.about-img-badge i { font-size: 1.5rem; }
.about-snippet-content { color: var(--text-muted); margin-bottom: 24px; }
.about-snippet-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.ap-item { display: flex; align-items: center; gap: 8px; font-size: .9375rem; font-weight: 600; }
.ap-item i { color: var(--green); }

/* Counters */
.counters-section {
    background: var(--green-dark);
    padding: 50px 0;
}
.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.counter-item { color: var(--white); }
.counter-item i { font-size: 2rem; color: var(--accent); margin-bottom: 10px; display: block; }
.counter-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--white); }
.counter-suffix { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--white); }
.counter-item p { margin: 6px 0 0; color: rgba(255,255,255,.7); font-size: .9375rem; }

/* ── Responsive additions ── */
@media (max-width: 1024px) {
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { gap: 36px; }
    .about-snippet-inner { gap: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-strip-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .cards-grid { grid-template-columns: 1fr; }
    .cards-grid-4 { grid-template-columns: 1fr 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .about-snippet-inner { grid-template-columns: 1fr; }
    .about-snippet-points { grid-template-columns: 1fr; }
    .about-img-badge { left: 0; bottom: -10px; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-strip-inner { flex-direction: column; text-align: center; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-strip-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 480px) {
    .cards-grid-4 { grid-template-columns: 1fr; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   SITE HEADER & MAIN NAV  (layout.php system)
   ══════════════════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,.10);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 25px rgba(0,0,0,.18); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-dark);
}
.logo-tag {
    font-size: .7rem;
    color: var(--text-muted);
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Main nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
}
.main-nav ul li { list-style: none; }
.main-nav ul li a {
    display: block;
    padding: 8px 14px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .9375rem;
    color: var(--text);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
}
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--green);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--green);
    background: var(--green-pale);
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after { transform: scaleX(1); }

/* CTA link in nav */
.btn-nav-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    padding: 10px 20px !important;
    margin-left: 8px;
    transition: all var(--transition) !important;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(46,125,50,.35);
}

/* Mobile nav toggle already defined above (.nav-toggle) — works for both */

/* Mobile nav open state for .main-nav */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
        transform: translateY(-110%);
        transition: transform var(--transition);
        z-index: 999;
        padding: 16px;
    }
    .main-nav.open { transform: translateY(0); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
    .main-nav ul li a { padding: 12px 16px; }
    .btn-nav-cta { margin-left: 0 !important; text-align: center; }
    .nav-toggle { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   SITE FOOTER  (layout.php system)
   ══════════════════════════════════════════════════════════════ */

.site-footer { background: #1a1a1a; color: rgba(255,255,255,.75); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-col h4 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,.08);
}
.footer-col ul { padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,.6);
    font-size: .9375rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.footer-col ul li a::before { content: '›'; color: var(--green-light); font-size: 1.1rem; }
.footer-col ul li a:hover { color: var(--green-light); padding-left: 4px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-logo i { color: var(--accent); }
.footer-col.footer-brand > p { color: rgba(255,255,255,.55); font-size: .9375rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    transition: all var(--transition);
}
.social-links a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-contact { padding: 0; }
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: .9375rem;
    color: rgba(255,255,255,.6);
}
.footer-contact li i { color: var(--green-light); margin-top: 3px; min-width: 16px; }
.footer-contact li a { color: rgba(255,255,255,.6); }
.footer-contact li a:hover { color: var(--green-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align: center;
    font-size: .875rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom p { margin: 0; }
.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #1a1a1a;
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: .8125rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Responsive footer ── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-top { padding: 40px 0 24px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO SLIDER — slide-content with container alignment fix
   ══════════════════════════════════════════════════════════════ */

/* When .slide-content wraps a .container, reset the container padding */
.slide-content.container {
    display: flex;
    align-items: center;
    min-height: 560px;
    padding-top: 80px;
    padding-bottom: 80px;
}
.slide-inner h1 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.slide-inner p   { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 30px; }

/* Fallback slide background when no banner image */
.hero-slider .slide:not([style]) {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    min-height: 560px;
    display: flex;
    align-items: stretch;
}
