/* Custom tweaks on top of Tailwind */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Smooth details/summary */
details[open] > summary { color: #1f7a53; }

/* Simple focus styles */
input:focus, textarea:focus, select:focus, button:focus {
    outline: 2px solid #1f7a53;
    outline-offset: 2px;
}

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(31, 122, 83, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(31, 122, 83, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Fade in animation classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Product card enhancements */
.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card:hover .product-image::after {
    opacity: 1;
}

/* Hero section enhancements */
.hero-gradient {
    background: linear-gradient(135deg, #d9f99d 0%, #86efac 25%, #6ee7b7 50%, #5eead4 75%, #7dd3fc 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    position: relative;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.3), transparent 60%);
    animation: float 6s ease-in-out infinite;
}

/* Button enhancements */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 122, 83, 0.3);
}

/* WhatsApp button pulse */
.whatsapp-float {
    animation: pulse-glow 2s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

/* Card hover effect */
.info-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f0fdf4 0%, white 100%);
}

/* Top bar animation */
.top-bar {
    background: linear-gradient(90deg, #1f7a53 0%, #2aa06f 50%, #1f7a53 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* FAQ Cards Creative Styling */
.faq-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.faq-card:hover::before {
    left: 100%;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-card details {
    transition: all 0.3s ease;
}

.faq-card details[open] {
    background: rgba(16, 185, 129, 0.03);
}

.faq-card details summary {
    transition: all 0.3s ease;
    list-style: none;
}

.faq-card details summary::-webkit-details-marker {
    display: none;
}

.faq-card details summary::marker {
    display: none;
}

.faq-card details[open] summary {
    color: #1f7a53;
    padding-bottom: 0.75rem;
}

/* FAQ Card Chevron Icon Animation */
.faq-card details summary svg:last-child {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card details[open] summary svg:last-child {
    transform: rotate(180deg);
}

/* FAQ Card Content Animation */
.faq-card details div {
    animation: faqContentSlide 0.4s ease-out forwards;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-card details[open] div {
    animation: faqContentSlide 0.4s ease-out forwards;
    opacity: 1;
    transform: translateY(0);
}


@keyframes faqContentSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Card Border Animation */
.faq-card {
    background-clip: padding-box;
}

.faq-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(31, 122, 83, 0.2), transparent, rgba(31, 122, 83, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-card:hover::after {
    opacity: 0.6;
}

/* FAQ Details Enhancement */
details {
    transition: all 0.3s ease;
}

details summary:hover {
    color: #1f7a53;
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Price list hover */
.price-item {
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 6px;
    margin: -8px;
}

.price-item:hover {
    background: #f0fdf4;
    padding-left: 16px;
}

/* Contact form focus effects */
input:focus, textarea:focus {
    border-color: #1f7a53;
    box-shadow: 0 0 0 3px rgba(31, 122, 83, 0.1);
}

/* Header backdrop blur enhancement */
.header-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #1f7a53 0%, #2aa06f 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal animations */
@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-modal-in {
    animation: modal-in 0.3s ease-out;
}

/* Product card click effect */
.product-card {
    cursor: pointer;
    user-select: none;
}

.product-card:active {
    transform: scale(0.98);
}

/* Price styling */
.price-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    display: inline-block;
    line-height: 1.4;
}

.price-badge .price-option {
    display: block;
    white-space: nowrap;
}

.price-badge .price-option + .price-option {
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.price-badge .weight {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-right: 4px;
}

.price-badge .amount {
    font-size: 1rem;
    font-weight: 700;
}

/* Modal image zoom */
.modal-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
    background: #f8fafc;
}

.modal-image-wrapper.zoomed {
    cursor: zoom-out;
}

.modal-image-wrapper img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

.modal-image-wrapper.zoomed img {
    transform: scale(2);
    cursor: move;
}

/* Enhanced section backgrounds */
#collection {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 50%, #f8fafc 100%);
}

#flowers {
    background: linear-gradient(135deg, #fff 0%, #fef3f2 50%, #fff 100%);
}

#baby-leaves {
    background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 50%, #f8fafc 100%);
}

/* Product grid improvements */
.product-card .font-semibold {
    color: #1e293b;
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.product-card .text-slate-500 {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #64748b;
}

/* Enhanced stock badge */
.stock-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

/* Loading skeleton animation */
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 0px, #f8f8f8 40px, #f0f0f0 80px);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* Improved button states */
button:disabled, a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Enhanced shadow system */
.shadow-brand {
    box-shadow: 0 4px 14px 0 rgba(31, 122, 83, 0.2);
}

.shadow-brand-lg {
    box-shadow: 0 10px 40px 0 rgba(31, 122, 83, 0.25);
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded, img:not([loading="lazy"]) {
    opacity: 1;
}

/* Better focus indicators */
a:focus-visible, button:focus-visible {
    outline: 2px solid #1f7a53;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced typography */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Smooth section transitions */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: section-line 3s ease-in-out infinite;
}

@keyframes section-line {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

/* Mobile menu improvements */
@media (max-width: 768px) {
    .product-card {
        transform: translateY(0);
    }

    .product-card:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .product-card:active {
        transform: scale(0.98);
    }

    .feature-special-card {
        order: -1; /* Show special card first on mobile */
    }

    .feature-special-card .w-20 {
        width: 4rem;
        height: 4rem;
    }

    .feature-special-card .text-xl {
        font-size: 1.125rem;
    }
}

/* New Image Slider Styles */
#image-slider {
    position: relative;
    overflow: hidden;
}

.slider-images-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.slider-img.active {
    opacity: 1;
    z-index: 1;
}

.slider-nav-btn {
    cursor: pointer;
    border: none;
    outline: none;
    opacity: 0.3;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

#image-slider:hover .slider-nav-btn {
    opacity: 1;
}

.slider-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
}

.slider-dot {
    cursor: pointer;
    border: none;
    outline: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    width: 2rem;
}

/* Slider Content Styles */
.slider-content {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
    pointer-events: none;
    visibility: hidden;
}

.slider-content.active {
    opacity: 1 !important;
    z-index: 10 !important;
    visibility: visible !important;
}


/* Floating particles animation */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.6;
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) translateX(-10px);
        opacity: 0.7;
    }
}

@keyframes float-slow-delayed {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-35px) translateX(20px);
        opacity: 0.5;
    }
}

.animate-float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 6s ease-in-out infinite 2s;
}

