fhtml {
    scroll-behavior: smooth;
}

:root {
    --orange: #E8650A;
    --orange-light: #FF8C3A;
    --orange-dim: #3D1C05;
    --dark: #0F0E0D;
    --dark2: #1A1917;
    --dark3: #252320;
    --steel: #2E2C28;
    --text: #F0EDE8;
    --muted: #888580;
    --muted2: #bebbb5;
    --border: rgba(255, 255, 255, 0.08);
    --card: #1C1B18;
    --green: #2ECC71;
    --red: #E74C3C;
    --blue: #3498DB;
}

.light-mode {
    --dark: #F8F9FA;
    --dark2: #E9ECEF;
    --dark3: #DEE2E6;
    --steel: #ADB5BD;
    --text: #212529;
    --muted: #6C757D;
    --muted2: #495057;
    --border: rgba(0, 0, 0, 0.1);
    --card: #FFFFFF;
    --green: #28A745;
    --red: #DC3545;
    --blue: #007BFF;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ───── VIEWS ───── */
.view {
    display: none;
    min-height: 100vh;
}

.view.active {
    display: block;
}

/* ───── NAV ───── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent rgba(15, 14, 13, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--text);
}

.logo-sub {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 3px;
    font-family: 'DM Mono', monospace;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);


}

.nav-cta {
    background: var(--orange);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--orange-light);
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.theme-toggle:hover {
    background: var(--card);
    border-color: var(--orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ───── HERO ───── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:  url('../assets/back2.jpeg');  /*linear-gradient(to top right, rgba(63, 60, 56, 0.75) 0%, rgba(15, 14, 13, 0.5) 35%, rgba(15, 14, 13, 0.2) 100%),*/
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.light-mode #section-testimonials {
    background:
        radial-gradient(circle at 50% 0%, rgba(232,101,10,0.05) 0%, transparent 60%),
        var(--dark2);
}

.light-mode #section-contact {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}

/* Keep hero section dark in light mode */
.light-mode .hero h1,
.light-mode .hero-desc,
.light-mode .hero-badge,
.light-mode .hero-actions a {
    color: #F0EDE8;
}

.light-mode .hero .btn-primary {
    background: var(--orange);
    color: white;
}

.light-mode .hero .btn-outline {
    border-color: #F0EDE8;
    color: #F0EDE8;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(232, 101, 10, 0.05) 1px, transparent 3px), linear-gradient(90deg, rgba(232, 101, 10, 0.05) 1px, transparent 3px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 101, 10, 0.15) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(81, 34, 0, 0.12);
    border: 1px solid rgba(232, 101, 10, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    color: var(--orange-light);
    font-family: 'DM Mono', monospace;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.9;
    letter-spacing: 2px;
    animation: fadeUp 0.6s 0.1s ease both;
    opacity: 0;
}

.hero h1 span {
    color: var(--orange);
}

.hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--muted2);
    max-width: 520px;
    line-height: 1.7;
    margin-top: 1.5rem;
    animation: fadeUp 0.6s 0.2s ease both;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
    opacity: 0;
}

.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    animation: fadeUp 0.6s 0.4s ease both;
    opacity: 0;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--orange);
    letter-spacing: 1px;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 2px;
    font-family: 'DM Mono', monospace;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}



/* ───── SECTIONS ───── */
section {
    padding: 6rem 2rem;
}

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

.section-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    font-size: 17px;
    max-width: 540px;
    line-height: 1.7;
}

/* ───── CATEGORIES ───── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.cat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 101, 10, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.cat-card:hover {
    border-color: rgba(232, 101, 10, 0.35);
    transform: translateY(-3px);
}

.cat-card:hover::before {
    opacity: 1;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.cat-icon {
    width: 52px;
    height: 52px;
    background: var(--orange-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 1.25rem;
}

.cat-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.cat-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.cat-count {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--orange);
    background: rgba(232, 101, 10, 0.12);
    padding: 4px 10px;
    border-radius: 100px;
}

/* ───── PRODUCTS ───── */
#products-section {
    background: var(--dark2);
}

