/*=================================================
  ZIIPP — Frontend Stylesheet
  Modern, clean e-commerce design
=================================================*/

/* ── Google Fonts (loaded via layout) ─────────── */
:root {
    --fe-font: 'Inter', 'Poppins', 'Roboto', sans-serif;
    --fe-radius: 12px;
    --fe-radius-sm: 8px;
    --fe-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    --fe-shadow-hover: 0 8px 40px rgba(0, 0, 0, .14);
    --fe-transition: all .3s ease;
    --fe-white: #ffffff;
    --fe-dark: #0f172a;
    --fe-gray: #64748b;
    --fe-light: #f8fafc;
    --fe-border: #e2e8f0;
    --fe-section-pad: 80px 0;
}

/* ── Reset & Base ─────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fe-font);
    color: var(--fe-dark);
    background-color: var(--bs-background-color, #f8fafc);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--bs-primary);
}

img {
    max-width: 100%;
}

/* ── Typography ───────────────────────────────── */
.fe-section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--fe-dark);
}

.fe-section-subtitle {
    font-size: 1rem;
    color: var(--fe-gray);
    max-width: 580px;
    margin: 0 auto;
}

.fe-badge-label {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .12);
    color: var(--bs-primary);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

/* ── Buttons ──────────────────────────────────── */
.fe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--fe-transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.fe-btn-primary {
    background: var(--bs-primary, #28ab49);
    color: var(--text-primary, #fff);
    border-color: var(--bs-primary, #28ab49);
}

.fe-btn-primary:hover {
    background: var(--bs-primary-hover, #1d8b37);
    border-color: var(--bs-primary-hover, #1d8b37);
    color: var(--text-primary-hover, #fff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb, 40, 171, 73), .35);
}

.fe-btn-outline {
    background: transparent;
    color: var(--bs-primary, #28ab49);
    border-color: var(--bs-primary, #28ab49);
}

.fe-btn-outline:hover {
    background: var(--bs-primary, #28ab49);
    color: var(--text-primary, #fff);
    transform: translateY(-2px);
}

.fe-btn-white {
    background: var(--fe-white);
    color: var(--bs-primary, #28ab49);
    border-color: var(--fe-white);
}

.fe-btn-white:hover {
    background: transparent;
    color: var(--fe-white);
    border-color: var(--fe-white);
}

.fe-btn-sm {
    padding: 8px 20px;
    font-size: .85rem;
}

/* ── Navbar ───────────────────────────────────── */
.fe-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0 0;
    transition: var(--fe-transition);
    background: transparent;
}

.fe-navbar.scrolled,
.fe-navbar.navbar-solid {
    background: var(--fe-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    padding: 0;
}

.fe-navbar.scrolled .fe-nav-link,
.fe-navbar.navbar-solid .fe-nav-link {
    color: var(--fe-dark) !important;
}

.fe-navbar.scrolled .fe-brand-text,
.fe-navbar.navbar-solid .fe-brand-text {
    color: var(--bs-primary) !important;
}

.fe-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.fe-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.fe-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.fe-brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--fe-white);
    letter-spacing: -.02em;
    transition: var(--fe-transition);
}

.fe-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fe-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: .9rem;
    color: rgba(255, 255, 255, .9) !important;
    transition: var(--fe-transition);
    text-decoration: none;
}

.fe-nav-link:hover,
.fe-nav-link.active {
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .12);
    color: var(--bs-primary) !important;
}

.fe-nav-link.active {
    font-weight: 700;
}

.fe-nav-cart-btn {
    position: relative;
    padding: 8px 16px;
    background: var(--bs-primary);
    color: var(--text-primary, #fff) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--fe-transition);
    text-decoration: none;
}

.fe-nav-cart-btn:hover {
    background: var(--bs-primary-hover, #1d8b37);
    color: var(--text-primary-hover, #fff) !important;
    transform: translateY(-1px);
}

.fe-nav-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu toggler */
.fe-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.fe-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fe-white);
    border-radius: 2px;
    transition: var(--fe-transition);
}

.fe-navbar.scrolled .fe-toggler span,
.fe-navbar.navbar-solid .fe-toggler span {
    background: var(--fe-dark);
}

/* ── Hero Section ─────────────────────────────── */
.fe-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fe-dark) 0%, #1a2744 60%, #0d3b1e 100%);
}

.fe-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fe-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, .85) 0%, rgba(var(--bs-primary-rgb, 40, 171, 73), .25) 100%);
    z-index: 1;
}

.fe-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .35;
}

.fe-hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.fe-hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .08);
}

