:root {
    --primary: #FF6B9D;
    --primary-light: #FFB8D0;
    --secondary: #20B2AA;
    --secondary-light: #A8E6CF;
    --accent: #FFD93D;
    --cream: #FFF8F0;
    --dark: #2D3436;
    --gray: #636E72;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #FF6B9D 0%, #FF8B94 100%);
    --gradient-sec: linear-gradient(135deg, #20B2AA 0%, #A8E6CF 100%);
    --shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    --shadow-hover: 0 20px 60px rgba(255, 107, 157, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
    cursor: url('uploads/img/cursor.png') 4 5, auto;
}

a, button, input, textarea, select, .btn, [onclick], [role="button"], .category-card, .service-card, .gallery-item, .swiper-slide, .nav-list a, .sidebar-link, .category-link, .social-btn, .header-whatsapp, .mobile-menu-btn, .lightbox-nav, .lightbox-close, .product-gallery-item, .footer-social a, .footer-links a, .footer-services a, .scroll-indicator {
    cursor: url('uploads/img/cursor.png') 4 5, pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.header-main {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled .header-main {
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transform: rotate(-5deg);
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo img {
    height: 95px;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 60px;
}

.main-nav .nav-list {
    display: flex;
    gap: 35px;
}

.main-nav .nav-list a {
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.header:not(.scrolled) .main-nav .nav-list a {
    color: var(--white);
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
    width: 100%;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: var(--primary);
}

.main-nav .nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
}

.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.header-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 157, 0.7) 0%,
        rgba(32, 178, 170, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    z-index: 2;
}

/* Hero Slider Navigation */
.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.6;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

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

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary);
}

@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.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 3;
}

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

.scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-main img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-img-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
}

.about-img-small img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-intro {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: var(--cream);
}

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

.category-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

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

.category-img {
    height: 220px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.category-content {
    padding: 25px;
    position: relative;
}

.category-icon {
    position: absolute;
    top: -35px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.category-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
}

.category-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.category-link:hover {
    gap: 12px;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.why-text > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
}

.why-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.why-item h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 3px;
}

.why-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.why-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.why-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 0 50px;
}

.gallery-grid {
    column-count: 4;
    column-gap: 15px;
}

.gallery-grid .gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
    aspect-ratio: auto;
    display: inline-block;
    width: 100%;
}

.gallery-grid .gallery-item img {
    height: auto;
    object-fit: contain;
    border-radius: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: 2/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 157, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-info > p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 3px;
}

