:root {
    --primary-color: #6b2d7b;
    --primary-light: #9b59b6;
    --primary-dark: #4a1d5c;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fc;
    --white: #ffffff;
    --text-color: #2c3e50;
    --text-muted: #7f8c8d;
    --border-color: #e8e8e8;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 40px rgba(107,45,123,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, #6b2d7b 0%, #9b59b6 100%);
    --gradient-dark: linear-gradient(135deg, #4a1d5c 0%, #6b2d7b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--secondary-color);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-info a {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info a:hover {
    color: var(--primary-light);
}

.top-info i {
    color: var(--primary-light);
}

.top-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-social a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.top-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* ==================== HEADER ==================== */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 55px;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--secondary-color);
    font-weight: 400;
}

/* ==================== NAVIGATION ==================== */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--white);
    background: var(--primary-color);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    list-style: none;
    border: none;
    border-top: 3px solid var(--primary-color);
}

.nav-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--text-color);
    font-size: 14px;
    border-left: 3px solid transparent;
}

.nav-menu .dropdown-menu li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* ==================== HEADER ACTIONS ==================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-toggle {
    background: var(--light-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.search-toggle:hover {
    background: var(--primary-color);
    color: white;
}

.whatsapp-btn {
    background: var(--success-color);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.whatsapp-btn:hover {
    background: #219a52;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.mobile-menu-toggle {
    background: var(--primary-color);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    font-size: 20px;
    color: white;
    cursor: pointer;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--gradient);
    color: white;
}

.mobile-menu-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-color);
}

.mobile-nav .sub-menu {
    list-style: none;
    padding: 0;
    background: var(--light-color);
    display: none;
}

.mobile-nav .sub-menu li a {
    display: block;
    padding: 14px 24px 14px 40px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.mobile-nav .has-children.active .sub-menu {
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== HERO SLIDER - REGAL STYLE ==================== */

.hero-section {
    position: relative;
    padding: 40px 0 20px;
    background: linear-gradient(180deg, rgba(11, 15, 38, 0.04) 0%, rgba(11, 15, 38, 0) 100%);
}


.hero-wrapper {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 24px;
    max-width: 100%;
    min-height: 620px;
    align-items: stretch;
}

.hero-main-slider {
    position: relative;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(11, 15, 38, 0.2);
}

.hero-main-slider .hero-slider,
.hero-main-slider .hero-slider .swiper-wrapper,
.hero-main-slider .hero-slider .swiper-slide {
    height: 100%;
}

.hero-promo-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    height: 100%;
}


.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    min-height: 620px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0b0f26;
}

.hero-slide-1 {
    background: linear-gradient(135deg, #6b2d7b 0%, #4a1d5c 50%, #2c1035 100%);
}

.hero-slide-2 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-slide-3 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #1a252f 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(255,255,255,0.03)"/><circle cx="20" cy="80" r="30" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 650px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(90deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.btn-hero {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: var(--transition);
    border: none;
}

.btn-hero:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(107,45,123,0.4);
}

