/* ===============================================
   AL-JABRI SAFI - PREMIUM DARK THEME
   Colors: Black #0f0f0f, Charcoal #121212, Gold #d4af37, Emerald #2e7d64
   =============================================== */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

/* ---------- GOLD & ACCENT COLORS ---------- */
.gold-text {
    color: #d4af37;
}

.emerald-text {
    color: #2e7d64;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #0f0f0f;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #e0c255, #c4a230);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #0f0f0f;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
}

.btn-outline:hover {
    border-color: #d4af37;
    background: rgba(212,175,55,0.1);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: #d4af37;
    color: #0f0f0f;
    border-radius: 30px;
    font-weight: 500;
}

.btn-small:hover {
    background: #b8942e;
    transform: translateY(-2px);
}

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login, .btn-register {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-login {
    color: #d4af37;
}

.btn-register {
    background: #d4af37;
    color: #0f0f0f;
    padding: 8px 18px;
    border-radius: 30px;
}

.user-greeting {
    font-size: 0.9rem;
    color: #d4af37;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #121212;
    padding: 20px;
    border-top: 1px solid #d4af37;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin: 15px 0;
}

.mobile-nav-links a {
    font-size: 1.2rem;
}

/* ---------- HERO SECTION ---------- */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('../img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, #0f0f0f);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: #d4af37;
    margin: 8px auto 0;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}
.animate-fade-in-up {
    animation: fadeIn 1s ease forwards;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: #aaa;
    font-size: 1.1rem;
}

/* ---------- PRODUCT GRID ---------- */
.products-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card, .blog-card, .testimonial-card {
    background: #121212;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s;
    border: 1px solid rgba(212,175,55,0.2);
}

.glass-card {
    backdrop-filter: blur(4px);
    background: rgba(18, 18, 18, 0.8);
}

.product-card:hover, .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
    border-color: rgba(212,175,55,0.5);
}

.product-image {
    height: 260px;
    overflow: hidden;
}

.product-image img, .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info, .blog-info {
    padding: 24px;
}

.product-title, .blog-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.6rem;
    color: #d4af37;
    margin: 16px 0;
    font-weight: 600;
}

/* ---------- BENEFITS SECTION ---------- */
.dark-bg {
    background: #0a0a0a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #d4af37;
}

/* ---------- ABOUT PREVIEW ---------- */
.about-preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-preview-text {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #2e7d64, #1a4d3e);
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 28px;
    text-align: center;
}

.testimonial-rating {
    margin-bottom: 16px;
    color: #d4af37;
    font-size: 1.2rem;
}

.star.filled {
    color: #d4af37;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: #d4af37;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    position: relative;
    background: url('../img/cta-bg.jpg') center/cover fixed;
    padding: 100px 0;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.7);
}

.cta-content {
    position: relative;
    z-index:2;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-outline-light {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
}

.btn-outline-light:hover {
    background: #fff;
    color: #0f0f0f;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
}

.footer-description {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-cert {
    display: flex;
    gap: 16px;
    color: #d4af37;
    font-size: 0.85rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
}

.social-icons a {
    background: rgba(212,175,55,0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    color: #d4af37;
}

.social-icons a:hover {
    background: #d4af37;
    color: #0f0f0f;
    transform: translateY(-3px);
}

.footer-form {
    display: flex;
    margin-top: 10px;
}

.footer-form input {
    flex: 1;
    padding: 10px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.footer-form button {
    background: #d4af37;
    border: none;
    padding: 0 16px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    color: #0f0f0f;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.85rem;
    color: #888;
}

.credit .gold-text {
    font-weight: 600;
}

.footer-legal a {
    color: #888;
    margin-left: 20px;
}

.footer-legal a:hover {
    color: #d4af37;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .main-nav, .header-actions {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .about-preview-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .products-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* Hero Slideshow - No Overlay */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.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;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Text shadow for readability on bright images */
.hero-title, .hero-subtitle {
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

/* Keep existing button styles and animations */
/* Auth Pages (Login/Register) */
.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}
.auth-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 48px 40px;
    background: rgba(18, 18, 18, 0.95);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.auth-header {
    text-align: center;
    margin-bottom: 32px;
}
.auth-header h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 8px;
}
.auth-header p {
    color: #aaa;
}
.auth-form .form-group {
    margin-bottom: 24px;
}
.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ddd;
}
.auth-form input {
    width: 100%;
    padding: 14px 16px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}
.auth-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}
.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}
.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}
.auth-footer a {
    color: #d4af37;
}
.auth-footer a:hover {
    text-decoration: underline;
}
.auth-error {
    background: rgba(255, 70, 70, 0.1);
    border: 1px solid rgba(255, 70, 70, 0.5);
    color: #ff6b6b;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}.auth-success {
    background: rgba(46, 125, 100, 0.15);
    border: 1px solid #2e7d64;
    color: #2e7d64;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}
.form-hint {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 5px;
}
/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}
.page-banner p {
    font-size: 1.2rem;
    color: #aaa;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-text {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}
.story-image .image-placeholder {
    background: linear-gradient(135deg, #2e7d64, #1a4d3e);
    height: 400px;
    border-radius: 20px;
}
.story-placeholder {
    background-image: url('../img/about-placeholder.jpg');
    background-size: cover;
    background-position: center;
}

/* Mission Cards */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.mission-card {
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.3s;
}
.mission-card:hover {
    transform: translateY(-8px);
}
.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.mission-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #d4af37;
}
.mission-card p {
    color: #bbb;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}
.value-item {
    text-align: center;
    padding: 20px;
}
.value-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    opacity: 0.5;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
}
.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.value-item p {
    color: #aaa;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .page-banner {
        padding: 100px 0 40px;
    }
}
/* About Page Hero */
.about-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
}
.about-hero-content {
    position: relative;
    z-index: 2;
}
.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}
.about-hero-content p {
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
    .about-hero {
        min-height: 300px;
    }
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
}
/* About Page Hero - Full Image Visible */
.about-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* Change to 'contain' if you want uncropped, but may leave gaps */
    /* To show more of the image without cropping, use 'contain' and a solid background */
}

