/* ============================================
   GLYMASS SKINCARE - PREMIUM CSS
   ============================================ */

:root {
    --primary: #FE60A1;
    --secondary: #111111;
    --gold: #D4AF37;
    --bg: #FFFFFF;
    --text: #333333;
    --text-light: #777777;
    --border: #F0F0F0;
    --card-bg: #FAFAFA;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
    --radius: 14px;
    --shadow: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.serif { font-family: var(--font-serif); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    margin-bottom: 16px;
}
.section-sub {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: white;
    box-shadow: 0 6px 24px rgba(254,96,161,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(254,96,161,0.5);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.btn-ghost {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.nav-menu a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary);
    background: rgba(254,96,161,0.06);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: white;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 150px;
    overflow: hidden;
    z-index: 999;
}
.lang-dropdown.open { display: block; animation: fadeDown 0.2s ease; }
.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.88rem;
    transition: var(--transition);
    color: var(--text);
}
.lang-dropdown a:hover, .lang-dropdown a.active {
    background: rgba(254,96,161,0.08);
    color: var(--primary);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-section {
    margin-top: 72px;
    height: calc(100vh - 72px);
    min-height: 500px;
    position: relative;
}
.hero-swiper { width: 100%; height: 100%; }
.hero-slide {
    position: relative;
    overflow: hidden;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.swiper-slide-active .hero-slide img { transform: scale(1.05); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,0.65) 0%, rgba(17,17,17,0.2) 100%);
    display: flex;
    align-items: center;
    padding: 0 80px;
}
.hero-content { max-width: 620px; color: white; }
.hero-content .section-label { color: rgba(255,255,255,0.8); }
.hero-content h1 {
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
}
/* Swiper pagination dots */
.swiper-pagination-bullet { background: white; opacity: 0.6; }
.swiper-pagination-bullet-active { background: var(--primary); opacity: 1; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 24px; }
.section-centered { text-align: center; }
.section-centered .section-sub { margin: 0 auto 50px; }
.container { max-width: 1280px; margin: 0 auto; }

/* ============================================
   BRAND MESSAGE
   ============================================ */
.brand-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}
.brand-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: default;
    overflow: hidden;
    position: relative;
}
.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(254,96,161,0.04), rgba(212,175,55,0.04));
    opacity: 0;
    transition: var(--transition);
}
.brand-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.brand-card:hover::before { opacity: 1; }
.brand-card .card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 24px rgba(254,96,161,0.3);
}
.brand-card h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 16px; }
.brand-card p { color: var(--text-light); line-height: 1.8; }

/* ============================================
   FEATURE HIGHLIGHTS
   ============================================ */
.features-section { background: var(--secondary); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
}
.feature-item {
    background: var(--secondary);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
}
.feature-item:hover { background: rgba(254,96,161,0.15); }
.feature-item .feat-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feature-item h4 { color: white; font-size: 1.05rem; margin-bottom: 10px; }
.feature-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.products-slider { margin-top: 60px; }
.product-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.product-card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(254,96,161,0.06), rgba(212,175,55,0.06));
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-img .placeholder-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}
.product-card-body { padding: 28px 24px; }
.product-card-body h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 8px; }
.product-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }
.product-card-body .btn { font-size: 0.8rem; padding: 10px 22px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-section { background: linear-gradient(135deg, rgba(254,96,161,0.04), rgba(212,175,55,0.04)); }
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 44px 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin: 10px;
    text-align: left;
}
.testimonial-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 20px; }
.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.author-info strong { display: block; font-weight: 600; color: var(--secondary); }
.author-info span { color: var(--text-light); font-size: 0.85rem; }

/* ============================================
   CONTACT CTA
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
    text-align: center;
    padding: 100px 24px;
}
.cta-section h2 { color: white; margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 1.1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail { padding: 120px 24px 80px; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.product-image-box {
    position: sticky;
    top: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, rgba(254,96,161,0.06), rgba(212,175,55,0.06));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: zoom-in;
}
.product-image-box img:hover { transform: scale(1.05); }
.product-image-box .placeholder-big { font-size: 10rem; color: rgba(254,96,161,0.2); }
.product-info-box .product-name {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 12px;
}
.product-info-box .product-tagline {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.product-tabs { display: flex; gap: 4px; margin: 28px 0 24px; flex-wrap: wrap; }
.tab-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text-light);
    transition: var(--transition);
}
.tab-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
.tab-content p, .tab-content li { color: var(--text-light); line-height: 1.9; }
.tab-content ul { padding-left: 20px; }
.tab-content li { margin-bottom: 6px; }

/* ============================================
   PRODUCTS LIST PAGE
   ============================================ */