.fe-hero-shapes .shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.fe-hero-shapes .shape-2 {
    width: 250px;
    height: 250px;
    bottom: 50px;
    left: -80px;
}

.fe-hero-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
}

.fe-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.fe-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .2);
    color: #6ee7a0;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--bs-primary-rgb, 40, 171, 73), .3);
}

.fe-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--fe-white);
    margin-bottom: 20px;
}

.fe-hero-title .highlight {
    color: var(--bs-primary, #28ab49);
    display: block;
}

.fe-hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .75);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.fe-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.fe-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.fe-hero-stat {
    text-align: center;
}

.fe-hero-stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--fe-white);
    line-height: 1;
}

.fe-hero-stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 4px;
}

.fe-hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.fe-hero-img-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
}

.fe-hero-img-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
}

.fe-hero-float-badge {
    position: absolute;
    background: var(--fe-white);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: var(--fe-shadow-hover);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--fe-dark);
    z-index: 3;
}

.fe-hero-float-badge .badge-icon {
    width: 32px;
    height: 32px;
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1rem;
}

.fe-hero-float-1 {
    bottom: 120px;
    left: -20px;
}

.fe-hero-float-2 {
    top: 140px;
    right: -20px;
}

/* ── Generic Section ──────────────────────────── */
.fe-section {
    padding: var(--fe-section-pad);
}

.fe-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.fe-section-light {
    background: var(--fe-white);
}

.fe-section-gray {
    background: var(--fe-light);
}

.fe-section-dark {
    background: var(--fe-dark);
    color: var(--fe-white);
}

.fe-section-dark .fe-section-title {
    color: var(--fe-white);
}

.fe-section-dark .fe-section-subtitle {
    color: rgba(255, 255, 255, .7);
}

/* ── About Section ────────────────────────────── */
.fe-about-img-wrap {
    position: relative;
    padding: 16px;
}

.fe-about-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    /* box-shadow: var(--fe-shadow-hover); */
}

.fe-about-img-badge {
    position: absolute;
    bottom: 30px;
    right: 0px;
    background: var(--bs-primary);
    color: var(--text-primary, #fff);
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: var(--fe-shadow-hover);
    min-width: 120px;
}

.fe-about-img-badge .num {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.fe-about-img-badge .lbl {
    font-size: .78rem;
    opacity: .85;
    margin-top: 4px;
}

.fe-about-content {
    padding: 20px 0;
}

.fe-about-features {
    margin-top: 28px;
}

.fe-about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.fe-about-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.3rem;
}

.fe-about-feature-text h6 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--fe-dark);
    font-size: .95rem;
}

.fe-about-feature-text p {
    margin: 0;
    font-size: .85rem;
    color: var(--fe-gray);
    line-height: 1.6;
}

/* ── Why Choose Us ────────────────────────────── */
.fe-why-card {
    background: var(--fe-white);
    border-radius: var(--fe-radius);
    padding: 32px 28px;
    border: 1px solid var(--fe-border);
    transition: var(--fe-transition);
    height: 100%;
    text-align: center;
}

.fe-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fe-shadow-hover);
    border-color: var(--bs-primary);
}

.fe-why-icon {
    width: 64px;
    height: 64px;
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--bs-primary);
    transition: var(--fe-transition);
}

.fe-why-card:hover .fe-why-icon {
    background: var(--bs-primary);
    color: var(--text-primary, #fff);
}

.fe-why-card h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--fe-dark);
}

.fe-why-card p {
    font-size: .88rem;
    color: var(--fe-gray);
    margin: 0;
    line-height: 1.6;
}

/* ── Products Section ─────────────────────────── */
.fe-product-card {
    background: var(--fe-white);
    border-radius: var(--fe-radius);
    overflow: hidden;
    border: 1px solid var(--fe-border);
    transition: var(--fe-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fe-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fe-shadow-hover);
}

.fe-product-img-wrap {
    position: relative;
    overflow: hidden;
}

.fe-product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}

.fe-product-card:hover .fe-product-img {
    transform: scale(1.05);
}

