/* ============================================
   ESTÚDIO LUMINA - WordPress Theme
   ============================================ */

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

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    --primary: #8be6ef;
    --primary-light: #d1fffd;
    --secondary: #FFA1CD;
    --secondary-light: #ffd1e8;
    --accent: #b07241;
    --text-dark: #3d3d3d;
    --text-light: #777;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 20px;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--primary-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ============================================
   PAGE LOADER
============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   TOP BAR - ANIMATED
============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: gradientMove 5s ease infinite;
    padding: 12px 0;
    overflow: hidden;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.top-bar-content {
    display: flex;
    animation: scroll-left 25s linear infinite;
    white-space: nowrap;
}

.top-bar-content span {
    display: inline-block;
    padding: 0 50px;
    font-size: 13px;
    font-weight: 500;
    color: white;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   HEADER
============================================ */
.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    color: var(--accent);
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 500px;
    min-width: 250px;
}

.search-bar form {
    display: flex;
    background: var(--light-gray);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-bar form:focus-within {
    border-color: var(--primary);
    background: white;
}

.search-bar input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    background: transparent;
    font-size: 14px;
}

.search-bar input::placeholder {
    color: var(--text-light);
}

.search-bar button {
    padding: 15px 25px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--secondary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 25px;
}

.header-action-btn i {
    font-size: 20px;
}

.header-action-btn:hover {
    color: var(--secondary);
    background: var(--light-gray);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--secondary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
}

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

/* ============================================
   NAVIGATION
============================================ */
.main-nav {
    background: var(--white);
    border-bottom: 3px solid var(--light-gray);
    position: sticky;
    top: 70px;
    z-index: 999;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 20px;
}

.nav-welcome {
    flex-shrink: 0;
}

.welcome-badge {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav-menu,
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-item,
.nav-menu a {
    display: block;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
}

.nav-item:hover,
.nav-item.active,
.nav-menu a:hover,
.nav-menu li.current-menu-item a {
    background: var(--primary);
    color: white;
}

.nav-social {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.nav-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}

.nav-social a:hover {
    background: var(--secondary);
    color: white;
}

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb,
.woocommerce-breadcrumb {
    padding: 15px 0;
    background: var(--light-gray);
    font-size: 14px;
}

.breadcrumb a,
.woocommerce-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

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

.breadcrumb span,
.breadcrumb-separator {
    color: var(--text-light);
    margin: 0 8px;
}

/* ============================================
   HERO SLIDER
============================================ */
.hero-slider {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffeef4 0%, var(--primary-light) 100%);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-inner {
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 40px 5%;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.slide-text {
    flex: 1;
    max-width: 550px;
}

.slide-text .subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 10px;
}

.slide-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-text h1 span {
    color: var(--secondary);
}

.slide-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--secondary);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
}

.slide-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(176, 114, 65, 0.3);
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slide-image img {
    max-height: 400px;
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.slide-decoration {
    position: absolute;
    font-size: 50px;
    opacity: 0.8;
}

.deco-1 { top: 10%; left: 10%; animation: float 4s ease-in-out infinite; }
.deco-2 { bottom: 20%; right: 15%; animation: float 3s ease-in-out infinite 0.5s; }
.deco-3 { top: 30%; right: 5%; animation: float 5s ease-in-out infinite 1s; }

/* Speech Bubble */
.speech-bubble {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: bounce 2s ease-in-out infinite;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary);
    color: white;
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.2);
}

/* ============================================
   BENEFITS BAR
============================================ */
.benefits-bar {
    background: var(--white);
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
}

.benefits-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon,
.benefit-item > div:first-child {
    font-size: 35px;
}

.benefit-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.benefit-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   SECTION STYLES
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 10px 0;
}

.section-header p {
    color: var(--text-light);
    margin-top: 10px;
    font-size: 16px;
}

/* ============================================
   CATEGORIES
============================================ */
.categories-section {
    padding: 70px 0;
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fff5f8, #f0faff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.category-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.category-count {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: var(--secondary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
}

/* ============================================
   PRODUCTS
============================================ */
.products-section {
    padding: 70px 0;
    background: var(--white);
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--light-gray);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: white;
}

/* Products Grid */
.products-grid,
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Product Card */
.product-card,
.woocommerce ul.products li.product {
    background: white;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image,
.woocommerce ul.products li.product a img {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
    margin: 0 !important;
}

.product-image img,
.woocommerce ul.products li.product a img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img,
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.05);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.badge,
.woocommerce span.onsale {
    padding: 6px 14px !important;
    font-size: 11px !important;
    font-weight: 600;
    border-radius: 50px !important;
    text-transform: uppercase;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.2 !important;
}

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

