/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #f7f0e0;
    --dark-green: #0c3e2f;
    --light-green: #1a5f4a;
    --accent: #ff6b6b;
    --soft-yellow: #ffd93d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-green);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

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

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

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

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

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-green);
}

/* ===== HEADER ===== */
.header {
    background-color: var(--dark-green);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--cream);
}

.nav-desktop {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cream);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    transform: translateY(-2px);
}

/* Cart Button */
.btn-cart {
    background-color: var(--dark-green);
    color: var(--cream);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cart:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 62, 47, 0.3);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--cream);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(247, 240, 224, 0.2);
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover {
    padding-left: 10px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(247, 240, 224, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.floating-icon {
    position: absolute;
    font-size: 60px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.15;
    pointer-events: none;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, var(--dark-green), var(--light-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
}

.text-dark {
    color: var(--dark-green);
}

.text-accent {
    color: var(--accent);
}

.emoji-spin {
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
}

.emoji-rotate {
    display: inline-block;
    animation: spin 3s linear infinite;
}

.emoji-pulse {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.emoji-wiggle {
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-small {
    font-size: 18px;
}

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

.btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--dark-green);
    color: var(--cream);
    box-shadow: 0 4px 15px rgba(12, 62, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(12, 62, 47, 0.4);
    background-color: var(--light-green);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
}

.btn-secondary:hover {
    background-color: var(--dark-green);
    color: var(--cream);
    transform: translateY(-5px) scale(1.05);
}

.btn-large {
    font-size: 20px;
    padding: 18px 48px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--dark-green);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.feature-tag:nth-child(1) {
    animation-delay: 0.8s;
}

.feature-tag:nth-child(2) {
    animation-delay: 0.9s;
}

.feature-tag:nth-child(3) {
    animation-delay: 1s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-text {
    font-size: 14px;
    color: var(--dark-green);
    opacity: 0.6;
    margin-bottom: 8px;
}

.scroll-emoji {
    font-size: 24px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--dark-green);
    opacity: 0.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-text-box {
    background: rgba(247, 240, 224, 0.5);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.about-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-green);
    margin-bottom: 24px;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-brand {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--dark-green), var(--light-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-bold {
    font-weight: 600;
}

.italic {
    font-style: italic;
}

/* Features Grid in About */
.features-grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card-about {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card-about:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon-about {
    font-size: 40px;
    margin-bottom: 12px;
}

.feature-icon-about.red {
    color: #ef4444;
}

.feature-icon-about.yellow {
    color: #eab308;
}

.feature-icon-about.blue {
    color: #3b82f6;
}

.feature-icon-about.green {
    color: #22c55e;
}

.feature-text-about {
    color: var(--dark-green);
    font-weight: 500;
    font-size: 16px;
}

/* Fun Facts */
.fun-facts {
    background: linear-gradient(90deg, var(--dark-green) 0%, var(--light-green) 100%);
    padding: 48px;
    border-radius: 24px;
    color: var(--cream);
}

.fun-facts-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
}

.fun-fact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.fun-fact-card:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
}

.fun-fact-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fun-fact-text {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}

.section-title-light {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.text-gradient-light {
    background: linear-gradient(90deg, var(--dark-green), var(--light-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle-light {
    font-size: 20px;
    color: var(--dark-green);
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(12, 62, 47, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-gradient {
    opacity: 0.1;
}

.gradient-purple-pink {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.gradient-yellow-orange {
    background: linear-gradient(135deg, #facc15 0%, #f97316 100%);
}

.gradient-green-blue {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
}

.gradient-red-purple {
    background: linear-gradient(135deg, #ef4444 0%, #a855f7 100%);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon-box {
    transform: rotate(360deg);
}

.gradient-purple-pink-bg {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.gradient-yellow-orange-bg {
    background: linear-gradient(135deg, #facc15 0%, #f97316 100%);
}

.gradient-green-blue-bg {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
}

.gradient-red-purple-bg {
    background: linear-gradient(135deg, #ef4444 0%, #a855f7 100%);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.service-title span {
    margin-left: 8px;
    font-size: 24px;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-green);
    opacity: 0.7;
    margin-bottom: 16px;
}

.service-btn {
    background: none;
    border: none;
    color: var(--dark-green);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 0;
    opacity: 0;
}

.service-card:hover .service-btn {
    opacity: 1;
}

.service-btn:hover {
    color: var(--light-green);
}

/* Services CTA */
.services-cta {
    background: linear-gradient(90deg, var(--dark-green) 0%, var(--light-green) 100%);
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    color: var(--cream);
}

.services-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-cta-text {
    font-size: 18px;
    margin-bottom: 24px;
}

.btn-cta {
    background: var(--cream);
    color: var(--dark-green);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-cta:hover {
    background: white;
    transform: scale(1.05);
}

/* ===== SHOP SECTION ===== */
.shop-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--cream);
    color: var(--dark-green);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    background: rgba(12, 62, 47, 0.1);
    transform: scale(1.05);
}

.filter-btn.active {
    background: var(--dark-green);
    color: var(--cream);
    transform: scale(1.05);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 48px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, #ffffff 100%);
}

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

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

.product-emoji-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 20px;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

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

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 50px;
}

.product-description {
    font-size: 14px;
    color: var(--dark-green);
    opacity: 0.7;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1;
}

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

.product-price {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--dark-green), var(--light-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.add-to-cart-btn {
    background: var(--dark-green);
    color: var(--cream);
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    min-height: 42px;
    min-width: fit-content;
    line-height: 1;
}

.add-to-cart-btn:hover {
    transform: scale(1.1);
    background: var(--light-green);
    box-shadow: 0 5px 15px rgba(12, 62, 47, 0.3);
}

.shop-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
}

.contact-section .section-title-light {
    color: var(--cream);
}

.contact-section .section-subtitle-light {
    color: var(--cream);
    opacity: 0.9;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(247, 240, 224, 0.1);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(247, 240, 224, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 40px;
}

.contact-item h3 {
    color: var(--cream);
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--cream);
    opacity: 0.9;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input,
.form-textarea {
    padding: 15px 20px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark-green);
}

.form-input:focus,
.form-textarea:focus {
    outline: 3px solid var(--cream);
    outline-offset: 2px;
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-green);
    color: var(--cream);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 16px;
    opacity: 0.9;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    color: var(--cream);
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    padding-left: 5px;
}

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

.social-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(247, 240, 224, 0.2);
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-desktop {
        display: none;
    }

    .btn-cart {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

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

    /* Ocultar scroll indicator en dispositivos pequeños */
    .scroll-indicator {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 20px 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-small {
        font-size: 16px;
    }

    .feature-tags {
        margin-top: 30px;
        gap: 12px;
    }

    .feature-tag {
        font-size: 13px;
        padding: 10px 18px;
    }

    /* Ocultar scroll indicator en tablets */
    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .floating-icon {
        font-size: 40px;
    }

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

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

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

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

    /* Fun facts vertical solo en móviles */
    .fun-facts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 15px 60px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-small {
        font-size: 14px;
        display: block;
        margin-top: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
    }

    .btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 16px;
    }

    .feature-tags {
        margin-top: 20px;
        gap: 8px;
    }

    .feature-tag {
        font-size: 12px;
        padding: 8px 14px;
    }

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

    .section-subtitle {
        font-size: 16px;
    }

    .floating-icon {
        font-size: 30px;
    }

    .product-card {
        margin: 10px 0;
    }

    .service-card {
        margin: 15px 0;
    }

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

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }

    /* Asegurar que el scroll indicator esté oculto */
    .scroll-indicator {
        display: none !important;
    }

    /* Ajustes para la tienda */
    .shop-section {
        padding-top: 90px !important;
    }

    .shop-filters {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* Mejoras adicionales para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-section {
        padding: 100px 20px 80px;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .hero {
        padding: 80px 10px 50px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-small {
        font-size: 13px;
    }

    .feature-tags {
        margin-top: 15px;
        gap: 6px;
    }

    .feature-tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .logo {
        height: 45px;
    }

    .container {
        padding: 0 10px;
    }

    .header {
        padding: 12px 15px;
    }

    /* Ajustes para la tienda en móviles muy pequeños */
    .shop-section {
        padding-top: 80px !important;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Landscape móviles */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 60px 20px 40px;
    }

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

    .floating-icons {
        display: none;
    }
}

/* Optimizaciones táctiles */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .add-to-cart-btn,
    .filter-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .menu-toggle {
        padding: 10px;
    }

    .product-card,
    .service-card {
        cursor: default;
    }
}

/* ===== SHOP MODAL & DISCOUNT STYLES ===== */
/* (Movido desde shop.js para mejor rendimiento) */

/* Global Discount Banner - Diagonal Ribbon */
.global-discount-banner {
    position: fixed;
    top: 35px;
    right: -45px;
    z-index: 9999;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 18px 75px;
    transform: rotate(45deg);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInDiagonal 0.6s ease-out, ribbonPulse 3s ease-in-out infinite;
    min-width: 220px;
    text-align: center;
}

.global-discount-banner:hover {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.7);
    transform: rotate(45deg) scale(1.05);
}

.global-discount-banner:active {
    transform: rotate(45deg) scale(0.95);
}

.global-discount-content {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.global-discount-icon {
    font-size: 28px;
    animation: wiggle 1s ease-in-out infinite;
}

.global-discount-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.global-discount-event {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

.global-discount-percentage {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Falling Money Emojis */
.falling-money-emoji {
    position: fixed;
    top: -50px;
    font-size: 40px;
    z-index: 9998;
    pointer-events: none;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(var(--random-rotation));
        opacity: 0;
    }
}

@keyframes slideInDiagonal {
    from {
        top: -100px;
        right: -180px;
        opacity: 0;
    }
    to {
        top: 35px;
        right: -45px;
        opacity: 1;
    }
}

@keyframes ribbonPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow: 0 6px 24px rgba(220, 38, 38, 0.8);
    }
}

/* Discount Banner Tablet */
@media (max-width: 1024px) {
    .global-discount-banner {
        top: 30px;
        right: -40px;
        padding: 15px 65px;
        min-width: 190px;
    }

    .global-discount-event {
        font-size: 11px;
    }

    .global-discount-percentage {
        font-size: 18px;
    }
}

/* Discount Banner Mobile */
@media (max-width: 768px) {
    .global-discount-banner {
        top: 25px;
        right: -35px;
        padding: 12px 55px;
        min-width: 160px;
    }

    .global-discount-icon {
        font-size: 20px;
    }

    .global-discount-event {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .global-discount-percentage {
        font-size: 15px;
    }

    .falling-money-emoji {
        font-size: 30px;
    }
}

/* Discount Banner Small mobile */
@media (max-width: 480px) {
    .global-discount-banner {
        top: 20px;
        right: -30px;
        padding: 10px 45px;
        min-width: 130px;
    }

    .global-discount-icon {
        font-size: 16px;
    }

    .global-discount-event {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .global-discount-percentage {
        font-size: 13px;
    }

    .falling-money-emoji {
        font-size: 24px;
    }
}

/* ========== CARD MODE - Floating Card ========== */
.global-discount-card {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: cardFloat 4s ease-in-out infinite, cardSlideIn 0.6s ease-out;
    max-width: 320px;
}

.global-discount-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6);
}

.global-discount-card:active {
    transform: scale(0.98);
}

.global-discount-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.global-discount-card-icon {
    font-size: 40px;
    animation: wiggle 1s ease-in-out infinite;
}

.global-discount-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.global-discount-card-event {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    opacity: 0.95;
}

.global-discount-card-percentage {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Card responsive - Tablet */
@media (max-width: 1024px) {
    .global-discount-card {
        top: 90px;
        right: 15px;
        padding: 14px 20px;
        max-width: 280px;
    }

    .global-discount-card-icon {
        font-size: 32px;
    }

    .global-discount-card-event {
        font-size: 13px;
    }

    .global-discount-card-percentage {
        font-size: 24px;
    }
}

/* Card responsive - Mobile */
@media (max-width: 768px) {
    .global-discount-card {
        top: auto;
        bottom: 90px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 12px 16px;
        border-radius: 12px;
    }

    .global-discount-card-content {
        gap: 12px;
    }

    .global-discount-card-icon {
        font-size: 28px;
    }

    .global-discount-card-event {
        font-size: 12px;
    }

    .global-discount-card-percentage {
        font-size: 20px;
    }
}

/* Card responsive - Small mobile */
@media (max-width: 480px) {
    .global-discount-card {
        bottom: 80px;
        padding: 10px 14px;
    }

    .global-discount-card-icon {
        font-size: 24px;
    }

    .global-discount-card-event {
        font-size: 11px;
    }

    .global-discount-card-percentage {
        font-size: 18px;
    }
}

/* Discount Badge - Corner Banner */
.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.discount-badge-content {
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 8px 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-weight: 800;
    font-size: 11px;
    line-height: 1.2;
}

.discount-event {
    display: block;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.discount-percentage {
    display: block;
    font-size: 14px;
    font-weight: 900;
    margin-top: 2px;
}

/* Product Card Price Container */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.original-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.discounted-price {
    font-size: 20px;
    font-weight: 900;
    color: #dc2626;
    text-shadow: 0 1px 2px rgba(220, 38, 38, 0.1);
}

/* Product Modal Discount Styles */
.product-modal-price-wrapper {
    margin-bottom: 30px;
}

.product-modal-price.original {
    font-size: 24px;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.product-modal-price.discounted {
    font-size: 42px;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 10px;
}

.product-modal-discount-label {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.product-view-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(12, 62, 47, 0.95);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-view-badge {
    opacity: 1;
}

/* ===== PRODUCT MODAL ===== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.product-modal-content {
    position: relative;
    max-width: 1000px;
    width: 90%;
    margin: 30px auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.product-modal.active .product-modal-content {
    transform: scale(1);
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    background: white;
    transform: rotate(90deg);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: start;
}

.product-modal-image {
    position: sticky;
    top: 0;
    background: #f3f4f6;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: flex-start;
    min-height: 400px;
    max-height: 90vh;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 15px;
}

.product-modal-emoji {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 50px;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-modal-info {
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 90vh;
    overflow-y: auto;
}

.product-modal-info::-webkit-scrollbar {
    width: 6px;
}

.product-modal-info::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product-modal-info::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.product-modal-info::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.product-modal-category {
    display: inline-block;
    padding: 8px 16px;
    background: var(--dark-green);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-modal-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 20px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.product-modal-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.product-modal-description::-webkit-scrollbar {
    width: 6px;
}

.product-modal-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-modal-description::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.product-modal-description::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.product-modal-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.product-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-modal-btn-cart,
.product-modal-btn-whatsapp {
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.product-modal-btn-cart {
    background: var(--dark-green);
    color: white;
}

.product-modal-btn-cart:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 62, 47, 0.3);
}

.product-modal-btn-whatsapp {
    background: #25D366;
    color: white;
}

.product-modal-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.product-modal-btn-cart.disabled,
.add-to-cart-btn.disabled {
    background: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.product-modal-btn-cart.disabled:hover,
.add-to-cart-btn.disabled:hover {
    background: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Stock badges */
.stock-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-badge.stock-available {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.stock-badge.stock-out {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.stock-badge.stock-low {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fbbf24;
    animation: pulse-stock 2s ease-in-out infinite;
}

.stock-badge.stock-normal {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

@keyframes pulse-stock {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Product Modal Mobile */
@media (max-width: 768px) {
    .product-modal-content {
        margin: 15px;
        width: calc(100% - 30px);
        max-height: 95vh;
    }

    .product-modal-grid {
        grid-template-columns: 1fr;
    }

    .product-modal-image {
        padding: 30px;
    }

    .product-modal-info {
        padding: 25px;
        gap: 12px;
    }

    .product-modal-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .product-modal-price {
        font-size: 26px;
    }

    .product-modal-emoji {
        font-size: 40px;
        width: 60px;
        height: 60px;
        top: 20px;
        left: 20px;
    }

    .product-modal-description {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* ===== SHOP CONTROLS (Busqueda y Ordenamiento) ===== */
.shop-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
    min-width: 250px;
}

.search-box .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 14px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(12, 62, 47, 0.1);
}

.search-box input::placeholder {
    color: #9ca3af;
}

.clear-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #e5e7eb;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.clear-search:hover {
    background: #d1d5db;
    color: #374151;
}

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

.sort-box label {
    font-weight: 600;
    color: var(--dark-green);
    white-space: nowrap;
}

.sort-box select {
    padding: 12px 35px 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: white 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='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.sort-box select:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(12, 62, 47, 0.1);
}

.sort-box select:hover {
    border-color: var(--light-green);
}

/* Contador de resultados */
.results-counter {
    text-align: center;
    padding: 10px 20px;
    margin-bottom: 20px;
    color: #6b7280;
    font-size: 14px;
    background: #f9fafb;
    border-radius: 8px;
}

.results-counter strong {
    color: var(--dark-green);
    font-weight: 700;
}

.results-counter .no-results {
    color: #ef4444;
}

/* Shop Controls Mobile */
@media (max-width: 768px) {
    .shop-controls {
        flex-direction: column;
        gap: 15px;
    }

    .search-box {
        max-width: 100%;
        min-width: 100%;
    }

    .sort-box {
        width: 100%;
        justify-content: center;
    }

    .sort-box select {
        flex: 1;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .sort-box {
        flex-direction: column;
        gap: 8px;
    }

    .sort-box select {
        max-width: 100%;
        width: 100%;
    }
}
