:root {
    /* Hatrafom Holdings brand palette */
    --brand: #C6184F;
    --brand-dark: #A11440;
    --accent: #F3724A;
    --secondary: #3778E9;
    --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: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", 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;
}

.container-fluid {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    margin: 0 auto;
}

/* 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: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    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: 12px;
    /* Reduced gap */
    text-decoration: none;
    padding: 6px 14px;
    /* Reduced padding */
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
    /* Safety */
}

.logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo-mark {
    display: none;
}

.logo-svg {
    width: auto;
    height: 36px;
    /* Reduced specific logo mark size */
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.logo:hover .logo-svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.logo-text {
    font-weight: 800;
    font-size: 18px;
    /* Aggressively reduced for long names */
    line-height: 1.2;

    /* Brand Gradient: Orange (#F3724A) to Pink (#C6184F) */
    background: linear-gradient(90deg, #F3724A, #ff8ba7, #F3724A);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #F3724A;
    /* Fallback */
    animation: shine 5s linear infinite;

    /* Use filter instead of text-shadow for protection */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));

    transition: all 0.3s ease;
    white-space: nowrap !important;
    /* FORCE single line */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Fallback if still too narrow */
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.logo:hover .logo-text {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 255, 255, 0.3);
}

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

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

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.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: 25px;
    height: 3px;
    background: #38bdf8;
    /* Blue */
    position: relative;
    border-radius: 2px;
}

.hamburger span::before,
.hamburger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 3px;
    background: #38bdf8;
    /* Blue */
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

/* 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 Text Slides */
.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    pointer-events: none;
}

.hero-text-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-price {
    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;
    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 */
/* Responsive */
@media (max-width: 900px) {

    /* Mobile Navigation Drawer */
    .nav-links {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        /* Slightly wider */
        height: 100vh;

        /* Brand Dark Background (Logo Colors) */
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-left: 1px solid rgba(255, 255, 255, 0.1);

        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        padding: 90px 0 20px 0;
        /* Padding for items */
        z-index: 1001;
        transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        transform: translateX(100%);
        /* Start off-screen */
        overflow-y: auto;
    }

    .nav-links.open {
        display: flex;
        transform: translateX(0);
        /* Slide in */
    }

    /* Backdrop for drawer */
    .nav-links.open::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        /* Extend to cover screen to the left */
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        /* Darker backdrop */
        z-index: -1;
        cursor: pointer;
    }

    /* Mobile Links */
    .nav-links a {
        color: #e2e8f0;
        /* Light text */
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0;
        font-size: 16px;
        font-weight: 500;
        width: 100%;
        text-align: left;
        transition: all 0.2s;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.08);
        /* Subtle highlight */
        padding-left: 30px;
        /* Slide effect */
        color: #38bdf8;
        /* Brand Blue Hover */
    }

    /* Hamburger Icon */
    .hamburger {
        display: inline-flex;
        z-index: 1002;
        position: relative;
        /* Remove background if any */
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.1);
        /* Optional container border */
        border-radius: 8px;
    }

    /* Modify the span inside the media query to ensure specific override */
    .hamburger span {
        width: 25px;
        /* Slightly wider */
        background: #38bdf8;
        /* Bright Blue (Tailwind Sky-400) */
        height: 3px;
        /* Thicker lines */
    }

    .hamburger span::before,
    .hamburger span::after {
        width: 25px;
        height: 3px;
        background: #38bdf8;
        /* Same Bright Blue */
    }

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

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

    /* Animate Hamburger to X */
    .nav-links.open~.hamburger {
        border-color: transparent;
    }

    .nav-links.open~.hamburger span {
        background: transparent;
    }

    /* Close X Styles - White for visibility on Dark/Map */
    .nav-links.open~.hamburger span::before {
        transform: rotate(45deg);
        top: 0;
        background: #fff;
        /* White X */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        /* Shadow for contrast */
    }

    .nav-links.open~.hamburger span::after {
        transform: rotate(-45deg);
        top: 0;
        background: #fff;
        /* White X */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .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;
    }

    /* Logo responsiveness - STRICT FIXES */
    .logo {
        gap: 8px;
        padding: 4px 8px;
        max-width: 80%;
        /* Prevent logo from eating hamburger space */
    }

    .logo-svg {
        width: 40px;
        /* Reduced specific logo mark size if separate */
        height: auto;
        display: none;
        /* Hide large SVG mark if overlapping text on very small screens, or adjust */
    }

    /* Re-enable SVG but small */
    .logo-svg {
        display: block;
        width: 100px;
        /* Smaller SVG */
        height: 40px;
    }

    .logo-text {
        font-size: 13px;
        /* Much smaller to fit "HATRAFOM ENTERPRISE..." */
        white-space: nowrap;
        /* NO BENDING / WRAPPING */
        overflow: hidden;
        text-overflow: ellipsis;
        /* Graceful cut-off if absolutely necessary */
        line-height: 1.2;
    }
}