.filter-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 1rem;
}

.filter-btn {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 320px;
    width: 100%;
}

.product-card:hover {
    border-color: rgba(232, 101, 10, 0.3);
    transform: translateY(-2px);
}

.product-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--steel);
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-family: 'DM Mono', monospace;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.product-body {
    padding: 1rem 1.25rem 1.25rem;
}

.product-cat {
    font-size: 11px;
    color: var(--orange);
    font-family: 'DM Mono', monospace;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.product-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--orange);
    letter-spacing: 1px;
}

.product-price span {
    font-size: 12px;
    font-family: 'DM Mono', monospace;
    color: var(--muted);
}

.in-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--green);
    font-family: 'DM Mono', monospace;
}

.in-stock::before,
.out-stock::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.in-stock::before {
    background: var(--green);
}

.out-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--red);
    font-family: 'DM Mono', monospace;
}

.out-stock::before {
    background: var(--red);
}

/* FEATURED PRODUCTS SECTION */
#section-featured-products {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    justify-items: center;
}

.featured-products-actions {
    text-align: center;
    margin-top: 3rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive for featured products */
@media (max-width: 1024px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .featured-products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        max-width: 400px;
        margin: 3rem auto;
    }
    
    #section-featured-products {
        padding: 3dvh ;
    }
}

@media (max-width: 480px) {
    .featured-products-grid {
        max-width: 320px;
    }
    
    .filter-bar {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .filter-bar {
        padding: 0 1rem;
        justify-content: flex-start;
    }
}

.no-products {
    text-align: center;
    padding: 4rem;
    color: var(--muted);
    grid-column: 1/-1;
}

/* ───── ADMIN MODALS ───── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-overlay.show {
    display: flex;
}

.modal-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-card.modal-sm {
    max-width: 400px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--steel);
    color: var(--text);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--dark2);
    border-radius: 0 0 12px 12px;
}

/* ───── CONTACT ───── */
#section-contact {
    background: linear-gradient(135deg, #14120f 0%, #1d1b18 100%);
    padding: 80px 2rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-map {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 42px;
    height: 42px;
    background: var(--orange-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-label {
    font-size: 12px;
    color: var(--orange);
    font-family: 'DM Mono', monospace;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.info-val {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-family: 'DM Mono', monospace;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--dark3);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(232, 101, 10, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select option {
    background: var(--dark2);
}

/* ───── FOOTER ───── */
footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 0.75rem;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange-light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
}

/* ───── ADMIN ───── */
#admin-view {
    background: var(--dark);
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
}

.login-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.login-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 2rem;
}

.login-err {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #E74C3C;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 1rem;
    display: none;
}

.admin-panel {
    display: block;
}

.admin-nav {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
}

.admin-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.admin-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.admin-title span {
    color: var(--orange);
}

.admin-nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-user {
    font-size: 13px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
}

.btn-sm {
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    border: none;
}

.btn-danger {
    background: rgba(231, 76, 60, 0.12);
    color: #E74C3C;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.btn-danger:hover {
    background: rgba(231, 76, 60, 0.2);
}

.btn-success {
    background: var(--orange);
    color: white;
}

.btn-success:hover {
    background: var(--orange-light);
}

.btn-ghost {
    background: var(--card);
    color: var(--muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text);
}

.admin-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
}

.admin-tab {
    background: none;
    border: none;
    color: var(--muted);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: -1px;
}

.admin-tab.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.admin-tab:hover:not(.active) {
    color: var(--text);
}

.admin-pane {
    display: none;
}

.admin-pane.active {
    display: block;
}

/* Dashboard cards */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.dash-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.dash-card-label {
    font-size: 11px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.dash-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.dash-card-num.orange {
    color: var(--orange);
}

.dash-card-num.green {
    color: var(--green);
}

.dash-card-num.blue {
    color: var(--blue);
}

.recent-table {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.table-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead tr {
    border-bottom: 1px solid var(--border);
}

th {
    padding: 10px 16px;
    text-align: left;
    font-size: 11px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    letter-spacing: 2px;
    font-weight: 400;
}

td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

tr:last-child td {
    border-bottom: none;
}

.badge {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-family: 'DM Mono', monospace;
}

.badge-green {
    background: rgba(46, 204, 113, 0.12);
    color: var(--green);
}

.badge-orange {
    background: rgba(232, 101, 10, 0.12);
    color: var(--orange-light);
}

.badge-red {
    background: rgba(231, 76, 60, 0.1);
    color: var(--red);
}

.badge-blue {
    background: rgba(52, 152, 219, 0.1);
    color: var(--blue);
}

/* Product form */
.prod-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.prod-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.prod-form-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.form-full {
    grid-column: 1/-1;
}

.success-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--green);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    pointer-events: none;
}

.success-toast.show {
    opacity: 1;
    transform: none;
}

/* Manage products table actions */
.action-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.action-btn:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
}

.action-btn.del:hover {
    color: var(--red);
    border-color: rgba(231, 76, 60, 0.3);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media(max-width:768px) {
    .hero h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .prod-form-grid {
        grid-template-columns: 1fr;
    }

    .dash-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

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

/* Mobile nav */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--muted);
    cursor: pointer;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--text);
}

