/* ========== ROOT VARIABLES ========== */
:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --primary-light: #a29bfe;
    --secondary: #8b5cf6;
    --accent: #00b894;
    --accent-dark: #00a381;
    --dark: #2d3436;
    --dark-2: #636e72;
    --dark-3: #b2bec3;
    --dark-4: #dfe6e9;
    --text: #2d3436;
    --text-muted: #636e72;
    --text-light: #b2bec3;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #f1f3f5;
    --border: #e9ecef;
    --border-light: #f1f3f5;
    --gradient: linear-gradient(135deg, #6c5ce7, #a29bfe);
    --gradient-2: linear-gradient(135deg, #00b894, #00cec9);
    --gradient-3: linear-gradient(135deg, #fdcb6e, #e17055);
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); outline: none; }
.container { max-width: 1680px; margin: 0 auto; padding: 0 10px; }

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--bg-light);
    padding: 18px 0;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--border);
}
.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar-left { display: flex; align-items: center; gap: 0; flex: 1; }
.top-bar-logo {
    display: flex !important;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex: 1;
}
.top-bar-logo .brand-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    animation: logoPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(108,92,231,0.35);
    position: relative;
}
.top-bar-logo .brand-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    background: var(--gradient);
    z-index: -1;
    opacity: 0.3;
    animation: logoGlow 2s ease-in-out infinite alternate;
}
.top-bar-logo .brand-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.top-bar-logo .brand-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--text-muted);
    opacity: 0.8;
}
@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes logoGlow {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.5; transform: scale(1.1); }
}
.top-bar-left a { color: var(--dark); display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.95rem; }
.top-bar-left a:hover { color: var(--primary); }
.top-bar-left a i { color: var(--primary); font-size: 0.95rem; }
.top-bar-whatsapp {
    flex: 1;
    justify-content: center;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin: 0 20px;
}
.top-bar-whatsapp i { color: #25d366 !important; font-size: 2rem !important; }
.top-bar-whatsapp span { display: flex; flex-direction: column; line-height: 1.3; }
.top-bar-whatsapp strong { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.top-bar-whatsapp span { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.top-bar-phone {
    flex: 1;
    justify-content: center;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.top-bar-phone i { font-size: 1.8rem !important; color: var(--primary) !important; }
.top-bar-phone span { display: flex; flex-direction: column; line-height: 1.3; }
.top-bar-phone strong { font-size: 1.15rem; color: var(--dark); font-weight: 800; }
.top-bar-phone small { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.top-bar-right { display: flex; align-items: center; gap: 10px; }
.top-bar-right a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}
.top-bar-right a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ========== NAVBAR ========== */
.navbar {
    position: relative;
    z-index: 1000;
    background: var(--dark);
    border-bottom: none;
    transition: var(--transition);
    padding: 0;
}
.navbar.scrolled {
    background: rgba(45, 52, 54, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}
.navbar-brand {
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}
.navbar-brand .brand-icon {
    width: 36px; height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--white);
}
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: flex; align-items: center; gap: 7px;
    padding: 12px 18px;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.nav-link i { font-size: 0.85rem; display: none; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.55rem;
    margin-left: 5px;
    transition: var(--transition);
    color: rgba(255,255,255,0.5);
}
.nav-dropdown:hover > .nav-link::after { transform: rotate(180deg); color: var(--white); }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 520px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(10, auto);
    gap: 4px;
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-bottom: none;
    border-right: none;
    rotate: 45deg;
}
.nav-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}
.dropdown-menu a i { width: 16px; text-align: center; color: var(--primary); font-size: 0.8rem; }
.dropdown-menu a:hover { background: rgba(108, 92, 231, 0.06); color: var(--primary); }

/* Lang Switcher */
.lang-switcher {
    display: flex; gap: 3px;
    margin-left: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 3px;
}
.lang-btn {
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
    background: var(--white);
    color: var(--dark);
}

/* Mobile Close Button */
.mobile-menu-close {
    display: none;
}

/* Hamburger */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 5px;
}
.navbar-toggler span {
    width: 25px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar-toggler.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggler.active span:nth-child(2) { opacity: 0; }
.navbar-toggler.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO SLIDER ========== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-section:empty { display: none; }
.hero-section:not(:has(.swiper-slide)) { display: none; }
.hero-slider { width: 100%; height: 75vh; }
.hero-slide {
    position: relative;
    width: 100%; height: 100%;
    display: flex; align-items: center;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}
.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,52,54,0.85), rgba(108,92,231,0.3));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 40px;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}
.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.6);
}
.hero-slider .swiper-pagination { bottom: 30px !important; }
.hero-slider .swiper-pagination-bullet {
    width: 12px; height: 12px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
}
.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 35px;
    border-radius: 6px;
}