/* --- 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 {
    background: linear-gradient(135deg, #A11440 0%, #3778e9 50%, #C6184F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 3.5rem;
    text-shadow: 0 4px 20px rgba(55, 120, 233, 0.3);
    margin-bottom: 20px;
    animation: heroGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #A11440, #3778e9, #C6184F);
    border-radius: 2px;
    animation: lineGrow 2s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    color: #2e5bbe;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes heroGlow {
    0% {
        text-shadow: 0 4px 20px rgba(55, 120, 233, 0.3);
    }

    100% {
        text-shadow: 0 4px 30px rgba(55, 120, 233, 0.5), 0 0 40px rgba(198, 24, 79, 0.2);
    }
}

@keyframes lineGrow {
    0% {
        width: 0;
    }

    100% {
        width: 100px;
    }
}

/* 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(15, 118, 110, 0.08);
    /* Brand 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(251, 191, 36, 0.12);
    /* 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;
    }
}


/* Services / Visual Cards Section */
.services-section {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--brand);
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.15);
}

.service-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.service-card:hover .service-img-wrapper::before {
    opacity: 1;
}

.service-content {
    padding: 35px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    z-index: 2;
}

.service-icon {
    position: absolute;
    top: -35px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: white;
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border: 4px solid #f8fafc;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--brand);
    color: white;
    transform: rotateY(180deg);
}

.service-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 10px 0 15px;
    position: relative;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--brand);
}

.service-desc {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
}

.service-link i {
    color: var(--brand);
    transition: transform 0.3s;
}

.service-link:hover {
    color: var(--brand);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Stats/Counter Section */
.stats-section {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-item p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Page Revamp */
.about-hero {
    background-size: cover !important;
    background-position: center !important;
    color: white;
    text-align: center;
    position: relative;
    padding: 120px 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    /* Dark overlay */
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-lead {
    font-size: 20px;
    max-width: 700px;
    margin: 20px auto 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Feature Grid with Images */
.feature-split-section {
    padding: 80px 0;
    background: #fff;
}

.feature-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-split-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.feature-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.feature-split-section:hover .feature-split-img img {
    transform: scale(1.05);
}

.feature-split-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--brand-dark);
}

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

/* Modern Title and Subtitle Styles for Wholesale & Retail Supply */
.feature-split-section .feature-split-content h2 {
    background: linear-gradient(135deg, #A11440 0%, #3778e9 50%, #C6184F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 38px;
    text-shadow: 0 4px 20px rgba(55, 120, 233, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
    margin-bottom: 30px;
}

.feature-split-section .feature-split-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #A11440, #3778e9, #C6184F);
    border-radius: 2px;
    animation: lineGrow 2s ease-out;
}

.feature-split-section .feature-split-content>p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: rgba(31, 42, 55, 0.9);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.feature-split-section .feature-split-content>div>div {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-split-section .feature-split-content>div>div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #A11440, #3778e9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-split-section .feature-split-content>div>div:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-split-section .feature-split-content>div>div:hover::before {
    opacity: 1;
}

.feature-split-section .feature-split-content>div>div i {
    font-size: 28px;
    color: var(--brand);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-split-section .feature-split-content>div>div:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-split-section .feature-split-content>div>div h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--brand-dark);
    position: relative;
    z-index: 2;
}

.feature-split-section .feature-split-content>div>div p {
    font-size: 15px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Mission/Vision/Values Cards */
.mvv-section {
    padding: 80px 0;
    background: #f8fafc;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--brand);
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.mvv-card:hover .mvv-icon {
    background: var(--brand);
    color: #fff;
    transform: scale(1.1);
}

.mvv-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.mvv-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Modern Title and Subtitle Styles for MVV Section */
.mvv-section .section-title h2 {
    background: linear-gradient(135deg, #A11440 0%, #3778e9 50%, #C6184F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(55, 120, 233, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.mvv-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #A11440, #3778e9, #C6184F);
    border-radius: 2px;
    animation: lineGrow 2s ease-out;
}

.mvv-section .section-sub {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: rgba(31, 42, 55, 0.9);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Values List */
.values-list-visual {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

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

.values-list-visual i {
    color: #166534;
    /* Green for check */
    background: #dcfce7;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

/* Success Story Strip */
.story-strip {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/800x600?text=Video+Activities');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Modern Title and Subtitle Styles for Story Strip */
.story-content h2 {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 48px;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
    margin-bottom: 30px;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #f0f8ff, #e6f3ff);
    border-radius: 2px;
    animation: lineGrow 2s ease-out;
}

.story-content p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

@media (max-width: 900px) {
    .feature-split-grid {
        grid-template-columns: 1fr;
    }

    .feature-split-img {
        height: 300px;
        order: -1;
    }
}

/* Fix hamburger menu visibility */
.hamburger {
    z-index: 10 !important;
    position: relative;
}

.logo-text {
    z-index: 1;
}