* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F8FAFC;
    --card: #FFFFFF;
    --primary-red: #E63946;
    --primary-red-dark: #C1121F;
    --primary-red-light: #F5E5E6;
    --accent-gold: #D97706;
    --accent-teal: #0D9488;
    --text: #1F2937;
    --text-secondary: #6B7280;
    --gray: #9CA3AF;
    --border: #E5E7EB;
}

[data-theme="light"] {
    --bg: #F8FAFC;
    --card: #FFFFFF;
    --primary-red: #E63946;
    --primary-red-dark: #C1121F;
    --primary-red-light: #F5E5E6;
    --accent-gold: #D97706;
    --accent-teal: #0D9488;
    --text: #1F2937;
    --text-secondary: #6B7280;
    --gray: #9CA3AF;
    --border: #E5E7EB;
}

[data-theme="dark"] {
    --bg: #070c17;
    --card: #1E293B;
    --primary-red: #E63946;
    --primary-red-dark: #C1121F;
    --primary-red-light: #8B0000;
    --accent-gold: #FBBF24;
    --accent-teal: #14B8A6;
    --text: #F1F5F9;
    --text-secondary: #CBD5E1;
    --gray: #64748B;
    --border: #334155;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s, color 0.3s;
}


.top-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, #C1121F 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.top-banner p {
    margin: 0;
}


header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(10, 14, 20, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(230, 57, 70, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%; 
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 42px; 
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-link:hover .logo-img {
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
}


.desktop-nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
    margin: 0 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8); 
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 16px;
    border-radius: 12px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    background: rgba(230, 57, 70, 0.05);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 10px;
    box-shadow: 0 0 8px var(--primary-red);
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 8px 12px;
    min-width: 220px;
    max-width: 320px;
    width: 100%;
}

.nav-search-input {
    flex: 1;
    min-width: 120px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 14px;
}

.nav-search-input::placeholder {
    color: var(--gray);
}

.nav-search-button {
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-search-button:hover {
    color: var(--primary-red);
}

.product-filters {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 4px;
    flex-wrap: wrap;
}

.product-filters label {
    color: var(--text-secondary);
    font-size: 14px;
    white-space: nowrap;
}

.category-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 40px 10px 16px; 
    min-width: 200px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23E63946' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C2.185 5.355 2.398 5 2.815 5h9.737c.417 0 .63.355.364.659l-4.796 5.482a.5.5 0 0 1-.732 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.category-select:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.1);
}

.category-select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.category-select option {
    background: var(--card);
    color: var(--text);
    padding: 10px;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: var(--text);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.mobile-menu-toggle i {
    font-size: 18px;
}

@media (max-width: 920px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
        position: relative;
    }

    .desktop-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 12, 23, 0.96);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        padding: 18px 16px 18px;
        flex-direction: column;
        gap: 14px;
        z-index: 100;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.35s ease;
    }

    .desktop-nav.active {
        display: flex;
        max-height: 480px;
        opacity: 1;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-right {
        width: 100%;
        justify-content: flex-end;
    }

    .nav-search-form {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .nav-search-input {
        min-width: 0;
    }

    .desktop-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .desktop-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav-right {
        width: 100%;
        justify-content: flex-end;
    }

    .nav-search-form {
        max-width: 100%;
    }
}


.container {
    width: 90%;
    max-width: 1400px;
    margin: 40px auto;
    padding-bottom: 40px;
}


.slider-section {
    margin-bottom: 60px;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 18px;
}

.slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.slide.active {
    opacity: 1;
}

.slide-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.slide-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    padding: 30px 20px 20px;
    color: white;
}

.slide-info h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}

.slider-btn {
    background: var(--primary-red);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #D62828;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.slider-btn.prev {
    order: -1;
}


.section-title {
    margin: 60px 0 40px 0;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.section-title i {
    color: var(--primary-red);
    font-size: 32px;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}


.card {
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-red);
    box-shadow: 0 12px 28px rgba(230, 57, 70, 0.15);
}