/* ========== SLOGAN SECTION ========== */
.slogan-section {
    padding: 0;
    background: var(--white);
}
.slogan-box {
    background: linear-gradient(135deg, var(--dark) 0%, #3d3d50 50%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 45px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 30px auto;
    max-width: 100%;
    border: 1px solid rgba(108,92,231,0.2);
    box-shadow: 0 10px 40px rgba(108,92,231,0.15);
}
.slogan-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(108,92,231,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(162,155,254,0.1) 0%, transparent 40%);
    animation: sloganBg 8s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes sloganBg {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-5%, -5%); }
}
.slogan-box .slogan-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 8px 30px rgba(108,92,231,0.4);
}
.slogan-box .slogan-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 12px;
}
.slogan-box h2, .slogan-box h3 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.slogan-box p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.slogan-box strong { color: var(--white); font-weight: 700; }

/* ========== FEATURE BOXES (Slider Altı) ========== */
.feature-boxes {
    padding: 40px 0;
    background: var(--bg-light);
}
.feature-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: var(--transition);
}
.feature-box:nth-child(1)::before { background: linear-gradient(90deg, #6c5ce7, #a29bfe); }
.feature-box:nth-child(2)::before { background: linear-gradient(90deg, #0984e3, #74b9ff); }
.feature-box:nth-child(3)::before { background: linear-gradient(90deg, #00b894, #55efc4); }
.feature-box:nth-child(4)::before { background: linear-gradient(90deg, #e17055, #fab1a0); }
.feature-box:hover::before { opacity: 1; }
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.feature-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.feature-box:nth-child(1) .feature-box-icon { background: rgba(108,92,231,0.1); color: #6c5ce7; }
.feature-box:nth-child(2) .feature-box-icon { background: rgba(9,132,227,0.1); color: #0984e3; }
.feature-box:nth-child(3) .feature-box-icon { background: rgba(0,184,148,0.1); color: #00b894; }
.feature-box:nth-child(4) .feature-box-icon { background: rgba(225,112,85,0.1); color: #e17055; }
.feature-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.feature-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .feature-boxes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .feature-boxes-grid { grid-template-columns: 1fr; gap: 14px; }
    .feature-boxes { padding: 40px 0; }
    .feature-box { padding: 22px 18px; }
}

/* ========== SECTION STYLES ========== */
.section { padding: 50px 0; position: relative; }
.section-alt { background: var(--bg-light); }
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-header .line {
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 15px auto 0;
}

/* ========== SECTION EDITOR CONTENT ========== */
.section-editor-content {
    max-width: 100%;
    margin: 0 0 30px;
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.section-editor-content:hover {
    box-shadow: 0 8px 30px rgba(108,92,231,0.08);
    border-left-color: var(--primary-dark);
}
.editor-content-label {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 3px solid rgba(108,92,231,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.editor-content-label i { font-size: 1.15rem; }
.section-editor-content p { margin-bottom: 12px; }
.section-editor-content p:last-child { margin-bottom: 0; }
.section-editor-content strong { color: var(--dark); font-weight: 700; }
.section-editor-content h3, .section-editor-content h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.section-editor-content ul { padding-left: 20px; margin-bottom: 12px; }
.section-editor-content li { margin-bottom: 5px; }
.section-editor-bottom { margin-top: 30px; margin-bottom: 0; }

/* ========== CATEGORY FILTER TABS ========== */
.category-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.category-filter-btn {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
}
.category-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.category-filter-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

/* ========== PRODUCT CARDS ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 92, 231, 0.25);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.15), 0 8px 24px rgba(0,0,0,0.08);
}
.product-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    display: block;
    cursor: pointer;
}
.product-card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.product-card:hover .product-card-image::after { opacity: 1; }
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card-image img { transform: scale(1.08); }
.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
    z-index: 1;
    animation: badgeShimmer 3s ease-in-out infinite;
}
@keyframes badgeShimmer {
    0%, 100% { box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(108, 92, 231, 0.6); }
}
.product-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    line-height: 1.4;
}
.product-card-title a { transition: color 0.3s ease; }
.product-card-title a:hover { color: var(--primary); }
.product-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}
.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 8px 12px;
    background: rgba(0, 184, 148, 0.06);
    border-radius: 8px;
}
.product-card-price .current {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00b894, #00a381);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.product-card-price .old {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
}
.product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: auto;
}
.product-card-actions .btn {
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
}
.product-card-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}
.product-card-actions .btn:hover::before {
    width: 200px; height: 200px;
}
.btn-primary { background: var(--gradient); color: var(--white); }
.btn-primary:hover { box-shadow: 0 6px 25px rgba(108, 92, 231, 0.4); transform: translateY(-2px); }
.btn-secondary { background: var(--bg-light); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); background: rgba(108,92,231,0.04); }
.btn-success { background: var(--gradient-2); color: var(--white); }
.btn-success:hover { box-shadow: 0 6px 25px rgba(0, 184, 148, 0.4); transform: translateY(-2px); }
.btn-warning { background: linear-gradient(135deg, #00b894, #00a381); color: var(--white); }
.btn-warning:hover { box-shadow: 0 6px 25px rgba(0, 184, 148, 0.45); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}
.btn-outline:hover { color: var(--white); border-color: transparent; }
.btn-outline:hover::after { transform: scaleX(1); }
.btn-lg { padding: 15px 34px; font-size: 1rem; border-radius: 12px; font-weight: 700; letter-spacing: 0.3px; }

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(108,92,231,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.2);
    box-shadow: 0 15px 45px rgba(108, 92, 231, 0.12), 0 5px 20px rgba(0,0,0,0.06);
}
.service-card-icon {
    width: 74px;
    height: 74px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.6rem;
    color: var(--white);
    transition: all 0.5s ease;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-card-icon {
    transform: rotateY(180deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(108, 92, 231, 0.45);
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.service-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ========== TESTIMONIALS ========== */
.testimonials-slider { padding-bottom: 50px; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.testimonial-card:hover {
    border-color: rgba(108,92,231,0.15);
    box-shadow: 0 12px 40px rgba(108,92,231,0.1);
    transform: translateY(-4px);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    color: rgba(108, 92, 231, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.testimonial-card:hover::after { transform: scaleX(1); }
.testimonial-card .stars { color: #f59e0b; margin-bottom: 15px; font-size: 0.95rem; letter-spacing: 2px; }
.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 22px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}
.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                var(--gradient) border-box;
    transition: transform 0.3s ease;
}
.testimonial-card:hover .testimonial-author img { transform: scale(1.08); }
.testimonial-author .info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}
.testimonial-author .info span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(108, 92, 231, 0.2); }
.faq-item.active { border-color: var(--primary); }
.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    position: relative;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.blog-card:hover::before { transform: scaleX(1); }
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(108, 92, 231, 0.12), 0 6px 20px rgba(0,0,0,0.06);
    border-color: rgba(108, 92, 231, 0.2);
}
.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.blog-card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.blog-card:hover .blog-card-image::after { opacity: 1; }
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-body { padding: 25px; }
.blog-card-date {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.blog-card-title a { transition: color 0.3s ease; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.blog-tag {
    display: inline-block;
    background: rgba(99,102,241,0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.blog-tag:hover {
    background: var(--gradient);
    color: var(--white);
}
.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
}
.blog-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--dark);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.12);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 140px; resize: vertical; }
.contact-info-cards { display: flex; flex-direction: column; gap: 15px; }
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.contact-info-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}
.contact-info-card .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}
.contact-info-card .info h4 { font-size: 0.9rem; color: var(--dark); margin-bottom: 3px; }
.contact-info-card .info p { font-size: 0.85rem; color: var(--text-muted); }

/* ========== PRODUCT DETAIL ========== */
.product-detail { padding-top: 40px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: var(--text-light); }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.product-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-detail-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}
.product-detail-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}
.product-detail-info .desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}
.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.product-detail-price .current {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
}
.product-detail-price .old {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
}
.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.product-detail-rating .stars { color: #f59e0b; font-size: 1.1rem; }
.product-detail-rating .count { color: var(--text-muted); }
.product-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.product-detail-actions .btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.product-features {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid var(--border);
}
.product-features h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}
.product-features ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.product-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 0.8rem;
}
.product-detail-content {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}
.product-detail-content h3, .product-detail-content h4 {
    color: var(--dark);
    margin: 25px 0 15px;
}
.product-detail-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}
.product-detail-content ul {
    margin: 15px 0;
    padding-left: 20px;
}
.product-detail-content li {
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}
.product-detail-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 0.75rem;
    position: absolute;
    left: 0;
    top: 4px;
}

/* ========== BLOG DETAIL ========== */
.blog-detail { padding-top: 40px; }
.blog-detail-header { margin-bottom: 30px; }
.blog-detail-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}
.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.blog-detail-meta i { color: var(--primary); margin-right: 5px; }
.blog-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    max-height: 500px;
}
.blog-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-content {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}
.blog-detail-content h3 { color: var(--dark); margin: 25px 0 15px; }
.blog-detail-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 15px; }
.blog-detail-content ul, .blog-detail-content ol { margin: 15px 0; padding-left: 25px; }
.blog-detail-content li { color: var(--text-muted); margin-bottom: 8px; }
.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.blog-detail-tags .tag {
    padding: 5px 14px;
    background: var(--bg-section);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.blog-detail-tags .tag:hover { background: var(--primary); color: var(--white); }

/* ========== PAGE ========== */
.page-header {
    padding: 60px 0 60px;
    background: var(--bg-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108,92,231,0.05) 0%, transparent 70%);
    animation: pulse-bg 8s ease-in-out infinite;
}
@keyframes pulse-bg { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    color: var(--dark);
}
.page-content {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}
.page-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 15px; }

/* ========== TEAM ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.15);
    box-shadow: var(--shadow);
}
.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary);
}
.team-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.team-card .title { font-size: 0.9rem; color: var(--primary); margin-bottom: 10px; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
    border-top: none;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.95);
    margin-bottom: 15px;
}
.footer-brand .brand-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-col ul a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-contact li { margin-bottom: 12px; }
.footer-contact a, .footer-contact span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact i { color: var(--primary); width: 18px; text-align: center; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== SCROLL TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
}
.cookie-consent.show { transform: translateY(0); }
.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.cookie-icon { font-size: 2rem; color: #f59e0b; }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text h4 { font-size: 1rem; color: var(--dark); margin-bottom: 5px; }
.cookie-text p { font-size: 0.85rem; color: var(--text-muted); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.cookie-btn.accept { background: var(--gradient); color: var(--white); }
.cookie-btn.accept:hover { box-shadow: 0 5px 20px rgba(108, 92, 231, 0.35); }
.cookie-btn.reject { background: var(--bg-light); color: var(--text); border: 1px solid var(--border); }
.cookie-btn.reject:hover { border-color: var(--primary); }
.cookie-btn.customize { background: transparent; color: var(--primary-light); border: 1px solid var(--primary); }
.cookie-btn.customize:hover { background: rgba(108, 92, 231, 0.1); }
.cookie-settings {
    max-width: 1280px;
    margin: 15px auto 0;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}
.cookie-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 0.9rem;
    cursor: pointer;
}
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* ========== ALERT ========== */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: rgba(34, 197, 94, 0.15); color: var(--accent); border: 1px solid rgba(34, 197, 94, 0.3); }
.alert-error { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }

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