.animate-float-slow-delayed {
    animation: float-slow-delayed 10s ease-in-out infinite 1s;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-up {
    animation: fadeInUpStagger 0.6s ease-out;
}

.animate-slide-in-up-delayed {
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

/* Hero image zoom out */
.hero-gradient {
    position: relative;
    overflow: hidden;
}

.hero-image-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Slider badge enhancement */
.slider-badge {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.slider-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Slider title enhancement */
.slider-title span {
    display: inline-block;
    transition: all 0.3s ease;
}

.slider-title span:hover {
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .michelin-slider-container {
        height: 400px !important;
    }
    
    .slider-cta-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Slider Responsive Styles */
@media (max-width: 768px) {
    /* Slider height adjustment - taller to fit content */
    #image-slider {
        height: 550px !important;
    }
    
    /* Slider content max-width */
    .slider-content > div {
        max-width: 100% !important;
    }
    
    /* Slider title - optimized for mobile */
    .slider-content h2 {
        font-size: 1.375rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
        font-weight: 800 !important;
    }
    
    /* Slider description - optimized for mobile */
    .slider-content p {
        font-size: 0.8125rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0 !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Badge - smaller on mobile */
    .slider-content .inline-flex {
        font-size: 0.6875rem !important;
        padding: 0.375rem 0.625rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .slider-content .inline-flex svg {
        width: 0.75rem !important;
        height: 0.75rem !important;
        margin-right: 0.375rem !important;
    }
    
    /* Navigation buttons - hidden on mobile */
    .slider-nav-btn {
        display: none !important;
    }
    
    /* CTA buttons - better mobile layout */
    .slider-cta-buttons {
        bottom: 4rem !important;
        left: 50% !important;
        transform: translateX(-50%);
        width: calc(100% - 3rem);
        max-width: 100%;
        padding: 0 1rem;
        gap: 0.625rem !important;
    }
    
    .slider-cta-buttons a {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.8125rem !important;
        width: 100%;
        text-align: center;
        flex-shrink: 0;
    }
    
    /* Indicators - better positioning on mobile */
    .slider-indicators {
        bottom: 1.25rem !important;
        gap: 0.375rem !important;
    }
    
    .slider-dot {
        width: 0.5rem !important;
        height: 0.5rem !important;
    }
    
    .slider-dot.active {
        width: 1rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    #image-slider {
        height: 500px !important;
    }
    
    .slider-content h2 {
        font-size: 1.125rem !important;
        margin-bottom: 0.375rem !important;
        line-height: 1.25 !important;
    }
    
    .slider-content p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .slider-content .inline-flex {
        font-size: 0.625rem !important;
        padding: 0.25rem 0.5rem !important;
        margin-bottom: 0.375rem !important;
    }
    
    .slider-content .inline-flex svg {
        width: 0.625rem !important;
        height: 0.625rem !important;
        margin-right: 0.25rem !important;
    }
    
    /* Navigation buttons - hidden on extra small devices too */
    
    /* CTA buttons */
    .slider-cta-buttons {
        bottom: 3.5rem !important;
        gap: 0.5rem !important;
        width: calc(100% - 2rem) !important;
    }
    
    .slider-cta-buttons a {
        padding: 0.5625rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Indicators */
    .slider-indicators {
        bottom: 1rem !important;
        gap: 0.25rem !important;
    }
    
    .slider-dot {
        width: 0.375rem !important;
        height: 0.375rem !important;
    }
    
    .slider-dot.active {
        width: 0.875rem !important;
    }
}

/* Feature Cards Styling */
.feature-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(31, 122, 83, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card .relative.z-10 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card h3 {
    flex-shrink: 0;
}

.feature-card p {
    flex: 1;
}

/* Feature Info Card Styling */
.feature-card-info {
    position: relative;
    overflow: hidden;
}

.feature-card-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    transition: left 0.5s;
}

.feature-card-info:hover::before {
    left: 100%;
}

.feature-card-info:hover {
    transform: translateY(-4px);
    border-color: #10b981;
}

.feature-stat-card {
    position: relative;
    overflow: hidden;
}

.feature-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-stat-card:hover::after {
    transform: scaleX(1);
}

/* Counter Animation */
.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

/* Process Timeline Styling */
.process-step-card {
    position: relative;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(31, 122, 83, 0.1), transparent);
    transition: left 0.5s;
}

.process-step-card:hover::before {
    left: 100%;
}

.process-step-card::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
    transition: width 0.3s ease;
}

.process-step-card:hover::after {
    width: 80%;
}

/* Feature section decorative elements */
#products::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#products::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Brand Logo Styles */
.brand-logo {
    text-decoration: none;
    color: inherit;
}

.brand-logo-text {
    position: relative;
    cursor: pointer;
}

.brand-main-text {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1e293b;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.brand-main-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #059669);
    transition: width 0.4s ease;
}

.brand-logo:hover .brand-main-text::after {
    width: 100%;
}

.brand-logo:hover .brand-main-text {
    color: #155b3e;
    transform: translateY(-1px);
}

.brand-sub-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 0.1em;
    margin-top: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.brand-logo:hover .brand-sub-text {
    color: #059669;
    letter-spacing: 0.15em;
}

/* Footer logo adjustments */
footer .brand-main-text {
    font-size: 1.5rem;
}

footer .brand-sub-text {
    font-size: 0.75rem;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .brand-main-text {
        font-size: 1.5rem;
    }
    
    .brand-sub-text {
        font-size: 0.8rem;
    }
    
    footer .brand-main-text {
        font-size: 1.25rem;
    }
    
    footer .brand-sub-text {
        font-size: 0.7rem;
    }
}

/* Contact Cards Styling */
.contact-card {
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:active {
    transform: translateY(-1px) scale(0.98);
}

/* Print styles */
@media print {
    .whatsapp-float, .top-bar, header, footer {
        display: none !important;
    }

    .product-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