.products-page { padding: 120px 24px 80px; }
.page-header {
    text-align: center;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page { padding: 120px 24px 80px; }
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--text-light); margin-bottom: 20px; line-height: 1.9; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); }
.about-image img { width: 100%; height: 450px; object-fit: cover; }
.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(254,96,161,0.1), rgba(212,175,55,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(254,96,161,0.3);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { padding: 120px 24px 80px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 600; margin-bottom: 4px; }
.contact-info-text span { color: var(--text-light); }
.contact-form {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 48px 44px;
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: white;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(254,96,161,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}
.error-msg {
    background: #f8d7da;
    color: #721c24;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonials-page { padding: 120px 24px 80px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

/* ============================================
   DYNAMIC PAGE
   ============================================ */
.dynamic-page { padding: 120px 24px 80px; max-width: 900px; margin: 0 auto; }
.page-content { line-height: 1.9; }
.page-content h2, .page-content h3 { font-family: var(--font-serif); margin: 32px 0 16px; }
.page-content p { color: var(--text-light); margin-bottom: 16px; }
.page-content ul { padding-left: 24px; margin-bottom: 16px; }
.page-content ul li { color: var(--text-light); margin-bottom: 8px; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: white;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.6);
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 24px 0;
}
.footer-container { max-width: 1280px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-brand p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-links h4 { color: white; margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--primary); }
.footer-contact h4 { color: white; margin-bottom: 20px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 12px; }
.footer-contact p i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact p a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact p a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 28px 0;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ============================================
   PAGE HERO BANNER (inner pages)
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a2a 100%);
    padding: 140px 24px 80px;
    text-align: center;
}
.page-banner h1 { color: white; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.page-banner p { color: rgba(255,255,255,0.65); font-size: 1.1rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Swiper nav */
.swiper-button-prev, .swiper-button-next {
    color: white !important;
    background: rgba(255,255,255,0.15);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}
.swiper-button-prev::after, .swiper-button-next::after {
    font-size: 1rem !important;
    font-weight: 900;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px;
    background: var(--secondary);
    padding: 28px 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}
.admin-sidebar .sidebar-logo {
    padding: 0 28px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}
.admin-sidebar .sidebar-logo span {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active {
    color: white;
    background: rgba(254,96,161,0.2);
    border-right: 3px solid var(--primary);
}
.admin-sidebar nav a i { width: 20px; text-align: center; }
.admin-main {
    margin-left: 260px;
    flex: 1;
    background: #f5f5f5;
    min-height: 100vh;
}
.admin-header {
    background: white;
    padding: 20px 36px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-header h1 { font-size: 1.3rem; font-family: var(--font-sans); font-weight: 600; }
.admin-content { padding: 36px; }
.admin-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
}
.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}
.stat-icon.pink { background: linear-gradient(135deg, var(--primary), #ff8cc8); }
.stat-icon.dark { background: linear-gradient(135deg, #333, #555); }
.stat-icon.gold { background: linear-gradient(135deg, var(--gold), #e8c84a); }
.stat-icon.green { background: linear-gradient(135deg, #25D366, #1a9e4a); }
.stat-info span { display: block; font-size: 0.8rem; color: var(--text-light); margin-bottom: 4px; }
.stat-info strong { font-size: 1.8rem; font-weight: 700; color: var(--secondary); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    border-bottom: 2px solid var(--border);
}
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafafa; }
.badge { padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.badge-success { background: #d4edda; color: #155724; }
.badge-danger  { background: #f8d7da; color: #721c24; }
.badge-warning { background: #fff3cd; color: #856404; }
.btn-sm { padding: 6px 14px; font-size: 0.78rem; }
.btn-danger { background: #dc3545; color: white; }
.btn-danger:hover { background: #c82333; }
.btn-success { background: #28a745; color: white; }
.btn-success:hover { background: #218838; }
.admin-actions { display: flex; gap: 8px; align-items: center; }

/* Admin form */
.admin-form .form-group { margin-bottom: 24px; }
.admin-form .form-group label { font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; display: block; }
.admin-form input[type=text],
.admin-form input[type=email],
.admin-form input[type=password],
.admin-form input[type=number],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-sans);
}
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(254,96,161,0.1);
}
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
}
.login-box {
    background: white;
    border-radius: var(--radius);
    padding: 52px 48px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.login-box h2 { font-family: var(--font-serif); margin-bottom: 8px; }
.login-box p { color: var(--text-light); margin-bottom: 36px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-cards { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-image-box { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-hero { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: flex; }
    .lang-switcher { margin-left: 0; }
    .hero-overlay { padding: 0 32px; }
    .brand-cards { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.2rem; }
    .admin-sidebar { width: 220px; }
    .admin-main { margin-left: 220px; }
    .stat-cards { grid-template-columns: 1fr 1fr; }
    .admin-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section { padding: 60px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .stat-cards { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