.image-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .image-box img {
    transform: scale(1.05);
}

.card-details {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.price {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #C1121F 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px 22px; 
    border-radius: 14px; 
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    cursor: pointer;
    line-height: 1.2;
}

.wa-btn:hover {
    background: linear-gradient(135deg, #D62828 0%, #A00C1F 100%);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    transform: translateY(-2px);
}

.wa-btn:active {
    transform: translateY(0);
}

.loader {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}


.footer {
    background: #05070d;
    padding: 60px 5%;
    margin-top: 80px;
    color: #d1d5db;
}

[data-theme="dark"] .footer {
    background: #05070d;
    color: #d1d5db;
}

.footer-hero {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-hero .hero-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 8px;
}

.footer-hero strong {
    color: #ffffff;
    font-size: 18px;
}

.footer-up {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(180px, 1fr));
    gap: 34px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-gold);
    color: #0f172a;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 18px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-section li::before {
    content: '•';
    color: var(--primary-red-dark);
    display: inline-block;
    width: 16px;
    margin-right: 10px;
    line-height: 1.5;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-section a:hover {
    color: var(--primary-red-dark);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom a:hover {
    color: var(--primary-red-dark);
}

@media (max-width: 980px) {
    .footer-up {
        grid-template-columns: 1fr;
    }

    .footer-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}


.product-detail-page {
    padding: 40px 0 80px;
}
.product-detail-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.2);
    padding: 12px 18px;
    border-radius: 999px;
    margin-bottom: 30px;
    transition: all 0.25s ease;
}
.product-detail-page .back-link:hover {
    background: rgba(230, 57, 70, 0.16);
}
.detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
    align-items: start;
    max-width: 1200px;
}
.detail-image {
    width: 650px;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}


.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    
    transition: transform 0.3s ease;
}
.detail-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail-info h1 {
    font-size: clamp(2rem, 2.4vw, 3.2rem);
    margin: 0;
    line-height: 1.05;
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 16px;
    background: var(--primary-red-light);
    color: var(--text);
    font-weight: 600;
}
.detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
}
.detail-description {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1rem;
}
.detail-order {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}
.detail-order .wa-btn,
.detail-order .detail-btn {
    flex: 1;
    min-width: 180px;
}
.detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
    align-items: center;
    margin: 0 0 35px 0;
    max-width: 1200px;
}
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 28px 0;
}
.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--primary-red-light);
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
}
.badge-secondary {
    background: rgba(14, 165, 233, 0.12);
    color: var(--accent-teal);
}
.detail-short {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}
.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 120px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}
.info-card strong {
    color: var(--text);
    font-size: 0.95rem;
}
.info-card span {
    color: var(--text-secondary);
    font-size: 0.96rem;
}
.detail-description-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}
.description-head h2 {
    margin: 0 0 8px 0;
    font-size: 2rem;
}
.description-head p {
    margin: 0;
    color: var(--text-secondary);
}
.feature-list {
    margin-top: 24px;
}
.feature-list h3 {
    margin-bottom: 14px;
    font-size: 1.15rem;
}
.feature-list ul {
    list-style: inside disc;
    color: var(--text-secondary);
    line-height: 1.8;
}
.feature-list li {
    margin-bottom: 10px;
}
.product-detail-page .related-products {
    margin-top: 55px;
}
.related-products h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.related-card {
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.related-card .card-details {
    padding: 18px;
    text-align: left;
}
.related-card .card-details h4 {
    margin: 0 0 10px 0;
    font-size: 1.05rem;
}
.related-card .card-details .price {
    margin-bottom: 14px;
}


.about-section {
    margin-top: 40px;
}
.about-content {
    display: grid;
    gap: 20px;
    line-height: 1.75;
    color: var(--text-secondary);
}
.mission-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 20px;
    margin: 35px 0;
}
.mission-values > div {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.mission-values h2 {
    margin-bottom: 14px;
}
.mission-values p {
    margin: 0;
    color: var(--text-secondary);
}
.faq-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}
.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.faq-item p {
    color: var(--text-secondary);
    line-height: 1.75;
}