.fe-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.fe-product-badge-new {
    background: var(--bs-primary);
    color: var(--text-primary, #fff);
}

.fe-product-badge-sale {
    background: #ef4444;
    color: #fff;
}

.fe-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--fe-transition);
}

.fe-product-card:hover .fe-product-overlay {
    opacity: 1;
}

.fe-product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fe-product-cat {
    font-size: .75rem;
    color: var(--bs-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px;
}

.fe-product-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--fe-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.fe-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 14px;
}

.fe-product-price-curr {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bs-primary);
}

.fe-product-price-old {
    font-size: .85rem;
    color: var(--fe-gray);
    text-decoration: line-through;
}

.fe-product-actions {
    display: flex;
    gap: 8px;
}

/* ── Mission & Vision ─────────────────────────── */
.fe-mv-card {
    border-radius: var(--fe-radius);
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.fe-mv-card-mission {
    background: linear-gradient(135deg, var(--bs-primary, #28ab49) 0%, var(--bs-primary-hover, #1d8b37) 100%);
    color: var(--fe-white);
}

.fe-mv-card-vision {
    background: var(--fe-dark);
    color: var(--fe-white);
}

.fe-mv-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.fe-mv-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}

.fe-mv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.fe-mv-card p {
    opacity: .85;
    line-height: 1.7;
    font-size: .95rem;
}

.fe-mv-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.fe-mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .9rem;
    opacity: .9;
}

.fe-mv-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 900;
    flex-shrink: 0;
    text-align: center;
    line-height: 20px;
}

/* ── Gallery Section ──────────────────────────── */
.fe-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.fe-gallery-item {
    border-radius: var(--fe-radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.fe-gallery-item:nth-child(1) {
    grid-row: span 2;
}

.fe-gallery-item:nth-child(4) {
    grid-column: span 2;
}

.fe-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.fe-gallery-item:hover img {
    transform: scale(1.08);
}

.fe-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--fe-transition);
}

.fe-gallery-item:hover .fe-gallery-overlay {
    opacity: 1;
}

.fe-gallery-overlay i {
    color: var(--fe-white);
    font-size: 2rem;
}

/* ── Gallery Lightbox ─────────────────────────── */
.fe-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.fe-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.fe-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0, 0, 0, .5);
}

.fe-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    opacity: .8;
    transition: var(--fe-transition);
}

.fe-lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* ── CTA Section ──────────────────────────────── */
.fe-cta {
    background: linear-gradient(135deg, var(--bs-primary, #28ab49) 0%, var(--bs-primary-hover, #1d8b37) 100%);
    position: relative;
    overflow: hidden;
}

.fe-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.fe-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.fe-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--fe-white);
}

.fe-cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.fe-cta-content p {
    font-size: 1.05rem;
    opacity: .85;
    max-width: 560px;
    margin: 0 auto 32px;
}

/* ── Footer ───────────────────────────────────── */
.fe-footer {
    background: var(--fe-dark);
    color: rgba(255, 255, 255, .75);
    padding: 70px 0 0;
}

.fe-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.fe-footer-brand img {
    height: 36px;
}

.fe-footer-brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--fe-white);
}

.fe-footer-desc {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .65);
}

.fe-footer-socials {
    display: flex;
    gap: 10px;
}

.fe-footer-social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    transition: var(--fe-transition);
    text-decoration: none;
}

.fe-footer-social:hover {
    background: var(--bs-primary);
    color: var(--fe-white);
    transform: translateY(-2px);
}

.fe-footer-heading {
    font-size: .82rem;
    font-weight: 700;
    color: var(--fe-white);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px;
}

.fe-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fe-footer-links li {
    margin-bottom: 10px;
}

.fe-footer-links a {
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
    transition: var(--fe-transition);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.fe-footer-links a::before {
    content: '›';
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 1rem;
}

.fe-footer-links a:hover {
    color: var(--bs-primary);
    padding-left: 4px;
}

.fe-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fe-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
}

.fe-footer-contact li i {
    color: var(--bs-primary);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
}

.fe-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 50px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
}

.fe-footer-bottom a {
    color: rgba(255, 255, 255, .6);
    transition: var(--fe-transition);
    text-decoration: none;
}

.fe-footer-bottom a:hover {
    color: var(--bs-primary);
}

/* ── Inner Page Hero ──────────────────────────── */
.fe-page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--fe-dark) 0%, #1a2744 100%);
    position: relative;
    overflow: hidden;
}