.theme-toggle-mobile {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 1rem 0;
}

.theme-toggle-mobile:hover {
    background: var(--card);
    border-color: var(--orange);
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--steel);
    border-radius: 3px;
}

.emoji-picker {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 0.5rem;
}

.emoji-opt {
    background: var(--dark3);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 8px;
    font-size: 22px;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
}

.emoji-opt.selected,
.emoji-opt:hover {
    border-color: var(--orange);
}

.hidden {
    display: none !important;
}

/* ───── ABOUT SECTION ───── */
#section-about {
    background: var(--dark2);
    padding: 80px 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-block {
    padding: 24px;
    border-left: 3px solid var(--orange);
    background: rgba(232, 101, 10, 0.05);
    border-radius: 8px;
}

.about-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--orange);
    font-weight: 600;
}

.about-block p {
    color: var(--muted2);
    line-height: 1.6;
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--orange);
    background: rgba(232, 101, 10, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.feature-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

#btn-about {
    /* width: 40%; */
    text-align: center;
}

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

/* ───── TESTIMONIALS SECTION ───── */
/* ─── SECTION ─── */
#section-testimonials {
  padding: 80px 2rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(232,101,10,0.10) 0%, transparent 60%),
    #0b0b0a;
    height: 100vh;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

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

.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 3rem;
}

/* ─── SLIDER SHELL ─── */
.t-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* left / right fade masks */
.t-slider::before,
.t-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.t-slider::before {
  left: 0;
  background: linear-gradient(to right, #0b0b0a, transparent);
}
.t-slider::after {
  right: 0;
  background: linear-gradient(to left, #0b0b0a, transparent);
}

/* ─── TRACK ─── */
.t-track {
  display: flex;
  gap: 20px;
  /* transition driven by JS — set via style.transitionDuration */
  will-change: transform;
}

/* ─── CARD ─── */
.t-card {
  flex: 0 0 var(--card-w, 340px); /* JS overrides --card-w on resize */
  background: linear-gradient(160deg, #171614 0%, #1f1d1a 100%);
  border: 1px solid rgba(232,101,10,0.18);
  border-radius: 14px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
  user-select: none;
}

.t-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 15%, rgba(232,101,10,0.10), transparent 55%);
  pointer-events: none;
}

.t-card:hover {
  border-color: rgba(232,101,10,0.5);
  transform: translateY(-4px);
}

/* quote mark */
.t-card-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: rgba(232,101,10,0.20);
  line-height: 1;
  margin-bottom: -4px;
  display: block;
}

.t-stars {
  font-size: 14px;
  letter-spacing: 3px;
  color: #FFD700;
  margin-bottom: 14px;
}

.t-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted2);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.t-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 2px;
}

.t-role {
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.5px;
}