.contact-item a,
.contact-item p {
    font-weight: 600;
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.tiktok {
    background: #000000;
}

.social-btn:hover {
    transform: translateY(-5px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}



/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    text-align: center;
}

.cta-content i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 130px;
    background: var(--gradient);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay .dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 25px;
    max-width: 800px;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.page-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Breadcrumb Bar */
.breadcrumb-bar {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-bar nav {
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-bar a {
    color: var(--primary);
}

.breadcrumb-bar span:last-child {
    color: var(--dark);
    font-weight: 600;
}

/* Section padding */
.section-padding {
    padding: 80px 0;
    background: #fff;
}

.section-padding.cream {
    background: var(--cream);
}

/* Flex row layout */
.flex-row {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.flex-row .col {
    flex: 1;
    min-width: 300px;
}

/* Info Card */
.info-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card .icon-box {
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* About section heading */
.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 30px;
}

/* Spacing helpers */
.mb-30 {
    margin-bottom: 30px;
}

/* Narrow container */
.container-sm {
    max-width: 600px;
    margin: 0 auto;
}

/* Text center */
.text-center {
    text-align: center;
}

.text-center h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.text-center p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* CTA section compact */
.cta-compact {
    padding: 60px 0;
}

/* Icon Box */
.icon-box {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-box-lg {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

/* Button Group */
.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Image wrapper with shadow */
.img-wrap {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.img-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Page content text */
.page-text {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Service card */
.service-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body {
    padding: 25px;
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Feature list */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-item h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Grid helpers */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .flex-row {
        flex-direction: column;
    }

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

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

.footer-top {
    padding: 80px 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 60px;
    width: auto;
}

.footer-brand .logo-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
}

.footer-brand .logo-title {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--primary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Floating Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        column-count: 3;
    }

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

@media (max-width: 768px) {
    .header-content {
        gap: 15px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

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

    .main-nav .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.main-nav .nav-list a {
        color: var(--dark) !important;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .header-whatsapp span {
        display: none;
    }

    .header-whatsapp {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        order: -1;
    }

    .about-img-small {
        display: none;
    }

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

    .why-content {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
    }

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

    .gallery-grid {
        column-count: 2;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .gallery-masonry {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .gallery-grid {
        column-count: 1;
    }
}

/* ============ Category Detail Page ============ */

/* Page hero icon */
.page-hero-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Content wrapper */
.content-wrapper {
    max-width: 800px;
}

/* Section title for detail pages */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    margin-top: 10px;
}

/* Content text block */
.content-text {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Products heading */
.products-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* Product card body */
.product-card-body {
    padding: 20px;
}

.product-card-body .category-link {
    margin-top: 12px;
    display: inline-flex;
}

/* Sidebar */
.sidebar-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 140px;
}

.sidebar-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    color: inherit;
}

.sidebar-link i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    transition: all 0.3s;
}

.sidebar-link:hover {
    background: var(--primary);
    color: #fff;
}

.sidebar-link:hover i {
    color: #fff;
}

.sidebar-divider {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.sidebar-text {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.sidebar .btn {
    display: flex;
    justify-content: center;
}

/* Sidebar in flex-row */
.flex-row .sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* Sidebar link compact */
.sidebar-links-compact {
    gap: 8px;
    margin-bottom: 30px;
}

/* Sidebar contact */
.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.sidebar-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sidebar-contact-item i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.sidebar-contact-item span,
.sidebar-contact-item a {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Hero subtitle */
.hero-subtitle {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Product gallery grid */
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.product-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.product-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.product-gallery-item:hover img {
    transform: scale(1.05);
}

.product-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 157, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.product-gallery-item:hover .product-gallery-overlay {
    opacity: 1;
}

.product-gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* Product main image */
.product-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    max-width: 600px;
}

.product-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Product subtitle in content */
.product-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Sidebar link small */
.sidebar-link-sm {
    padding: 12px 15px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
}

.sidebar-link-sm i {
    font-size: 0.7rem;
    color: var(--primary);
    transition: all 0.3s;
}

.sidebar-link-sm:hover {
    background: var(--primary);
    color: #fff;
}

.sidebar-link-sm:hover i {
    color: #fff;
}

/* Category detail layout */
.cat-detail-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.cat-detail-layout .col-main {
    flex: 1;
    min-width: 0;
}

.cat-detail-layout .sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* Category meta (references count chip) */
.category-meta {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gray);
    background: #f0f0f0;
    padding: 4px 14px;
    border-radius: 20px;
    margin: 8px 0;
}

.category-meta i {
    margin-right: 6px;
    color: var(--primary);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 80px 0;
    color: var(--gray);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1.1rem;
}

/* Gallery section cream variant */
.gallery-section.cream-bg {
    background: var(--cream);
}

/* CTA compact section */
.cta-compact {
    padding: 80px 0;
    background: var(--gradient);
    color: #fff;
    text-align: center;
}

.cta-compact h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-compact p {
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-compact .btn.btn-white {
    display: inline-flex;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Contact page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-card:last-of-type {
    border-bottom: none;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-info-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.contact-info-card a,
.contact-info-card p {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    margin-top: 1.5rem;
}

.contact-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.contact-form-box {
    background: var(--cream);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid #f0e8e0;
}

.contact-form-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,107,157,0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-captcha {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-captcha img {
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
}

.form-captcha .form-input {
    flex: 1;
}

.form-submit {
    background: var(--gradient);
    color: var(--white);
    padding: 0.85rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.form-alert {
    margin-top: 1.25rem;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.form-alert.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-alert.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Hero description (contact page) */
.hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact page heading */
.contact-heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}