.contact-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-top: 40px;
}
.contact-hero-text {
    flex: 1.2;
    max-width: 700px;
}
.contact-hero-text .eyebrow {
    display: inline-flex;
    color: var(--accent-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.contact-hero-text h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin-bottom: 20px;
    line-height: 1.05;
}
.contact-hero-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.contact-hero-card {
    flex: 0.9;
    background: var(--card);
    border-radius: 28px;
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    min-width: 280px;
}
.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}
.hero-card-top span {
    color: var(--text-secondary);
    font-weight: 700;
}
.hero-card-badge {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--primary-red-light);
    color: var(--text);
    font-weight: 700;
}
.contact-hero-card h2 {
    margin: 0 0 16px 0;
}
.contact-hero-card p {
    margin: 0 0 20px 0;
    color: var(--text-secondary);
    line-height: 1.75;
}
.contact-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.contact-hero-card li {
    color: var(--text-secondary);
    line-height: 1.75;
}


@media (max-width: 1000px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .detail-image {
        width: 380px;
        height: 288px;
        margin: 0 auto;
    }
    .detail-info-grid {
        grid-template-columns: 1fr;
    }
    .detail-order {
        flex-direction: column;
    }
    .mission-values {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 760px) {
    .contact-hero {
        flex-direction: column;
        gap: 24px;
    }
    .contact-hero-card,
    .contact-hero-text {
        width: 100%;
    }
    .about-content,
    .mission-values,
    .faq-list,
    .related-grid,
    .grid-container {
        grid-template-columns: 1fr;
    }
    .grid-container {
        gap: 18px;
    }
    .contact-hero-text h1 {
        font-size: 2.4rem;
    }
    .logo-text {
        display: none;
    }
    .nav-container {
        padding: 12px 4%;
    }
    .container {
        width: 95%;
    }
    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .slide-image {
        height: 220px;
    }
    .product-actions {
        flex-direction: column;
    }
    .price {
        font-size: 22px;
    }
    .wa-btn,
    .detail-btn {
        width: 100%;
    }
    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .mission-values {
        grid-template-columns: 1fr;
    }
    .contact-hero h1,
    .section-title h2 {
        font-size: 1.8rem;
    }
    .nav-search-form {
        max-width: 100%;
    }
    .nav-link {
        width: 100%;
        text-align: center;
    }
}


.detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 13px 22px; 
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px; 
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.2;
}
.detail-btn:hover {
    background: rgba(230, 57, 70, 0.08);
}


.admin-screen {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
}
#login-screen,
#admin-panel {
    width: 100%;
}
#login-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(22, 22, 25, 0.98), rgba(11, 11, 15, 0.98));
    padding: 40px 20px;
}
.login-box {
    background: var(--card);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.18);
}
.login-box h2 {
    margin-bottom: 28px;
    color: var(--primary-red-dark);
    font-size: 1.8rem;
}
.login-box input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text);
}
.login-box button {
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    cursor: pointer;
}

#admin-panel {
    display: none;
    padding: 40px 5%;
}
.admin-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.admin-header h1 {
    font-size: 2rem;
    margin: 0;
}
.logout-btn {
    background: var(--primary-red);
    color: white;
    padding: 12px 22px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}