.badge-sale,
.woocommerce span.onsale {
    background: var(--secondary) !important;
    color: white !important;
}

.badge-hot {
    background: #ff6b6b;
    color: white;
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    z-index: 5;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.product-action-btn:hover {
    background: var(--secondary);
    color: white;
}

/* Product Info */
.product-info,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
    padding: 20px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px !important;
    font-weight: 600;
    color: var(--text-dark);
    padding-bottom: 5px !important;
}

.product-category {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.product-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition);
    text-decoration: none;
}

.product-name:hover {
    color: var(--secondary);
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.product-rating i {
    color: #ffc107;
    font-size: 13px;
}

.product-rating span {
    font-size: 12px;
    color: var(--text-light);
}

/* Product Price */
.product-price,
.woocommerce ul.products li.product .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-top: 0 !important;
}

.price-old,
.woocommerce ul.products li.product .price del {
    font-size: 14px !important;
    color: var(--text-light) !important;
    text-decoration: line-through;
}

.price-current,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price ins {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--accent) !important;
    text-decoration: none !important;
}

/* Add to Cart Button */
.product-add-cart,
.woocommerce ul.products li.product .button {
    display: block;
    width: calc(100% - 40px) !important;
    margin: 0 20px 20px !important;
    padding: 12px 20px !important;
    background: var(--text-dark) !important;
    color: white !important;
    border: none;
    border-radius: 50px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.product-add-cart:hover,
.woocommerce ul.products li.product .button:hover {
    background: var(--secondary) !important;
}

/* View All Button */
.view-all-btn {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-dark);
    color: white;
}

/* ============================================
   PROMO BANNERS
============================================ */
.banners-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.promo-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #5bc0de 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.promo-banner.secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff85b3 100%);
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.promo-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
}

.promo-banner h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.promo-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
}

.promo-btn:hover {
    background: var(--text-dark);
    color: white;
}

.promo-image {
    position: absolute;
    right: 20px;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.promo-image img {
    max-height: 250px;
}

/* ============================================
   FEATURES
============================================ */
.features-section {
    padding: 70px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid var(--light-gray);
}

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

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

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

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #f0faff 100%);
}

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

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

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* ============================================
   NEWSLETTER
============================================ */
.newsletter-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text {
    color: white;
}

.newsletter-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    width: 320px;
}

.newsletter-form button {
    padding: 16px 35px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--text-dark);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--text-dark);
    color: white;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
    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: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    color: white;
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px !important;
}

.contact-info i {
    color: var(--secondary);
    font-size: 18px;
    margin-top: 3px;
}

.contact-info span {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods img {
    height: 25px;
    border-radius: 4px;
}

/* ============================================
   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;
    color: white;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
    color: white;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

/* ============================================
   PAGINATION
============================================ */
.pagination,
.woocommerce-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link,
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
}

.page-link:hover,
.page-link.active,
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ============================================
   SITE MAIN
============================================ */
.site-main {
    padding: 40px 0;
    min-height: 50vh;
}

.woocommerce-main {
    background: var(--white);
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.shop-sidebar {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--border-radius);
    height: fit-content;
}

.shop-sidebar .widget {
    margin-bottom: 25px;
}

.shop-sidebar .widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }

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

@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 15px;
    }

    .hero-slider {
        min-height: 400px;
    }

    .slide-content {
        flex-direction: column;
        text-align: center;
    }

    .slide-text {
        max-width: 100%;
        order: 2;
    }

    .slide-image {
        order: 1;
    }

    .slide-image img {
        max-height: 250px;
    }

    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

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

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

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

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

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        z-index: 1001;
        transition: var(--transition);
        padding: 20px;
        overflow-y: auto;
        flex-direction: column;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        height: 100%;
    }

    .nav-menu,
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-item,
    .nav-menu a {
        width: 100%;
        justify-content: flex-start;
    }

    .menu-toggle {
        display: flex;
    }

    .header-action-btn span {
        display: none;
    }

    .slide-text h1 {
        font-size: 32px;
    }

    .benefits-list {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

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

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

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

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

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

/* ============================================
   CATEGORY PAGE STYLES
============================================ */

/* Category Hero */
.category-hero {
    position: relative;
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
    overflow: hidden;
}

.category-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 161, 205, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 230, 239, 0.1) 0%, transparent 50%);
}