/* Alternative: use 'contain' to show entire image (may have letterboxing) */
/* Uncomment below if you prefer full image visible with black bars */
/*
.about-hero {
    background-size: contain;
    background-color: #0f0f0f;
}
*/
/* About Page Hero - Reuse homepage hero styles */
.about-page-hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Ensure text shadow for readability */
.about-page-hero .hero-title,
.about-page-hero .hero-subtitle {
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}
/* Remove any conflicting styles from previous about-hero */
.about-hero {
    /* This class is no longer used if you replace with .hero.about-page-hero */
}
/* Typing effect styles */
.typing-title span,
.typing-subtitle span {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #d4af37;
    animation: blinkCursor 0.8s step-end infinite;
}

@keyframes blinkCursor {
    0%, 100% { border-color: #d4af37; }
    50% { border-color: transparent; }
}

/* For responsiveness - wrap text on smaller screens */
@media (max-width: 768px) {
    .typing-title span,
    .typing-subtitle span {
        white-space: normal;
        border-right: none;
        animation: none;
    }
}
/* About Page Hero - Enhanced Text Visibility */
.about-page-hero {
    position: relative;
}

/* Add a subtle dark gradient overlay ONLY behind text area */
.about-page-hero .hero-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,30,20,0.7) 100%);
    padding: 40px 60px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
    display: inline-block;
    margin: 0 auto;
}

/* Typing text styles - Dark Green Bold with Goldish Effect */
.typing-title span {
    font-size: 4rem;
    font-weight: 800;
    color: #d4af37; /* Gold */
    text-shadow: 0 0 15px rgba(212,175,55,0.8), 0 2px 5px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.typing-subtitle span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d64; /* Emerald green */
    text-shadow: 0 0 10px rgba(46,125,100,0.6), 0 2px 5px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

/* Keep cursor blink but ensure it's visible */
.typing-title span, .typing-subtitle span {
    border-right: 2px solid #d4af37;
    padding-right: 5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .about-page-hero .hero-content {
        padding: 20px 30px;
        width: 90%;
    }
    .typing-title span {
        font-size: 2.2rem;
    }
    .typing-subtitle span {
        font-size: 1rem;
    }
}
.story-logo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
    transition: transform 0.3s;
}
.story-logo-img:hover {
    transform: scale(1.02);
}
@media (max-width: 768px) {
    .story-logo-img {
        max-width: 250px;
    }
}
/* ===============================================
   Mobile Responsiveness Fixes
   =============================================== */

/* Fix mobile navigation - slide from left */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #121212;
    padding: 20px;
    border-top: 1px solid #d4af37;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}
.mobile-nav.active {
    transform: translateX(0);
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-links li {
    margin: 15px 0;
}
.mobile-nav-links a {
    color: #fff;
    font-size: 1.2rem;
    display: block;
    padding: 10px;
    text-align: center;
}
.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #d4af37;
    margin: 5px 0;
    transition: 0.3s;
}

/* About page story section - mobile responsive */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .story-logo-img {
        max-width: 80% !important;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    .story-content {
        order: 1;
    }
    .story-image {
        order: 2;
    }

    /* Hero typing text on mobile */
    .about-page-hero .hero-content {
        padding: 20px;
        width: 95%;
    }
    .typing-title span {
        font-size: 1.8rem !important;
        white-space: normal;
        word-break: break-word;
        line-height: 1.2;
    }
    .typing-subtitle span {
        font-size: 1rem !important;
        white-space: normal;
    }

    /* Mission cards */
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* General spacing */
    .section-padding {
        padding: 50px 0;
    }
    .section-title {
        font-size: 2rem;
    }
}
/* Pagination */
.pagination-wrapper {
    text-align: center;
    margin-top: 50px;
}
.pagination {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}
.pagination a {
    display: inline-block;
    padding: 8px 14px;
    background: #1a1a1a;
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s;
}
.pagination a.active,
.pagination a:hover {
    background: #d4af37;
    color: #0f0f0f;
}
.no-products {
    text-align: center;
    padding: 60px;
    background: #121212;
    border-radius: 20px;
}
/* Product Detail Page */
.product-detail-section {
    background: #0f0f0f;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.product-detail-image img,
.product-image-placeholder {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.product-image-placeholder {
    background: linear-gradient(135deg, #1a4d3e, #2e7d64);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.product-detail-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #d4af37;
}
.product-detail-price {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212,175,55,0.3);
}
.product-detail-description {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 32px;
}
.product-detail-actions {
    display: flex;
    gap: 20px;
}
.error-section {
    text-align: center;
    padding: 100px 0;
}
.error-content h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-detail-title {
        font-size: 1.8rem;
    }
}