/* ─── CONTROLS ─── */
.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.t-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(232,101,10,0.3);
  background: transparent;
  color: var(--orange);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
  flex-shrink: 0;
}
.t-arrow:hover {
  background: rgba(232,101,10,0.12);
  border-color: var(--orange);
}
.t-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.t-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.t-dot:hover  { background: var(--orange-light); transform: scale(1.2); }
.t-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ─── AUTOPLAY PROGRESS BAR ─── */
.t-progress-wrap {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}
.t-progress-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  #section-testimonials { padding: 60px 1.25rem; }
  .t-slider::before, .t-slider::after { width: 28px; }
}

/* ───── CTA SECTION ───── */
.cta-section {
    background: linear-gradient(135deg, var(--orange-dim) 0%, rgba(232, 101, 10, 0.2) 100%);
    padding: 80px 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: var(--muted2);
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-lg {
    padding: 16px 48px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

/* ───── CONTACT MAP ───── */
.contact-map {
    padding: 24px;
    background: var(--dark2);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-map iframe {
    display: block;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .btn-lg {
        padding: 12px 32px !important;
        font-size: 14px !important;
    }
}

/* ===== MODERN TESTIMONIALS SECTION (Original Theme) ===== */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 12px;
    padding: 1.5rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    min-width: calc(33.333% - 2rem);
    margin: 0 1rem;
    position: relative;
    background: linear-gradient(180deg, #171614 0%, #1f1d1a 100%);
    padding: 32px;
    border: 1px solid rgba(232, 101, 10, 0.2);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(232, 101, 10, 0.1), transparent 50%);
    pointer-events: none;
}

.light-mode .testimonial-card {
    background: var(--card);
    border-color: var(--border);
    color: var(--text);
}

.light-mode .testimonial-card:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.light-mode .testimonial-card::before {
    background: radial-gradient(circle at 20% 20%, rgba(232,101,10,0.08), transparent 55%);
}

.light-mode .testimonials-wrapper::before,
.light-mode .testimonials-wrapper::after {
    background: linear-gradient(to right, rgba(248,249,250,0.95), transparent);
}

.light-mode .testimonials-wrapper::after {
    background: linear-gradient(to left, rgba(248,249,250,0.95), transparent);
}

.testimonial-stars {
    font-size: 16px;
    color: #FFD700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted2);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--orange);
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 12px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
}

/* Fade edges for smooth scrolling effect */
.testimonials-wrapper::before,
.testimonials-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0b0b0a, transparent);
}

.testimonials-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0b0b0a, transparent);
}

/* Navigation dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.testimonial-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}

/* Responsive testimonials */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 2rem);
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        min-width: calc(100% - 2rem);
        margin: 0 1rem; 
        padding: 1.5rem;
    }
    
    .testimonials-wrapper::before,
    .testimonials-wrapper::after {
        width: 40px;
    }
    
    .testimonial-stars {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Hero Section */
.about-hero-section {
    min-height: 60vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/back1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
}

.about-hero-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    color: white;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Content Sections with Alternating Alignment */
.about-content-section {
    padding: 6rem 0;
    background: #1a1a1a;
    position: relative;
}

.about-content-section:nth-child(even) {
    background: #222222;
}

.about-section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-section-header {
    margin-bottom: 3rem;
}

/* Section alignment - first section left, then alternating */
.about-content-section:nth-child(2) .about-section-header {
    text-align: left;
}

.about-content-section:nth-child(3) .about-section-header {
    text-align: right;
}

.about-content-section:nth-child(4) .about-section-header {
    text-align: left;
}

.about-content-section:nth-child(5) .about-content-section-header {
    text-align: right;
}

.about-content-section:nth-child(6) .about-content-section-header {
    text-align: left;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}

.about-content-section:nth-child(2) .about-section-title {
    border-left: 4px solid var(--orange);
    padding-left: 1rem;
}

.about-content-section:nth-child(3) .about-section-title {
    border-right: 4px solid var(--orange);
    padding-right: 1rem;
}

.about-content-section:nth-child(4) .about-section-title {
    border-left: 4px solid var(--orange);
    padding-left: 1rem;
}

.about-content-section:nth-child(5) .about-content-section-title {
    border-right: 4px solid var(--orange);
    padding-right: 1rem;
}

.about-content-section:nth-child(6) .about-content-section-title {
    border-left: 4px solid var(--orange);
    padding-left: 1rem;
}

.about-section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: none;
    margin: 0;
}