.category-hero-content {
    position: relative;
    z-index: 1;
}

.category-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.category-icon-wrapper i {
    font-size: 40px;
    color: var(--secondary);
}

.category-title {
    font-family: 'Dancing Script', cursive;
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-title .sparkle {
    color: var(--accent);
    font-size: 32px;
}

.category-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.category-count-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* Category Page Main */
.category-page {
    padding: 40px 0 80px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

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

.filter-tab i {
    font-size: 14px;
}

/* Category Promo Banner */
.category-promo-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.promo-banner-content {
    flex: 1;
    max-width: 500px;
}

.promo-tag {
    display: inline-block;
    background: var(--white);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-title {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-text {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.promo-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--text-dark);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.promo-btn-outline:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.promo-banner-image {
    position: relative;
    flex-shrink: 0;
}

.promo-banner-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    transform: rotate(5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Results Bar */
.results-bar {
    background: var(--white);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    gap: 20px;
}

.results-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.results-info > span {
    font-size: 14px;
    color: var(--text-light);
}

.results-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

.results-filters {
    display: flex;
    gap: 10px;
}

.results-filter {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--light-gray);
    transition: var(--transition);
}

.results-filter:hover,
.results-filter.active {
    background: var(--primary);
    color: var(--white);
}

.results-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-sort label {
    font-size: 14px;
    color: var(--text-light);
    white-space: nowrap;
}

.orderby-select {
    padding: 10px 40px 10px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233d3d3d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.orderby-select:focus {
    border-color: var(--primary);
}

/* Category Products Grid */
.category-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Product Card Wrapper */
.product-card-wrapper {
    perspective: 1000px;
}

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

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
}

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

.badge-sale {
    background: var(--secondary);
    color: var(--white);
}

.badge-hot {
    background: #ff6b6b;
    color: var(--white);
}

/* Product Image */
.product-card .product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--light-gray);
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    color: var(--text-dark);
}

.action-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

/* Product Info */
.product-card .product-info {
    padding: 25px;
}

.product-category {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card .product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-card .product-title a:hover {
    color: var(--secondary);
}

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.product-rating .stars {
    display: flex;
    gap: 3px;
}

.product-rating .stars i {
    font-size: 14px;
    color: #ffc107;
}

.product-rating .stars i.far {
    color: #ddd;
}

.review-count {
    font-size: 13px;
    color: var(--text-light);
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--primary-light);
    color: var(--text-dark);
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.no-products-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.no-products h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.no-products p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Category Page Responsive */
@media (max-width: 1200px) {
    .category-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .category-promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .promo-banner-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .promo-banner-image img {
        transform: none;
        width: 200px;
        height: 200px;
    }

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

    .results-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .category-hero {
        padding: 40px 0;
    }

    .category-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .category-icon-wrapper i {
        font-size: 32px;
    }

    .category-title {
        font-size: 40px;
    }

    .filter-tabs {
        gap: 10px;
    }

    .filter-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .promo-title {
        font-size: 32px;
    }

    .results-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .category-products {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 32px;
        flex-direction: column;
        gap: 5px;
    }

    .category-promo-banner {
        padding: 30px 20px;
    }

    .promo-title {
        font-size: 28px;
    }

    .results-filters {
        flex-wrap: wrap;
    }
}

/* ============================================
   SHOP PAGE CATEGORIES
============================================ */
.shop-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.category-pill:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.category-pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.category-pill i {
    font-size: 16px;
}

/* Shop Banner Variation */
.shop-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.shop-banner .promo-tag {
    background: var(--white);
    color: var(--primary);
}

/* WooCommerce Orderby Override */
.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select.orderby {
    padding: 10px 40px 10px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233d3d3d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    min-width: 180px;
}

.woocommerce-ordering select.orderby:focus {
    border-color: var(--primary);
    outline: none;
}

/* WooCommerce Pagination Override */
.woocommerce-pagination {
    margin-top: 40px;
}

.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    border: none !important;
}

.woocommerce-pagination ul li {
    border: none !important;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.woocommerce-pagination ul li a:hover {
    background: var(--primary);
    color: var(--white);
}

.woocommerce-pagination ul li span.current {
    background: var(--secondary);
    color: var(--white);
}

/* Shop Page Responsive */
@media (max-width: 768px) {
    .shop-categories {
        gap: 8px;
    }

    .category-pill {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .category-pill {
        padding: 8px 15px;
        font-size: 12px;
    }

    .category-pill i {
        font-size: 14px;
    }
}