.btn-hero i {
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

.hero-nav {
    width: 55px !important;
    height: 55px !important;
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border-radius: 50% !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.hero-nav:hover {
    background: white !important;
    color: var(--primary-color) !important;
}

.hero-nav::after {
    font-size: 16px !important;
    font-weight: bold;
}

.hero-pagination {
    bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

/* Legacy support */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* ==================== BUTTONS ==================== */
.btn {
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(107,45,123,0.3);
}

.btn-primary:hover {
    background: var(--gradient-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107,45,123,0.4);
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.btn-light:hover {
    background: var(--light-color);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 20px;
}

/* ==================== CATEGORY CARDS ==================== */
.category-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 35px 20px;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.category-card .icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    transition: var(--transition);
}

.category-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.category-card span {
    color: var(--text-muted);
    font-size: 13px;
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    padding: 25px;
    background: linear-gradient(180deg, var(--light-color) 0%, var(--white) 100%);
    text-align: center;
    overflow: hidden;
}

.product-image img {
    max-height: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
    height: 45px;
    overflow: hidden;
    color: var(--secondary-color);
}

.product-info h4 a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.product-price .current {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 12px;
    font-size: 13px;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    position: relative;
    z-index: 1;
}

.feature-box .icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-box:hover .icon {
    transform: translateY(-5px) rotate(5deg);
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-box p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* ==================== PRODUCT GALLERY ==================== */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    background: var(--light-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.product-main-image .main-img {
    max-height: 400px;
    object-fit: contain;
    transition: var(--transition);
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbnails .thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
    padding: 5px;
    background: var(--white);
    transition: var(--transition);
}

.product-thumbnails .thumb:hover,
.product-thumbnails .thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(107, 45, 123, 0.2);
}

.product-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==================== PRODUCT TABS ==================== */
.product-tabs {
    border-bottom: 2px solid var(--border-color);
}

.product-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 15px 25px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.product-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.product-tabs .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-bottom-color: var(--primary-color);
}

.product-tabs .nav-link i {
    opacity: 0.7;
}

.product-tabs .nav-link.active i {
    opacity: 1;
}

/* ==================== PRODUCT GRID ==================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ==================== SIDEBAR ==================== */
.sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    color: var(--secondary-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 14px;
}

.category-list li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.category-list li:last-child a {
    border-bottom: none;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: var(--gradient);
    padding: 70px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb {
    justify-content: center;
    margin: 0;
    position: relative;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ==================== PRODUCT DETAIL ==================== */
.product-detail-image {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.product-detail-image img {
    max-height: 450px;
    object-fit: contain;
}

.product-detail-info h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.product-detail-price .old {
    font-size: 22px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    font-size: 15px;
}

.product-features li i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 18px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-info-box .icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.contact-info-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-info-box p,
.contact-info-box a {
    color: var(--text-muted);
    font-size: 15px;
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-form .form-control {
    padding: 14px 18px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(107,45,123,0.1);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: var(--secondary-color);
    color: white;
}

.footer-top {
    padding: 70px 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-height: 55px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-text span {
    color: var(--primary-light);
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
}

.footer-widget p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: var(--primary-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-links a:hover::before {
    margin-right: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.5); }
    70% { box-shadow: 0 0 0 25px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

/* ==================== PROMO SIDEBAR ==================== */

.hero-promo-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0;
}

.promo-video-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(11, 15, 38, 0.35);
    background: #0b0f26;
}

.promo-video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.promo-video-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background: linear-gradient(180deg, rgba(11, 15, 38, 0) 0%, rgba(11, 15, 38, 0.92) 100%);
    color: #fff;
}

.promo-video-meta h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.promo-video-meta p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

.promo-placeholder {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px;
    border-radius: 24px;
    background: rgba(11, 15, 38, 0.05);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 5px 20px rgba(107,45,123,0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==================== CONTENT AREA ==================== */
.content-area {
    font-size: 16px;
    line-height: 1.9;
}

.content-area h2, .content-area h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.content-area ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-area ul li {
    margin-bottom: 10px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199.98px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-menu > li > a {
        padding: 10px 14px;
        font-size: 13px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
        min-height: auto;
    }

    .hero-main-slider {
        height: 520px;
    }

    .hero-promo-sidebar {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        height: auto;
    }

    .hero-promo-video,
    .hero-promo-gallery {
        height: 100%;
    }

    .promo-gallery-card img {
        height: 180px;
    }
}

@media (max-width: 991.98px) {
    .hero-wrapper {
        gap: 16px;
    }

    .hero-main-slider {
        height: 420px;
    }

    .hero-promo-sidebar {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-nav {
        display: none !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .promo-video-card {
        min-height: 260px;
    }

    .promo-gallery-card img {
        height: 200px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        display: none;
    }

    .hero-main-slider {
        height: 360px;
    }

    .hero-slide {
        min-height: 360px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 15px;
    }

    .btn-hero {
        padding: 14px 30px;
        font-size: 14px;
    }

    .promo-gallery-card img {
        height: 180px;
    }

    .section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-info h4 {
        font-size: 13px;
        height: auto;
    }
    
    .product-price .current {
        font-size: 18px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .page-header {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .footer-top {
        padding: 50px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-wrapper {
        gap: 12px;
    }

    .hero-main-slider {
        height: 280px;
    }

    .hero-slide {
        min-height: 280px;
    }

    .promo-video-card {
        min-height: 220px;
    }

    .promo-gallery-card img {
        height: 160px;
    }

    .category-card {
        padding: 25px 15px;
    }
    
    .category-card .icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .category-card h4 {
        font-size: 14px;
    }
    
    .feature-box {
        padding: 30px 15px;
    }
    
    .feature-box .icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .feature-box h4 {
        font-size: 16px;
    }
}