.fe-page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bs-background-color, #f8fafc);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.fe-page-hero .fe-page-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.fe-page-hero .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .08);
}

.fe-page-hero .shape-a {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
}

.fe-page-hero .shape-b {
    width: 180px;
    height: 180px;
    bottom: 20px;
    left: 10%;
}

.fe-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--fe-white);
}

.fe-page-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.fe-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
}

.fe-breadcrumb a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
}

.fe-breadcrumb a:hover {
    color: var(--bs-primary);
}

.fe-breadcrumb-sep {
    color: rgba(255, 255, 255, .3);
}

.fe-breadcrumb-current {
    color: var(--bs-primary);
    font-weight: 600;
}

/* ── Page Content ─────────────────────────────── */
.fe-content-card {
    background: var(--fe-white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--fe-shadow);
    border: 1px solid var(--fe-border);
}

.fe-content-card h2,
.fe-content-card h3 {
    font-weight: 700;
    color: var(--fe-dark);
}

.fe-content-card p {
    color: #374151;
    line-height: 1.8;
}

.fe-content-card ul,
.fe-content-card ol {
    padding-left: 20px;
    color: #374151;
    line-height: 1.8;
}

/* ── Product Listing Page ─────────────────────── */
.fe-filter-sidebar {
    background: var(--fe-white);
    border-radius: var(--fe-radius);
    padding: 24px;
    border: 1px solid var(--fe-border);
    position: sticky;
    top: 90px;
}

.fe-filter-heading {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--fe-gray);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--fe-border);
}

.fe-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--fe-transition);
    font-size: .9rem;
    color: var(--fe-dark);
    text-decoration: none;
    margin-bottom: 4px;
}

.fe-filter-item:hover,
.fe-filter-item.active {
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .08);
    color: var(--bs-primary);
    font-weight: 600;
}

.fe-filter-count {
    margin-left: auto;
    background: var(--fe-light);
    padding: 1px 8px;
    border-radius: 50px;
    font-size: .75rem;
    color: var(--fe-gray);
}

/* ── Product Detail ───────────────────────────── */
.fe-product-gallery-main {
    border-radius: var(--fe-radius);
    overflow: hidden;
    border: 1px solid var(--fe-border);
}

.fe-product-gallery-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.fe-product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.fe-product-thumb {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--fe-transition);
}

.fe-product-thumb.active,
.fe-product-thumb:hover {
    border-color: var(--bs-primary);
}

.fe-product-thumb img {
    width: 100%;
    height: 72px;
    object-fit: cover;
}

.fe-product-detail-name {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.fe-product-detail-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fe-product-detail-price .curr {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--bs-primary);
}

.fe-product-detail-price .old {
    font-size: 1.1rem;
    color: var(--fe-gray);
    text-decoration: line-through;
}

.fe-product-detail-price .discount {
    background: #fef2f2;
    color: #ef4444;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
}

.fe-product-detail-desc {
    font-size: .95rem;
    color: var(--fe-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--fe-border);
}

.fe-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--fe-border);
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 20px;
}

.fe-qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--fe-dark);
    transition: var(--fe-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fe-qty-btn:hover {
    background: var(--fe-light);
    color: var(--bs-primary);
}

.fe-qty-input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--fe-border);
    border-right: 1px solid var(--fe-border);
    text-align: center;
    font-size: .95rem;
    font-weight: 600;
    color: var(--fe-dark);
    outline: none;
    background: none;
}

