/* NUSIQA KOI CENTER - Main Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Aquatic Decorative Elements */
.aquatic-decoration {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(59,130,246,0.4));
    animation: float 6s ease-in-out infinite;
}

.bubble:nth-child(1) { width: 20px; height: 20px; left: 10%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 15px; height: 15px; left: 20%; animation-delay: 2s; }
.bubble:nth-child(3) { width: 25px; height: 25px; left: 30%; animation-delay: 4s; }
.bubble:nth-child(4) { width: 18px; height: 18px; left: 40%; animation-delay: 1s; }
.bubble:nth-child(5) { width: 22px; height: 22px; left: 50%; animation-delay: 3s; }
.bubble:nth-child(6) { width: 16px; height: 16px; left: 60%; animation-delay: 5s; }
.bubble:nth-child(7) { width: 24px; height: 24px; left: 70%; animation-delay: 2.5s; }
.bubble:nth-child(8) { width: 19px; height: 19px; left: 80%; animation-delay: 1.5s; }
.bubble:nth-child(9) { width: 21px; height: 21px; left: 90%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.fish-decoration {
    position: absolute;
    width: 30px;
    height: 20px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    border-radius: 50% 15px 15px 50%;
    animation: swim 8s linear infinite;
}

.fish-decoration::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 4px;
    left: 8px;
}

.fish-decoration::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 8px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    border-radius: 0 50% 50% 0;
    top: 6px;
    right: -8px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.fish-decoration:nth-child(1) { top: 20%; left: -50px; animation-delay: 0s; }
.fish-decoration:nth-child(2) { top: 40%; right: -50px; animation-delay: 3s; animation-direction: reverse; }
.fish-decoration:nth-child(3) { top: 60%; left: -50px; animation-delay: 6s; }

@keyframes swim {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(calc(100vw + 50px)); }
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 C300,100 600,20 900,60 C1050,80 1200,40 1200,60 L1200,120 L0,120 Z" fill="rgba(59,130,246,0.1)"/></svg>') no-repeat;
    background-size: cover;
    animation: wave 4s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 25%, #ecfdf5 50%, #f0f9ff 75%, #e0f2fe 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: #1e40af;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    border-radius: 8px;
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.logo i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-menu-btn {
    display: none;
    z-index: 1001;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.page-hero {
    background: #1e40af;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Categories Bar */
.categories-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.categories-bar h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    text-align: center;
}

.categories-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding: 0 1rem;
    scrollbar-width: thin;
    scrollbar-color: #f59e0b #f8fafc;
}

.categories-grid::-webkit-scrollbar {
    height: 4px;
}

.categories-grid::-webkit-scrollbar-track {
    background: #f8fafc;
}

.categories-grid::-webkit-scrollbar-thumb {
    background: #f59e0b;
    border-radius: 2px;
}

.category-card {
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
    min-width: 80px;
}

.category-card:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.category-card i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    display: block;
}

.category-card span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #f59e0b;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 8px 16px rgba(0,0,0,0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-video, .product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.product-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    gap: 1rem;
}

.product-type-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-type-badge.koi {
    background: #dbeafe;
    color: #1e40af;
}

.product-type-badge.feed {
    background: #dcfce7;
    color: #166534;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 1rem;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: modalopen 0.3s ease-out;
}

@keyframes modalopen {
    from {opacity: 0; transform: scale(0.8);}
    to {opacity: 1; transform: scale(1);}
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 10001;
    cursor: pointer;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    color: #f59e0b;
    background: white;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
}

.modal-video, .modal-image {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
}

.modal-video iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.fullscreen-btn:hover {
    background: rgba(0,0,0,0.9);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.modal-body p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #6b7280;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f59e0b;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-section a {
    color: #f59e0b;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #f59e0b;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* Home Categories */
.home-categories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
}

.home-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.06) 0%, transparent 35%);
    pointer-events: none;
}

.home-categories h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    font-weight: 700;
}

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.home-category-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #f59e0b;
}

.home-category-card i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    display: block;
}

.home-category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 600;
}

.home-category-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* Ordering Guide */
.ordering-guide {
    padding: 5rem 0;
    background: white;
}

.ordering-guide h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1f2937;
    font-weight: 700;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-step {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.guide-step:hover {
    border-color: #f59e0b;
    background: #fef3c7;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.guide-step i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    display: block;
}

.guide-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.guide-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.about-logo img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)) brightness(1.1) contrast(1.1);
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.about-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2)) brightness(1.15) contrast(1.15);
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    font-weight: 700;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-item i {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 0.25rem;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1f2937;
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp-large, .btn-maps {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-whatsapp-large {
    background: #25d366;
    color: white;
}

.btn-whatsapp-large:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-maps {
    background: #4285f4;
    color: white;
}

.btn-maps:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.btn-whatsapp-large div, .btn-maps div {
    text-align: left;
}

.btn-whatsapp-large strong, .btn-maps strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.btn-whatsapp-large span, .btn-maps span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.maps-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 2px solid #e5e7eb;
}

.maps-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Tips Float Button */
.tips-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tips-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6);
}

/* Pulse animation for attention */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.tips-float i {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

/* Tips Modal */
.tips-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border-left: 4px solid #f59e0b;
}

.tip-step i {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.tip-step h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 600;
}

.tip-step p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Loading */
.loading {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f59e0b;
}

/* Responsive Design */
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.125rem;
    }

    .product-description {
        font-size: 0.875rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-video, .modal-image {
        aspect-ratio: 1;
    }

    .modal-image img {
        max-height: 70vh;
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background: #1e40af;
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
        background: #1e3a8a;
        z-index: 1001;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }

    .back-btn {
        display: block !important;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 450px) {
    .container {
        padding: 0 0.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card {
        border-radius: 0.75rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-info h3 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .product-price {
        font-size: 1rem;
        font-weight: 600;
        color: #059669;
        margin-bottom: 0.25rem;
    }

    .product-description {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .btn-whatsapp-card {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        background: #25d366;
        color: white;
        padding: 0.5rem 0.75rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 500;
        transition: background 0.2s ease;
    }

    .btn-whatsapp-card:hover {
        background: #128c7e;
    }

    .modal-actions {
        flex-direction: column;
    }

    /* Home Page Responsive */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .home-categories h2 {
        font-size: 2rem;
    }

    .home-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-category-card {
        padding: 1.5rem;
    }

    .home-category-card i {
        font-size: 2.5rem;
    }

    .ordering-guide h2 {
        font-size: 2rem;
    }

    .guide-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guide-step {
        padding: 2rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .guide-step i {
        font-size: 2.5rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-whatsapp-large, .btn-maps {
        width: 100%;
        max-width: 400px;
        justify-content: center;
        text-align: center;
    }

    .maps-container iframe {
        height: 300px;
    }

    .tips-float {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .tips-float i {
        font-size: 1rem;
    }

    .tips-float span {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .home-categories {
        padding: 3rem 0;
    }

    .ordering-guide {
        padding: 3rem 0;
    }

    .about {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }

    .guide-step {
        padding: 1.5rem;
    }

    .home-category-card {
        padding: 1.25rem;
    }
}
