:root
{
    --brand: #d90429;
    --brand-dark: #b00320;
    --accent: #f5a623;
    --text: #1f2a37;
    --muted: #6b7280;
    --bg: #f8fafc;
    --card: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --radius: 14px;
    --radius-sm: 10px;
}

*
{
    box-sizing: border-box;
}

html,
body
{
    height: 100%;
}

body
{
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Auth Styles */
.auth-container
{
    max-width: 440px;
    margin: 60px auto;
    padding: 30px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.auth-title
{
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 24px;
}

.form-group
{
    margin-bottom: 20px;
}

.form-label
{
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-input
{
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 16px;
    background: #f8fafc;
    transition: all 0.2s;
}

.form-input:focus
{
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(10, 93, 112, 0.1);
}

.btn-block
{
    width: 100%;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}

.auth-links
{
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted);
}

.auth-links a
{
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.alert
{
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error
{
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success
{
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Header */
header.site-header
{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.nav-wrap
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo
{
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.logo-mark
{
    display: none;
}

.logo-svg
{
    width: 160px;
    height: 60px;
    display: block;
}

.logo-text
{
    font-weight: 800;
    font-size: 28px;
    color: var(--brand-dark);
}

.nav-links
{
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a
{
    text-decoration: none;
    color: var(--text);
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.nav-links a:hover
{
    background: #f0f4f8;
}

.nav-links a.btn-nav
{
    background: var(--brand);
    color: #fff;
    padding: 8px 16px;
}

.nav-links a.btn-nav:hover
{
    background: var(--brand-dark);
}

.hamburger
{
    display: none;
    border: none;
    background: transparent;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger span
{
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    position: relative;
}

.hamburger span::before,
.hamburger span::after
{
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--text);
}

.hamburger span::before
{
    top: -6px;
}

.hamburger span::after
{
    top: 6px;
}

/* Products Hero Section */
.products-hero
{
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-carousel
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active
{
    opacity: 1;
}

.hero-slide-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-overlay
{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-wrapper
{
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.hero-title
{
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle
{
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 30px;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-cta
{
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary
{
    background: var(--accent);
    color: #1f2a37;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow);
    border: 0;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-primary:hover
{
    transform: translateY(-2px);
}

.btn-secondary
{
    background: #ffffff;
    color: var(--brand-dark);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow);
    border: 0;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-secondary:hover
{
    transform: translateY(-2px);
}

/* Sections */
section.section
{
    padding: 64px 0;
}

.section-title
{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.section-title h2
{
    font-size: 28px;
    margin: 0;
}

.section-sub
{
    color: var(--muted);
    font-size: 16px;
}

/* Intro Cards */
.intro-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.intro-card
{
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    transition: transform 0.2s;
}

.intro-card:hover
{
    transform: translateY(-4px);
}

.intro-card h3
{
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--brand-dark);
}

.intro-card p
{
    margin: 0;
    color: var(--muted);
}

/* Product Layout */
.product-layout
{
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-top: 20px;
}

.product-sidebar
{
    flex: 0 0 280px;
    background: var(--card);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.product-main
{
    flex: 1;
    width: 100%;
}

/* Search */
.search-form
{
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
}

.search-input
{
    width: 100%;
    padding: 12px 16px;
    padding-right: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color .2s;
}

.search-input:focus
{
    border-color: var(--brand);
    outline: none;
}

.search-btn
{
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
}

.search-btn:hover
{
    color: var(--brand);
}

/* Filter */
.filter-title
{
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.filter-list
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li
{
    margin-bottom: 4px;
}

.filter-list a
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all .2s;
    font-size: 15px;
}

.filter-list a:hover
{
    background: #f1f5f9;
    color: var(--brand-dark);
    transform: translateX(5px);
}

.filter-list a.active
{
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    transform: translateX(5px);
}

.filter-count
{
    font-size: 12px;
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
}

.filter-list a.active .filter-count
{
    background: rgba(255, 255, 255, 0.2);
}

/* Products Grid */
.products-grid-new
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card-stunning
{
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card-stunning:hover
{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.pc-img-wrap
{
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.pc-img-wrap img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-stunning:hover .pc-img-wrap img
{
    transform: scale(1.08);
}

.pc-badge
{
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.pc-badge.instock
{
    background: #166534;
}

.pc-badge.limited
{
    background: #f59e0b;
    color: #fff;
}

.pc-badge.out
{
    background: #991b1b;
}

.pc-content
{
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pc-cat
{
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pc-title
{
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-price
{
    font-size: 19px;
    font-weight: 800;
    color: var(--brand-dark);
    margin-top: 4px;
}

.pc-actions
{
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    gap: 10px;
}

.btn-pc-view
{
    flex: 1;
    text-align: center;
    background: #f1f5f9;
    color: var(--text);
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: .2s;
}

.btn-pc-view:hover
{
    background: #e2e8f0;
}

.btn-pc-buy
{
    flex: 1;
    text-align: center;
    background: var(--brand);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: .2s;
}

.btn-pc-buy:hover
{
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 93, 112, 0.2);
}

/* Product Details */
.pd-container
{
    background: var(--card);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.pd-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pd-main-img img
{
    width: 100%;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pd-info
{
    display: flex;
    flex-direction: column;
}

.pd-title
{
    margin: 0 0 10px;
    font-size: 32px;
    color: var(--brand-dark);
}

.pd-meta
{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.pd-price-lg
{
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.pd-desc
{
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pd-actions
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.pd-btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

.pd-btn:hover
{
    transform: translateY(-2px);
}

.pd-btn-wa
{
    background: #25D366;
    color: white;
}

.pd-btn-qt
{
    background: var(--brand-dark);
    color: white;
}

.pd-order-card
{
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 25px;
}

.pd-order-title
{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pd-related
{
    margin-top: 60px;
}

.pd-related-title
{
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.related-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.related-card
{
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s;
}

.related-card:hover
{
    transform: translateY(-3px);
}

.related-img
{
    height: 140px;
    overflow: hidden;
}

.related-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-body
{
    padding: 15px;
}

.related-title
{
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 15px;
    display: block;
    text-decoration: none;
    color: var(--text);
}

.related-price
{
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
}

/* About, Contact, Cards */
.about-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.about-box
{
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.about-box h3
{
    margin: 0 0 8px;
}

.about-box p,
.about-box ul
{
    margin: 0;
    color: var(--muted);
}

.contact
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.contact-card
{
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.contact-card a
{
    color: var(--brand);
    text-decoration: none;
}

.cards
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.card
{
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover
{
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.card img
{
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-body
{
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-title
{
    font-weight: 700;
}

.card-desc
{
    color: var(--muted);
    font-size: 14px;
}

.card-price
{
    font-weight: 700;
    color: var(--brand-dark);
}

/* Footer */
footer.site-footer
{
    background: #0f172a;
    color: #cbd5e1;
    padding: 28px 0;
    margin-top: 40px;
}

.footer-flex
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.social
{
    display: flex;
    align-items: center;
    gap: 12px;
}

.social a
{
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px)
{
    .nav-links
    {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        box-shadow: var(--shadow);
        border-radius: var(--radius);
        flex-direction: column;
        padding: 12px;
    }

    .nav-links.open
    {
        display: flex;
    }

    .hamburger
    {
        display: inline-flex;
    }

    .products-hero
    {
        height: 350px;
    }

    .hero-title
    {
        font-size: 36px;
    }

    .hero-subtitle
    {
        font-size: 18px;
    }

    .product-layout
    {
        flex-direction: column;
        gap: 20px;
    }

    .product-sidebar
    {
        width: 100%;
        position: static;
        z-index: 10;
        padding: 16px;
        margin-bottom: 10px;
    }

    .filter-list
    {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 5px;
    }

    .filter-list li
    {
        margin: 0;
        flex: 0 0 auto;
    }

    .filter-list a
    {
        white-space: nowrap;
        background: #fff;
        border: 1px solid #e2e8f0;
    }

    .filter-count
    {
        display: none;
    }

    .search-form
    {
        margin-bottom: 16px;
    }

    .products-grid-new
    {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pc-img-wrap
    {
        height: 150px;
    }

    .pc-content
    {
        padding: 12px;
    }

    .pc-title
    {
        font-size: 14px;
    }

    .pc-price
    {
        font-size: 16px;
    }

    .pc-actions
    {
        flex-direction: column;
        gap: 6px;
        padding-top: 10px;
    }

    .btn-pc-view,
    .btn-pc-buy
    {
        font-size: 12px;
        padding: 8px;
    }

    .pd-grid
    {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pd-title
    {
        font-size: 24px;
    }
}

/* --- About Us Redesign --- */
.mv-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card
{
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover
{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon-circle
{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-card h3
{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.rich-text-content
{
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

/* Values List */
.values-list
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li
{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text);
}

.values-list li i
{
    color: #25D366;
    /* Green check */
}

/* Reasons Grid */
.reasons-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.reason-box,
.story-box
{
    padding: 30px;
}

.reason-box h3,
.story-box h3
{
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--brand-dark);
}

.stats-row
{
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item
{
    display: flex;
    flex-direction: column;
}

.stat-num
{
    font-size: 36px;
    font-weight: 800;
    color: var(--brand);
}

.stat-label
{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 1px;
}

.btn-text
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    font-size: 16px;
    transition: gap 0.2s;
}

.btn-text:hover
{
    gap: 12px;
    color: var(--brand-dark);
}

/* Animations */
.animated
{
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated.visible
{
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left
{
    transform: translateX(-50px);
}

.slide-in-left.visible
{
    transform: translateX(0);
}

.slide-in-right
{
    transform: translateX(50px);
}

.slide-in-right.visible
{
    transform: translateX(0);
}

.delay-100
{
    transition-delay: 0.1s;
}

.delay-200
{
    transition-delay: 0.2s;
}

.delay-300
{
    transition-delay: 0.3s;
}

@media (max-width: 768px)
{
    .reasons-grid
    {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Homepage Enhancements --- */

/* Hero Typography Overrides */
.hero-title
{
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero-subtitle
{
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

/* Home Features Grid */
.home-features-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.home-feature-card
{
    background: #fff;
    border-radius: var(--radius);
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.home-feature-card:hover
{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(217, 4, 41, 0.1);
}

.home-feature-card::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand);
    opacity: 0;
    transition: opacity 0.3s;
}

.home-feature-card:hover::before
{
    opacity: 1;
}

.hf-icon
{
    width: 50px;
    height: 50px;
    background: rgba(217, 4, 41, 0.08);
    /* Brand Red Tint */
    color: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: background 0.3s, color 0.3s;
}

.home-feature-card:nth-child(2n) .hf-icon
{
    background: rgba(245, 166, 35, 0.1);
    /* Accent Gold Tint */
    color: var(--accent);
}

.home-feature-card:hover .hf-icon
{
    background: var(--brand);
    color: white;
}

.home-feature-card:nth-child(2n):hover .hf-icon
{
    background: var(--accent);
}

.home-feature-card h3
{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.home-feature-card p
{
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* About Preview Section */
.about-preview-section
{
    position: relative;
    background: #f8fafc;
}

.ab-grid
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ab-card
{
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.ab-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.ab-icon
{
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--brand);
}

.ab-card h4
{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ab-card p
{
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.ab-link
{
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quote CTA Strip */
.cta-strip
{
    background: linear-gradient(90deg, #1f2937 0%, #111827 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip h2
{
    color: white;
    margin-bottom: 20px;
}

.cta-strip p
{
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

@media (max-width: 992px)
{
    .hero-title
    {
        font-size: 2.5rem;
    }

    .ab-grid
    {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hero-subtitle
    {
        font-size: 1.1rem;
    }

    .home-features-grid
    {
        grid-template-columns: 1fr;
    }

    .ab-grid
    {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px)
{
    .products-grid-new
    {
        grid-template-columns: 1fr;
    }

    .hero-title
    {
        font-size: 28px;
    }

    .hero-subtitle
    {
        font-size: 16px;
    }
}