.admin-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.admin-form input,
.admin-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 14px;
    color: var(--text);
}
.admin-form textarea { min-height: 150px; resize: vertical; }
.full-width { grid-column: span 2; }
.submit-btn {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-weight: 700;
    cursor: pointer;
}
.product-list {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.p-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.p-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}
.p-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.p-item h4 {
    margin: 0;
}
.p-item p {
    margin: 0;
    color: var(--text-secondary);
}
.p-item-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 0 20px 20px;
}
.edit-btn,
.del-btn {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
}
.edit-btn { background: rgba(14, 138, 235, 0.12); color: #0B84DB; }
.del-btn { background: rgba(230, 57, 70, 0.12); color: var(--primary-red-dark); }

@media (max-width: 760px) {
    .nav-container { flex-wrap: wrap; gap: 15px; }
    .desktop-nav { justify-content: center; gap: 18px; }
    .desktop-nav.active { display: flex; }
    .slider-container { flex-direction: column; }
    .admin-form { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
}

::-webkit-scrollbar-thumb:hover {
    background: #C1121F;
}


@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .desktop-nav.active {
        display: flex;
    }

    .nav-container {
        padding: 12px 5%;
    }

    .logo-text {
        display: none;
    }

    .container {
        padding-bottom: 120px;
    }

    .slider-container {
        gap: 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slide-image {
        height: 200px;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .card-details {
        padding: 15px;
    }

    .card-details h3 {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .price {
        font-size: 22px;
    }

    .wa-btn {
        padding: 12px 15px;
        font-size: 13px;
    }

    .footer-up {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .slider-section {
        margin-bottom: 40px;
    }

    .slider-container {
        gap: 8px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .top-banner {
        padding: 10px 15px;
        font-size: 12px;
    }

    .nav-container {
        gap: 10px;
    }
}


.contact-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.contact-hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-hero h1 {
    font-size: clamp(2.6rem, 3vw, 4rem);
    color: var(--text);
    margin: 0;
    line-height: 1.05;
}

.contact-hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-hero-card {
    background: var(--card);
    border-radius: 28px;
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-card-top span {
    color: var(--accent-teal);
    font-weight: 700;
}

.hero-card-badge {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
    color: white;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-hero-card h2 {
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 18px;
}

.contact-hero-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.contact-hero-card li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(230, 57, 70, 0.05);
    color: var(--text-secondary);
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--card);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(230, 57, 70, 0.12);
}

.contact-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(217, 119, 6, 0.1));
    color: var(--primary-red);
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--text);
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 22px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-red), #C1121F);
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(230, 57, 70, 0.25);
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 80px;
}

.form-content,
.form-details {
    background: var(--card);
    border-radius: 28px;
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}

.form-content h2,
.form-details h3 {
    margin: 0 0 18px 0;
    color: var(--text);
}

.form-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    padding: 14px 30px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
}

.detail-card {
    background: linear-gradient(180deg, rgba(230, 57, 70, 0.08), rgba(255, 255, 255, 0.85));
    border-radius: 22px;
    padding: 26px;
    margin-bottom: 20px;
    border: 1px solid rgba(230, 57, 70, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.detail-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

@media (max-width: 1024px) {
    .contact-hero,
    .contact-form-section {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        margin: 40px 0;
    }
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        gap: 24px;
    }
    .contact-hero-card,
    .form-content,
    .form-details,
    .contact-card {
        padding: 26px;
    }
    .contact-grid {
        gap: 18px;
    }
    .contact-link,
    .wa-btn,
    .detail-btn {
        width: 100%;
    }
}


.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content {
    background: var(--card);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mission, .values, .why-us {
    background: var(--card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover, .values:hover, .why-us:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.15);
}

.mission h2, .values h2, .why-us h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission h2::before, .values h2::before, .why-us h2::before {
    content: '🎯';
    font-size: 1.8rem;
}

.values h2::before {
    content: '💎';
}

.why-us h2::before {
    content: '⭐';
}

.mission p, .values p, .why-us p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.why-choose-us {
    margin-bottom: 60px;
}

.why-choose-us h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    background: var(--card);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(230, 57, 70, 0.15);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq {
    background: linear-gradient(135deg, var(--bg) 0%, rgba(230, 57, 70, 0.02) 100%);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
}

.faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: var(--card);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h3::before {
    content: '❓';
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 768px) {
    .about-section h1 {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 25px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .faq {
        padding: 25px;
    }
}
