@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #C41E3A;
    --primary-dark: #9B1830;
    --primary-light: #E8394E;
    --dark: #1A1A1A;
    --gray-900: #212529;
    --gray-700: #495057;
    --gray-500: #6C757D;
    --gray-300: #DEE2E6;
    --gray-200: #E9ECEF;
    --gray-100: #F8F9FA;
    --white: #FFFFFF;
    --accent-blue: #2563EB;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: var(--gray-300);
    transition: var(--transition);
}

.top-bar-left a:hover {
    color: var(--primary-light);
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-300);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-right a {
    color: var(--gray-300);
    font-size: 16px;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--primary-light);
    transform: translateY(-1px);
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
}

.logo-text h1 {
    font-size: 22px;
    color: var(--dark);
    line-height: 1.2;
}

.logo-text span {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2D1B1E 50%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,30,58,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196,30,58,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(196,30,58,0.2);
    border: 1px solid rgba(196,30,58,0.4);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h2 span {
    color: var(--primary-light);
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-image-placeholder .icon {
    font-size: 80px;
    margin-bottom: 15px;
}

.hero-image-placeholder p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

/* Hero Slideshow */
.hero-slideshow {
    width: 420px;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

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

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

.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.hero-slide-caption h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
}

.hero-slide-caption p {
    font-size: 13px;
    margin: 0;
    color: rgba(255,255,255,0.85);
}

.hero-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-slide-btn:hover {
    background: rgba(255,255,255,0.4);
}

.hero-slide-prev { left: 12px; }
.hero-slide-next { right: 12px; }

.hero-slide-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

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

.hero-dot.active {
    background: var(--primary-light);
    width: 24px;
    border-radius: 4px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196,30,58,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-secondary {
    background: var(--dark);
    color: var(--white);
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.bg-gray {
    background: var(--gray-100);
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(196,30,58,0.1), rgba(196,30,58,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

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

.feature-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image .placeholder-icon {
    font-size: 60px;
    opacity: 0.5;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-info p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-info .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
}

/* ===== CATEGORIES ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196,30,58,0.1), rgba(196,30,58,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 35px;
    overflow: hidden;
}

.category-thumb {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
}

.filter-tab-thumb {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 4px;
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.category-card p {
    color: var(--gray-500);
    font-size: 13px;
}

/* ===== ABOUT ===== */
.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    min-height: 400px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-300));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image .placeholder-icon {
    font-size: 80px;
    opacity: 0.4;
}

.about-content {
    flex: 1;
}

.about-content .subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content p {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

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

.stat-item .number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-item .label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 5px;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(196,30,58,0.1), rgba(196,30,58,0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card .stars {
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.testimonial-author h4 {
    font-size: 15px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(196,30,58,0.1), rgba(196,30,58,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
}

.contact-card p {
    color: var(--gray-500);
    font-size: 14px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}

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

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

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo {
    margin-bottom: 18px;
}

.footer-about .logo-icon {
    background: var(--primary);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item .icon {
    font-size: 16px;
    margin-top: 3px;
    color: var(--primary-light);
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.footer-contact-item a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-admin-link {
    color: rgba(255,255,255,0.3) !important;
    font-size: 11px;
}

.footer-admin-link:hover {
    color: rgba(255,255,255,0.6) !important;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

/* ===== ABOUT PAGE ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(196,30,58,0.1), rgba(196,30,58,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== SOCIAL LINKS ===== */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
}

.social-card-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card-icon.facebook { background: #1877F2; }
.social-card-icon.youtube { background: #FF0000; }
.social-card-icon.tiktok { background: #000000; }
.social-card-icon.whatsapp { background: #25D366; }

.social-card h4 {
    font-size: 15px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
}

.social-card p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-placeholder {
        width: 300px;
        height: 300px;
    }

    .hero-slideshow {
        width: 320px;
        height: 320px;
        border-radius: 24px;
    }

    .features-grid,
    .products-grid,
    .services-grid,
    .testimonials-grid,
    .categories-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        flex-direction: column;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar-left {
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 15px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero h2 {
        font-size: 34px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .features-grid,
    .products-grid,
    .services-grid,
    .testimonials-grid,
    .categories-grid,
    .values-grid,
    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .page-header h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

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

    .hero-image-placeholder {
        width: 250px;
        height: 250px;
    }

    .hero-slideshow {
        width: 280px;
        height: 280px;
        border-radius: 20px;
    }

    .hero-slide-caption h4 {
        font-size: 14px;
    }

    .hero-slide-caption p {
        font-size: 12px;
    }

    .hero-slide-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .section {
        padding: 50px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===== WHATSAPP CHAT WIDGET ===== */
.wa-chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.wa-float-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: waPulse 2s infinite;
}

.wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.wa-btn-hidden {
    transform: scale(0);
    opacity: 0;
}

.wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #FF3B30;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

@keyframes waPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Chat Popup */
.wa-chat-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0) translateY(20px);
    transform-origin: bottom right;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.wa-chat-popup.wa-show {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Header */
.wa-chat-header {
    background: #075E54;
    color: white;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

.wa-header-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.wa-status {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-dot {
    width: 7px;
    height: 7px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
}

.wa-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    opacity: 0.8;
    transition: 0.2s;
}

.wa-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Body */
.wa-chat-body {
    background: #ECE5DD;
    padding: 20px 16px;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.wa-msg {
    display: flex;
    margin-bottom: 12px;
}

.wa-msg-business {
    justify-content: flex-start;
}

.wa-msg-bubble {
    background: white;
    border-radius: 0 12px 12px 12px;
    padding: 12px 14px;
    max-width: 85%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
}

.wa-msg-bubble p {
    margin: 0 0 4px 0;
    font-size: 13.5px;
    color: #303030;
    line-height: 1.5;
}

.wa-msg-sub {
    font-size: 12.5px !important;
    color: #667781 !important;
    margin-top: 4px !important;
}

.wa-msg-time {
    font-size: 11px;
    color: #999;
    text-align: right;
    display: block;
}

/* Quick Replies */
.wa-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.wa-quick-btn {
    background: white;
    border: 1px solid #25D366;
    color: #075E54;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

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

/* Footer Input */
.wa-chat-footer {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #eee;
    background: #f5f5f5;
}

.wa-chat-footer input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 16px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border 0.2s;
    background: white;
}

.wa-chat-footer input:focus {
    border-color: #25D366;
}

.wa-send-btn {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.wa-send-btn:hover {
    background: #1da851;
    transform: scale(1.05);
}

/* ===== CART SYSTEM ===== */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: 500px;
    overflow-y: auto;
}

.cart-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.cart-dropdown-header h4 {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}

.cart-empty {
    text-align: center;
    padding: 30px;
    color: var(--gray-500);
}

.cart-empty i {
    font-size: 30px;
    margin-bottom: 8px;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 13px;
}

.cart-item {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cart-item-info h4 {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 3px;
    color: var(--dark);
}

.cart-item-price {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.qty-btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-500);
}

.qty-num {
    font-size: 13px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 6px;
    background: #fef2f2;
    color: #ef4444;
    cursor: pointer;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.remove-btn:hover {
    background: #ef4444;
    color: white;
}

.cart-total {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}

.cart-total strong {
    color: var(--primary);
    font-size: 16px;
}

.cart-actions {
    padding: 14px 20px;
}

.cart-toast {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: var(--dark);
    color: white;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    z-index: 99999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    max-width: 300px;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Product card add to cart button */
.add-to-cart-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Cart nav item */
.cart-nav-item {
    position: relative;
}

.cart-trigger-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: none;
    font-size: 20px;
    color: var(--dark);
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Product Search & Filter */
.products-search-bar {
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrap i {
    position: absolute;
    left: 16px;
    color: var(--gray-400);
    font-size: 15px;
}

.search-input-wrap input {
    width: 100%;
    padding: 12px 40px 12px 44px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
    background: white;
}

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

.search-clear {
    position: absolute;
    right: 12px;
    color: var(--gray-400);
    font-size: 22px;
    text-decoration: none;
    line-height: 1;
}

.search-clear:hover {
    color: var(--primary);
}

.category-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: var(--gray-600);
    background: white;
    border: 2px solid var(--gray-200);
    transition: all 0.2s;
    white-space: nowrap;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.filter-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.category-section-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-300);
}

.category-count {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.no-results h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.no-results p {
    color: var(--gray-500);
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.no-results a {
    color: var(--primary);
    text-decoration: underline;
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 1;
}

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

.product-detail-image:hover img {
    transform: scale(1.03);
}

.product-detail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 60px;
}

.product-detail-placeholder p {
    font-size: 16px;
    margin-top: 10px;
}

.product-badge-lg {
    top: 16px;
    left: 16px;
    padding: 8px 18px;
    font-size: 14px;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-detail-category span {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.product-detail-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.price-lg {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.price-contact {
    color: var(--gray-500);
    font-size: 20px;
}

.product-detail-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 15px;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
}

.product-detail-actions .btn {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

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

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.product-detail-meta {
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 14px;
}

.meta-item i {
    width: 16px;
    text-align: center;
    color: var(--primary);
}

.product-image-link {
    display: block;
}

.product-info h3 a {
    color: inherit;
    text-decoration: none;
}

.product-info h3 a:hover {
    color: var(--primary);
}

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

    .product-detail-name {
        font-size: 24px;
    }

    .price-lg {
        font-size: 22px;
    }

    .product-detail-actions {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 25px;
    width: 44px;
    height: 44px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
}

/* Error Page */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.15;
}

.error-page h1 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 12px;
}

.error-page p {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-outline {
    background: white;
    color: var(--dark);
    border: 2px solid var(--gray-300);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Sale Price */
.product-price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-original {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 400;
}

.price-sale {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.price-original-lg {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 20px;
    font-weight: 400;
}

.price-sale-lg {
    color: var(--primary);
    font-weight: 700;
    font-size: 28px;
}

.discount-badge {
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Pagination - Bootstrap 5 Override */
.pagination-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination-wrap .pagination {
    gap: 6px;
}

.pagination-wrap .page-item .page-link {
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    transition: all 0.2s;
}

.pagination-wrap .page-item .page-link:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: white;
}

.pagination-wrap .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-wrap .page-item.disabled .page-link {
    color: var(--gray-400);
    border-color: var(--gray-200);
    background: var(--gray-100);
}

/* ===== RESPONSIVE ===== */

/* Checkout Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

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

/* Order detail grid */
.order-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .order-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Profile grid */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
}

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

/* Dashboard grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

/* Tablet (768px-992px) */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 40px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .contact-grid {
        gap: 30px;
    }

    .footer-grid {
        gap: 30px;
    }

    .about-content h2 {
        font-size: 28px;
    }
}

/* Mobile landscape / small tablet (768px) */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .page-header {
        padding: 50px 0 35px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .hero {
        min-height: 400px;
    }

    .hero h2 {
        font-size: 34px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .error-code {
        font-size: 100px;
    }

    .map-container {
        height: 280px;
    }

    .map-container iframe {
        height: 280px !important;
    }
}

/* Mobile portrait (480px) */
@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
        min-height: 350px;
    }

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

    .hero-image-placeholder {
        width: 250px;
        height: 250px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .page-header {
        padding: 40px 0 25px;
    }

    .page-header h1 {
        font-size: 22px;
    }

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

    .about-content h2 {
        font-size: 22px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-grid {
        gap: 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .product-detail-name {
        font-size: 24px;
    }

    .price-lg, .price-sale-lg {
        font-size: 22px;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-meta {
        gap: 8px;
    }

    .cart-dropdown {
        width: calc(100vw - 30px);
        right: -10px;
    }

    .wa-chat-popup {
        width: calc(100vw - 40px);
        right: -10px;
    }

    .back-to-top {
        bottom: 95px;
        left: 15px;
        width: 38px;
        height: 38px;
    }

    .error-code {
        font-size: 80px;
    }

    .error-actions {
        flex-direction: column;
    }

    .products-search-bar .search-form {
        flex-direction: column;
    }

    .category-filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .filter-tab {
        flex-shrink: 0;
    }

    .map-container {
        height: 250px;
    }

    .map-container iframe {
        height: 250px !important;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-contact-item {
        gap: 8px;
    }
}