.about-content-section:nth-child(2) .about-section-description {
    text-align: left;
}

.about-content-section:nth-child(3) .about-section-description {
    text-align: right;
}

.about-content-section:nth-child(4) .about-content-section-description {
    text-align: left;
}

.about-content-section:nth-child(5) .about-content-section-description {
    text-align: right;
}

.about-content-section:nth-child(6) .about-content-section-description {
    text-align: left;
}

.about-section-description strong {
    color: var(--orange);
    font-weight: 500;
}

/* Mission & Vision Blocks */
.about-mission-vision {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.about-mission-block, .about-vision-block {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-mission-block:last-child, .about-vision-block:last-child {
    border-bottom: none;
}

.about-block-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.about-block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.about-block-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Team Management Cards with Testimonial-Style Scrolling */
.about-team-summary {
    margin-top: 2rem;
}

.about-team-wrapper {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 12px;
    padding: 1.5rem;
}

.about-team-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.about-team-card {
    min-width: calc(33.333% - 2rem);
    margin: 0 1rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.about-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #e67e00);
}

.about-team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-team-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-team-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.about-team-card-role {
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-team-card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Fade edges for smooth scrolling effect */
.about-team-wrapper::before,
.about-team-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.about-team-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #1a1a1a, transparent);
}

.about-team-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #1a1a1a, transparent);
}

/* Team dots navigation */
.about-team-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.about-team-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-team-dot.active {
    background: var(--orange);
    transform: scale(1.2);
}

.about-team-dot:hover {
    background: rgba(255, 165, 0, 0.7);
}

/* Work Summary */
.about-work-summary {
    margin-top: 2rem;
    padding: 2rem 0;
}

.about-work-summary p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Commitment Banner */
.about-commitment-banner {
    background: var(--orange);
    padding: 4rem 2rem;
    text-align: center;
}

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

.about-commitment-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.about-commitment-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-commitment-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-top: 2rem;
}

/* Animations */
@keyframes aboutFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: aboutFadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

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

    .about-section-title {
        font-size: 2rem;
    }

    .about-section-description {
        font-size: 1rem;
    }

    .about-content-section {
        padding: 4rem 0;
    }

    .about-section-header {
        margin-bottom: 2rem;
    }

    .about-block-icon {
        font-size: 2rem;
    }

    .about-block-title {
        font-size: 1.5rem;
    }

    .about-block-content {
        font-size: 1rem;
    }

    .about-team-card {
        min-width: calc(100% - 2rem);
    }

    .about-team-wrapper::before,
    .about-team-wrapper::after {
        width: 40px;
    }

    .about-commitment-banner {
        padding: 3rem 1.5rem;
    }

    .about-commitment-title {
        font-size: 2rem;
    }

    .about-commitment-text {
        font-size: 1rem;
    }

    .about-commitment-tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content {
        padding: 2rem 1rem;
    }

    .about-section-container {
        padding: 0 1rem;
    }

    .about-team-card {
        padding: 1.5rem;
    }

    .about-commitment-banner {
        padding: 3rem 1rem;
    }
}

/* ===== PRODUCTS PAGE STYLES ===== */

/* No Products Message */
.products-no-products {
    text-align: center;
    padding: 4rem;
    color: var(--muted);
    grid-column: 1/-1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern Filter Buttons */
.products-filter-btn-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.products-filter-btn-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.products-filter-btn-modern.active {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 101, 10, 0.3);
}

.products-filter-icon {
    font-size: 1rem;
}

/* Modern Search Input */
.products-search-input-modern {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.products-search-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.products-search-input-modern:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 101, 10, 0.1);
}

/* Modern Product Grid */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    animation: productsFadeInUp 0.6s ease;
}