/* ── Login Required Banner ────────────────────── */
.fe-login-banner {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb, 40, 171, 73), .06), rgba(var(--bs-primary-rgb, 40, 171, 73), .02));
    border: 1px solid rgba(var(--bs-primary-rgb, 40, 171, 73), .2);
    border-radius: var(--fe-radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.fe-login-banner i {
    font-size: 1.8rem;
    color: var(--bs-primary);
    flex-shrink: 0;
}

.fe-login-banner-text h6 {
    font-weight: 700;
    color: var(--fe-dark);
    margin-bottom: 4px;
    font-size: .95rem;
}

.fe-login-banner-text p {
    margin: 0;
    font-size: .85rem;
    color: var(--fe-gray);
}

/* ── Testimonials ─────────────────────────────── */
.fe-testimonial-card {
    background: var(--fe-white);
    border-radius: var(--fe-radius);
    padding: 28px;
    border: 1px solid var(--fe-border);
    height: 100%;
}

.fe-testimonial-quote {
    font-size: 2.5rem;
    color: var(--bs-primary);
    line-height: .7;
    margin-bottom: 14px;
    font-family: serif;
}

.fe-testimonial-text {
    font-size: .9rem;
    color: var(--fe-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.fe-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fe-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(var(--bs-primary-rgb, 40, 171, 73), .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.fe-testimonial-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--fe-dark);
}

.fe-testimonial-role {
    font-size: .78rem;
    color: var(--fe-gray);
}

/* ── Stat Strip ───────────────────────────────── */
.fe-stats-strip {
    background: var(--bs-primary, #28ab49);
    padding: 40px 0;
}

.fe-stat-item {
    text-align: center;
    color: var(--fe-white);
}

.fe-stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.fe-stat-lbl {
    font-size: .82rem;
    opacity: .85;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.fe-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .2);
    align-self: stretch;
}

/* ── Search bar ───────────────────────────────── */
.fe-search-bar {
    display: flex;
    align-items: center;
    background: var(--fe-white);
    border-radius: 50px;
    border: 1px solid var(--fe-border);
    padding: 4px 8px 4px 20px;
    gap: 8px;
    box-shadow: var(--fe-shadow);
}

.fe-search-input {
    border: none;
    outline: none;
    font-size: .95rem;
    background: none;
    flex: 1;
    min-width: 0;
    color: var(--fe-dark);
    font-family: var(--fe-font);
}

.fe-search-input::placeholder {
    color: var(--fe-gray);
}

/* ── Scroll-to-top ────────────────────────────── */
#fe-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--bs-primary);
    color: var(--text-primary, #fff);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 900;
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb, 40, 171, 73), .4);
    transition: var(--fe-transition);
}

#fe-scroll-top:hover {
    transform: translateY(-3px);
}

/* ── Alerts / notifications ───────────────────── */
.fe-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9000;
    min-width: 280px;
    max-width: 380px;
    background: var(--fe-white);
    border-radius: 12px;
    box-shadow: var(--fe-shadow-hover);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--bs-primary);
    opacity: 0;
    transform: translateX(30px);
    transition: all .3s ease;
    pointer-events: none;
}

.fe-toast.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.fe-toast.fe-toast-error {
    border-color: #ef4444;
}

.fe-toast.fe-toast-success {
    border-color: var(--bs-primary);
}

.fe-toast-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.fe-toast-success .fe-toast-icon {
    color: var(--bs-primary);
}

.fe-toast.fe-toast-error .fe-toast-icon {
    color: #ef4444;
}

.fe-toast-text {
    font-size: .9rem;
    color: var(--fe-dark);
    font-weight: 500;
}

/* ── Animations ───────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.animate-fade-up {
    animation: fadeInUp .6s ease both;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.delay-1 {
    animation-delay: .1s;
}

.delay-2 {
    animation-delay: .2s;
}

.delay-3 {
    animation-delay: .3s;
}

.delay-4 {
    animation-delay: .4s;
}

.delay-5 {
    animation-delay: .5s;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 991px) {
    .fe-nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .fe-nav-list.open {
        display: flex;
    }

    .fe-toggler {
        display: flex;
    }

    .fe-navbar-inner {
        flex-wrap: wrap;
    }

    .fe-navbar-nav-wrap {
        width: 100%;
        background: var(--fe-white);
        border-radius: 12px;
        margin-top: 8px;
        padding: 10px;
        box-shadow: var(--fe-shadow);
    }

    .fe-nav-link {
        color: var(--fe-dark) !important;
    }

    .fe-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .fe-gallery-item:nth-child(1) {
        grid-row: span 1;
    }

    .fe-gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .fe-mv-card {
        margin-bottom: 20px;
    }

    .fe-hero-image-wrapper {
        display: none;
    }

    .fe-content-card {
        padding: 28px 20px;
    }
}

@media (max-width: 767px) {
    :root {
        --fe-section-pad: 56px 0;
    }

    .fe-hero {
        min-height: 85vh;
    }

    .fe-hero-stats {
        gap: 24px;
    }

    .fe-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }

    .fe-footer {
        padding-top: 50px;
    }

    .fe-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .fe-product-gallery-main img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .fe-hero-title {
        font-size: 2rem;
    }

    .fe-hero-actions {
        flex-direction: column;
    }

    .fe-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
    }
}