/* Tablet Landscape */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
    .container { padding: 0 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
}

/* Tablet Portrait & Mobile */
@media (max-width: 768px) {
    .container { padding: 0 12px; }

    /* Section Editor Content */
    .section-editor-content { padding: 18px 16px; font-size: 0.88rem; margin-bottom: 20px; }
    .editor-content-label { font-size: 1.05rem; }
    .section-editor-bottom { margin-top: 20px; }

    /* Top Bar */
    .top-bar { display: none; }

    /* Slogan */
    .slogan-section { padding: 0; }
    .slogan-box { padding: 30px 20px; margin: 15px auto; border-radius: 12px; }
    .slogan-box .slogan-icon { width: 45px; height: 45px; font-size: 1.1rem; margin-bottom: 14px; }
    .slogan-box .slogan-title { font-size: 0.6rem; letter-spacing: 2px; }
    .slogan-box h2, .slogan-box h3 { font-size: 1.3rem; }
    .slogan-box p { font-size: 0.9rem; }

    /* Navbar */
    .navbar .container { height: 56px; justify-content: space-between; }
    .navbar-brand { display: flex; font-size: 1.1rem; color: var(--white); }
    .navbar-brand .brand-icon { width: 32px; height: 32px; font-size: 0.85rem; border-radius: 8px; }
    .navbar-brand img { height: 32px; }
    .navbar-toggler { display: flex; }
    .navbar-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-width: 100vw;
        background: #1a1d1f;
        background: linear-gradient(180deg, #1a1d1f 0%, #2d3436 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 70px 16px 30px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    }
    .navbar-menu.active { transform: translateX(0); }
    body:has(.navbar-menu.active) { overflow: hidden; }
    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.15);
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 1000;
        transition: var(--transition);
    }
    .mobile-menu-close:hover { background: rgba(239,68,68,0.3); border-color: rgba(239,68,68,0.4); }
    .nav-link { padding: 12px 16px; width: 100%; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
    .nav-link i { display: inline-flex; }
    .lang-switcher { margin: 15px 0 0; justify-content: center; }

    /* Mobile Dropdowns */
    .nav-dropdown { width: 100%; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.06);
        border-radius: 8px;
        margin-top: 2px;
        padding: 5px 10px;
        min-width: unset;
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-template-rows: none;
    }
    .dropdown-menu::before { display: none; }
    .nav-dropdown.open > .dropdown-menu { display: block; }
    .dropdown-menu a { padding: 10px 15px; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
    .dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
    .dropdown-menu a i { color: var(--primary-light); }
    .nav-dropdown > .nav-link::after { margin-left: auto; color: rgba(255,255,255,0.4); }

    /* Hero */
    .hero-section { min-height: 50vh; }
    .hero-slider { height: 50vh; }
    .hero-content { padding: 0 12px; max-width: 100%; }
    .hero-content h1 { font-size: 1.6rem; margin-bottom: 12px; }
    .hero-content p { font-size: 0.88rem; margin-bottom: 20px; }
    .hero-btn { padding: 12px 24px; font-size: 0.88rem; }
    .hero-slider .swiper-pagination { bottom: 15px !important; }

    /* Sections */
    .section { padding: 40px 0; }
    .section-header { margin-bottom: 25px; }
    .section-header h2 { font-size: 1.5rem; margin-bottom: 10px; }
    .section-header p { font-size: 0.88rem; }
    .section-header .line { width: 40px; height: 3px; margin-top: 10px; }

    /* Category Filters - horizontal scroll on mobile */
    .category-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 5px;
    }
    .category-filters::-webkit-scrollbar { display: none; }
    .category-filter-btn {
        padding: 8px 18px;
        font-size: 0.78rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Products Grid - 2 columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-card { border-radius: 10px; }
    .product-card:hover { transform: none; }
    .product-card-image { height: 120px; }
    .product-card-badge { top: 8px; left: 8px; padding: 3px 10px; font-size: 0.65rem; }
    .product-card-body { padding: 10px; }
    .product-card-title { font-size: 0.82rem; margin-bottom: 6px; line-height: 1.3; }
    .product-card-desc { font-size: 0.72rem; margin-bottom: 6px; -webkit-line-clamp: 2; line-clamp: 2; }
    .product-card-rating { gap: 4px; margin-bottom: 6px; }
    .product-card-rating .stars { font-size: 0.65rem; }
    .product-card-rating .count { font-size: 0.65rem; }
    .product-card-price { gap: 6px; margin-bottom: 8px; }
    .product-card-price .current { font-size: 0.95rem; }
    .product-card-price .old { font-size: 0.72rem; }
    .product-card-actions { grid-template-columns: 1fr 1fr; gap: 4px; }
    .product-card-actions .btn { padding: 6px 4px; font-size: 0.6rem; border-radius: 5px; gap: 3px; }
    .product-card-actions .btn i { font-size: 0.6rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Team */
    .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer { padding: 40px 0 20px; }

    /* Product Detail */
    .product-detail-image img { max-height: 300px; }
    .product-detail-info h1 { font-size: 1.3rem; }
    .product-detail-price .current { font-size: 1.6rem; }
    .product-features ul { grid-template-columns: 1fr; }

    /* Pages */
    .page-header { padding: 30px 0; }
    .page-header h1 { font-size: 1.4rem; }
    .blog-detail-header h1 { font-size: 1.3rem; }

    /* Contact */
    .contact-info-card { padding: 16px; }
    .form-control { padding: 12px 14px; font-size: 0.88rem; }

    /* Cookie */
    .cookie-content { flex-direction: column; text-align: center; gap: 15px; }
    .cookie-actions { justify-content: center; flex-wrap: wrap; }
    .cookie-btn { padding: 8px 16px; font-size: 0.8rem; }

    /* Testimonials */
    .testimonial-card { padding: 25px 20px; }
    .testimonial-card p { font-size: 0.9rem; }

    /* FAQ */
    .faq-question { padding: 16px; font-size: 0.9rem; }
    .faq-answer { padding: 0 16px 16px; font-size: 0.88rem; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container { padding: 0 10px; }

    .hero-section { min-height: 40vh; }
    .hero-slider { height: 40vh; }
    .hero-content h1 { font-size: 1.3rem; }
    .hero-content p { font-size: 0.82rem; }
    .hero-btn { padding: 10px 20px; font-size: 0.82rem; }

    .section { padding: 30px 0; }
    .section-header h2 { font-size: 1.3rem; }
    .section-header { margin-bottom: 20px; }

    /* Products still 2 columns on small mobile */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .product-card-image { height: 100px; }
    .product-card-body { padding: 8px; }
    .product-card-title { font-size: 0.75rem; margin-bottom: 4px; }
    .product-card-desc { display: none; }
    .product-card-rating { margin-bottom: 4px; }
    .product-card-rating .stars { font-size: 0.6rem; }
    .product-card-rating .count { display: none; }
    .product-card-price { margin-bottom: 6px; gap: 4px; }
    .product-card-price .current { font-size: 0.85rem; }
    .product-card-price .old { font-size: 0.65rem; }
    .product-card-actions { grid-template-columns: 1fr; gap: 3px; }
    .product-card-actions .btn { padding: 5px 4px; font-size: 0.58rem; }

    .team-grid { grid-template-columns: 1fr; }
    .product-detail-actions { flex-direction: column; }
    .product-detail-actions .btn { width: 100%; justify-content: center; }

    .page-header h1 { font-size: 1.2rem; }

    .category-filter-btn { padding: 6px 14px; font-size: 0.72rem; }
}

/* ========== LOADING SKELETON ========== */
.skeleton {
    background: linear-gradient(90deg, var(--bg-section) 25%, var(--bg-light) 50%, var(--bg-section) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========== COUNTER ANIMATION ========== */
.stats-section { padding: 60px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-card {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(108,92,231,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.stat-card:hover::before { opacity: 1; }
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.stat-card:hover::after { transform: scaleX(1); }
.stat-card .number {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.stat-card .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.stat-card:hover {
    box-shadow: 0 12px 35px rgba(108,92,231,0.1);
    transform: translateY(-5px);
    border-color: rgba(108,92,231,0.15);
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { padding: 20px 15px; }
    .stat-card .number { font-size: 1.8rem; }
    .stat-card .label { font-size: 0.78rem; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat-card { padding: 16px 10px; }
    .stat-card .number { font-size: 1.5rem; }
    .stat-card .label { font-size: 0.72rem; }
}

/* ========== ORDER PAGE ========== */
.order-section { padding: 40px 0 80px; }
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.order-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.order-product-card .image {
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-product-card .image img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}
.order-product-card .info {
    padding: 25px;
}
.order-product-card .info h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.order-product-card .info .desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 15px;
}
.order-product-card .info .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}
.order-product-card .info .features-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.order-product-card .info .features-list li i {
    color: var(--accent);
    font-size: 0.75rem;
}
.order-price-box {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.order-price-box .old-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 5px;
}
.order-price-box .current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}
.order-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 30px;
}
.order-form-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.order-form-card h3 i {
    color: var(--primary);
    margin-right: 8px;
}
.eft-info {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--primary);
}
.eft-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.eft-info .eft-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}
.eft-info .eft-row:last-child { border-bottom: none; }
.eft-info .eft-row .label { color: var(--text-muted); }
.eft-info .eft-row .value { color: var(--dark); font-weight: 600; }
.order-success-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 184, 148, 0.3);
    padding: 50px 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.order-success-box .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 20px;
}
.order-success-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.order-success-box p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.order-success-box .order-number {
    display: inline-block;
    background: var(--bg-light);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .order-section { padding: 20px 0 40px; }
    .order-grid { grid-template-columns: 1fr; gap: 20px; }
    .order-product-card .image img { max-height: 220px; }
    .order-product-card .info { padding: 16px; }
    .order-product-card .info h2 { font-size: 1.2rem; }
    .order-product-card .info .features-list { grid-template-columns: 1fr; }
    .order-price-box .current-price { font-size: 1.8rem; }
    .order-form-card { padding: 20px; }
    .eft-info .eft-row { flex-direction: column; gap: 3px; }
    .order-success-box { padding: 30px 20px; }
    .order-success-box h2 { font-size: 1.2rem; }
}
