/* ============================================
   KASAB BOUTIQUE - Main Stylesheet
   ============================================ */

:root {
    --primary: #8B1A4A;
    --primary-dark: #6B1238;
    --primary-light: #A0325E;
    --secondary: #D4A853;
    --secondary-light: #E8C97A;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --text: #444444;
    --text-light: #777777;
    --light: #FAF6F0;
    --white: #ffffff;
    --border: #eee;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --radius: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 600;
}

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

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

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

/* ---- Top Bar ---- */
.top-bar {
    background: var(--dark);
    color: #ccc;
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar a {
    color: #ccc;
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--secondary);
}

/* ---- Navbar ---- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 4px;
}

.navbar-brand .brand-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    color: var(--secondary);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-brand:hover .brand-text {
    color: var(--primary-dark);
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 18px !important;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(139, 26, 74, 0.06);
}

.whatsapp-nav {
    color: var(--whatsapp) !important;
    font-weight: 600;
}

.whatsapp-nav:hover {
    background: var(--whatsapp) !important;
    color: var(--white) !important;
}

/* ---- Hero Slider ---- */
.hero-section {
    position: relative;
}

.hero-slide {
    height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(139, 26, 74, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-hero {
    background: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1rem;
    border: 2px solid var(--secondary);
    transition: var(--transition);
}

.btn-hero:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.hero-swiper .swiper-pagination-bullet {
    background: var(--white);
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary);
    width: 30px;
    border-radius: 10px;
}

/* ---- Features Strip ---- */
.features-strip {
    background: var(--primary);
    padding: 20px 0;
}

.feature-item {
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* ---- Section Styles ---- */
.section-padding {
    padding: 70px 0;
}

.section-header {
    margin-bottom: 45px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 12px auto 0;
    border-radius: 3px;
}

/* ---- Category Cards ---- */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    border-radius: var(--radius);
    background: var(--light);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition);
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.category-card h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.category-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---- Product Cards ---- */
.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 26, 74, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: 2px solid var(--white);
    border-radius: 50px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 5px 0 8px;
    line-height: 1.3;
}

.product-name a {
    color: var(--dark);
    text-decoration: none;
}

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

.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.current-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    font-size: 0.7rem;
    background: #fff3cd;
    color: #856404;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
    margin-top: auto;
    transition: var(--transition);
}

.btn-buy:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
    transform: scale(1.03);
}

/* ---- Products Swiper ---- */
.products-swiper .swiper-slide {
    height: auto;
}

.products-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* ---- Why Us Section ---- */
.why-us-section {
    background: var(--light);
}

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

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

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 60px 0;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-section p {
    opacity: 0.85;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.btn-whatsapp-cta {
    background: var(--whatsapp);
    color: var(--white);
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    border: 2px solid var(--whatsapp);
    transition: var(--transition);
}

.btn-whatsapp-cta:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-main {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ---- Page Banner ---- */
.page-banner {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 50px 0;
    text-align: center;
    color: var(--white);
}

.page-banner-sm {
    padding: 25px 0;
}

.page-banner h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    margin-bottom: 0;
}

.page-banner .breadcrumb-item a {
    color: var(--secondary);
}

.page-banner .breadcrumb-item.active {
    color: rgba(255,255,255,0.7);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ---- Filter Sidebar ---- */
.filter-sidebar {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    position: sticky;
    top: 100px;
}

.filter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    color: var(--dark);
}

.category-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filter-list li {
    margin-bottom: 4px;
}

.category-filter-list a {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.category-filter-list a .badge {
    margin-left: auto;
    background: var(--primary);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 50px;
}

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

.category-filter-list a.active .badge {
    background: var(--secondary);
    color: var(--dark);
}

.help-box {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
}

.help-box i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.help-box h6 {
    color: var(--white);
    margin-bottom: 5px;
}

.help-box p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.btn-whatsapp-sm {
    background: var(--white);
    color: var(--whatsapp-dark);
    font-weight: 600;
    border-radius: 50px;
    padding: 6px 20px;
}

.btn-whatsapp-sm:hover {
    background: var(--dark);
    color: var(--white);
}

.results-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---- Product Detail Page ---- */
.product-detail-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-detail-image img {
    width: 100%;
    border-radius: var(--radius);
}

.product-badge-lg {
    font-size: 0.85rem;
    padding: 6px 18px;
}

.discount-ribbon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.detail-category a {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.detail-name {
    font-size: 2rem;
    margin: 10px 0 20px;
    line-height: 1.3;
}

.detail-price-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.detail-current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.detail-original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.detail-savings {
    font-size: 0.85rem;
    background: #d4edda;
    color: #155724;
    padding: 4px 14px;
    border-radius: 50px;
    font-weight: 600;
}

.detail-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
}

.detail-features {
    margin-bottom: 30px;
}

.detail-features h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.detail-features ul {
    list-style: none;
    padding: 0;
}

.detail-features li {
    padding: 6px 0;
    color: var(--text);
    font-size: 0.95rem;
}

.detail-features li i {
    color: var(--whatsapp);
}

.detail-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-whatsapp-buy {
    background: var(--whatsapp);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    flex: 1;
    text-align: center;
    min-width: 200px;
    border: 2px solid var(--whatsapp);
    transition: var(--transition);
}

.btn-whatsapp-buy:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
    transform: scale(1.02);
}

.btn-call {
    background: transparent;
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

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

.detail-trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ---- Related Products ---- */
.related-section {
    background: var(--light);
}

/* ---- About Page ---- */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-subtitle {
    display: block;
    margin-bottom: 5px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content .section-title::after {
    margin: 12px 0 0;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.about-feature-item i {
    color: var(--whatsapp);
    font-size: 1.1rem;
}

.about-feature-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* ---- Stats Section ---- */
.stats-section {
    background: var(--primary);
    padding: 50px 0;
    color: var(--white);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Contact Section ---- */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.1rem;
}

.contact-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    color: #aaa;
    padding: 60px 0 0;
}

.footer-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.footer-brand .brand-sub {
    font-size: 0.55rem;
    color: var(--secondary);
    letter-spacing: 5px;
    display: block;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

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

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

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

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

.footer-links a {
    color: #aaa;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact a {
    color: #aaa;
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
    transform: scale(1.1);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-slide {
        height: 420px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .detail-name {
        font-size: 1.5rem;
    }

    .about-experience {
        right: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }

    .exp-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .section-padding {
        padding: 45px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 0.85rem;
    }

    .current-price {
        font-size: 1rem;
    }

    .btn-buy {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

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

    .detail-current-price {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .about-experience {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 15px;
        display: inline-block;
    }

    .filter-sidebar {
        position: static;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 575px) {
    .category-card {
        padding: 20px 10px;
    }

    .category-icon {
        width: 55px;
        height: 55px;
    }

    .category-card h5 {
        font-size: 0.8rem;
    }
}

/* ---- Scroll animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