/* Modern Product Card */
.products-product-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.products-product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.products-product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.products-product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.products-product-card-modern:hover .products-product-image-container img {
    transform: scale(1.1);
}

.products-product-badge-modern {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.products-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.products-quick-view-btn {
    background: var(--orange);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-quick-view-btn:hover {
    background: #e67e00;
    transform: scale(1.05);
}

.products-product-info {
    padding: 1.5rem;
}

.products-product-category {
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.products-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.products-product-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

.products-product-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.products-price-section {
    display: flex;
    flex-direction: column;
}

.products-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.products-price-unit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.products-stock-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.products-stock-status.in-stock {
    background: rgba(80, 200, 120, 0.2);
    color: #50c878;
}

.products-stock-status.out-stock {
    background: rgba(255, 99, 71, 0.2);
    color: #ff6347;
}

/* Products Page Animations */
@keyframes productsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes productsFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Products Page Parallax Hero */
.products-hero-parallax {
    background: #1a1a1a;
}

.products-hero-background {
    will-change: transform;
}

.products-floating-orb {
    will-change: transform, opacity;
}

/* Products Page Scroll-triggered animations */
.products-hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: productsFadeInUp 0.8s ease forwards;
}

.products-hero-content .section-tag {
    animation-delay: 0.2s;
}

.products-hero-content h1 {
    animation-delay: 0.4s;
}

.products-hero-content .hero-desc {
    animation-delay: 0.6s;
}

.products-hero-content .hero-stats {
    animation-delay: 0.8s;
}

/* Products Page Responsive Design */
@media (max-width: 768px) {
    .products-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .products-filter-section {
        padding: 1.5rem;
    }

    .products-filter-buttons {
        width: 100%;
        justify-content: center;
    }

    .products-search-container {
        width: 100%;
        max-width: none;
    }

    .products-hero-content {
        padding: 4rem 0;
    }

    .products-hero-content h1 {
        font-size: 2.5rem;
    }

    .products-hero-content .hero-desc {
        font-size: 1rem;
    }
}

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

    .products-filter-btn-modern {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .products-product-card-modern {
        margin: 0 auto;
        max-width: 300px;
    }
}

/* ===== ADMIN PAGE STYLES ===== */

/* Admin Layout */
.admin-admin-layout {
    display: flex;
    min-height: 100vh;
    background: var(--dark);
}

.admin-admin-sidebar {
    width: 250px;
    background: var(--dark2);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

.admin-admin-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--steel);
}

.admin-admin-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    text-decoration: none;
}

.admin-admin-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.admin-admin-logo-text {
    display: flex;
    flex-direction: column;
}

.admin-admin-logo-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
}

.admin-admin-logo-sub {
    font-size: 0.75rem;
    color: var(--muted);
}

.admin-admin-nav-menu {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.admin-admin-nav-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    font-size: 14px;
    font-weight: 500;
}

.admin-admin-nav-item:hover {
    background: var(--steel);
    color: var(--text);
}

.admin-admin-nav-item.active {
    background: var(--steel);
    color: var(--orange);
    border-left-color: var(--orange);
}

.admin-admin-nav-item-icon {
    margin-right: 0.75rem;
    font-size: 16px;
}

.admin-admin-main {
    flex: 1;
    margin-left: 250px;
    display: flex;
    flex-direction: column;
}

.admin-admin-topbar {
    height: 60px;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-admin-breadcrumb {
    color: var(--muted);
    font-size: 14px;
}

.admin-admin-breadcrumb span {
    color: var(--text);
    margin: 0 0.5rem;
}

.admin-admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-admin-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--steel);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
}

.admin-admin-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

/* Admin Mobile Responsive */
@media (max-width: 768px) {
    .admin-admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .admin-admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-admin-main {
        margin-left: 0;
    }

    .admin-admin-mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--text);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }

    .admin-admin-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .admin-admin-overlay.show {
        display: block;
    }
}

@media (min-width: 769px) {
    .admin-admin-mobile-menu-btn {
        display: none;
    }

    .admin-admin-overlay {
        display: none !important;
    }
}

