/* Kadal Manam Seafoods - Clean Premium Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --primary: #1a4b7c;
    --primary-dark: #0d3a5f;
    --primary-light: #2d6aa3;
    --secondary: #f5a623;
    --accent: #ff6b35;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #faf8f5;
    --white: #ffffff;
    --success: #25d366;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes swim {
    0% { transform: translateX(-80px); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { transform: translateX(calc(100vw + 80px)); opacity: 0; }
}
@keyframes bubble {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    20% { opacity: 0.4; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}
@keyframes ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(245, 166, 35, 0.3); }
    50% { box-shadow: 0 0 25px rgba(245, 166, 35, 0.5); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.header.scrolled {
    padding: 8px 20px;
    background: rgba(26, 75, 124, 0.95);
    backdrop-filter: blur(10px);
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 50px;
    transition: transform 0.3s ease;
}
.logo:hover { transform: scale(1.05); }
.header-icons {
    display: flex;
    gap: 10px;
}
.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.icon-btn.whatsapp { background: var(--success); }
.icon-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.icon-btn.youtube { background: #ff0000; }
.icon-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}
.icon-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    overflow: hidden;
    padding: 80px 20px 60px;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
}
.hero-fish {
    position: absolute;
    width: 60px;
    height: 30px;
    animation: swim 20s linear infinite;
}
.hero-fish:nth-child(1) { top: 25%; animation-delay: 0s; }
.hero-fish:nth-child(2) { top: 45%; animation-delay: -7s; width: 80px; }
.hero-fish:nth-child(3) { top: 65%; animation-delay: -14s; width: 50px; }
.hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.bubble {
    position: absolute;
    bottom: 0;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: bubble 10s ease-in infinite;
}
.bubble:nth-child(1) { left: 10%; width: 15px; height: 15px; animation-delay: 0s; }
.bubble:nth-child(2) { left: 25%; width: 10px; height: 10px; animation-delay: 2s; }
.bubble:nth-child(3) { left: 40%; width: 18px; height: 18px; animation-delay: 4s; }
.bubble:nth-child(4) { left: 55%; width: 12px; height: 12px; animation-delay: 1s; }
.bubble:nth-child(5) { left: 70%; width: 16px; height: 16px; animation-delay: 3s; }
.bubble:nth-child(6) { left: 85%; width: 8px; height: 8px; animation-delay: 5s; }
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23faf8f5' d='M0,50 C360,100 720,0 1080,50 C1260,75 1350,25 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: wave 15s linear infinite;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}
.hero-logo {
    width: 260px;
    max-width: 70%;
    margin-bottom: 25px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeUp 0.8s ease forwards;
}
.hero h1 span { color: var(--secondary); }
.hero-tagline {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-hero.primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}
.btn-hero.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-hero:hover { transform: translateY(-3px); }
.btn-hero.primary:hover { box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5); }
.btn-hero.secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-hero svg { width: 20px; height: 20px; }

/* Section Styles */
.section {
    padding: 70px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 45px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 10px;
}
.section-header p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 15px auto;
    border-radius: 2px;
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 40px 20px;
    box-shadow: var(--shadow);
}
.stats-bar::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-number span { color: var(--secondary); }
.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Featured Section */
.featured-section {
    background: linear-gradient(180deg, var(--bg) 0%, #fff5e6 50%, var(--bg) 100%);
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}
.category-tab {
    padding: 10px 22px;
    background: white;
    border: 2px solid #e8eef5;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}
.category-tab:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
    animation: pulse 2s ease-in-out infinite;
}
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image { transform: scale(1.08); }
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 75, 124, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 20px; }
.product-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}
.product-description {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #f0f4f8;
}
.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}
.product-price::before {
    content: 'Rs.';
    font-size: 0.85rem;
    font-weight: 600;
}
.product-price span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}
.quantity-selector {
    display: flex;
    align-items: center;
    background: #f5f8fb;
    border-radius: 10px;
    padding: 4px;
}
.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.quantity-btn:hover {
    background: var(--primary);
    color: white;
}
.quantity-input {
    width: 40px;
    height: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.products-section { display: none; }
.products-section.active { display: block; }

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 70px 20px;
}
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-header p { color: rgba(255,255,255,0.8); }
.testimonials-section .section-divider { background: rgba(255,255,255,0.3); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}
.testimonial-quote {
    font-size: 2.5rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}
.testimonial-info h4 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.testimonial-info p {
    opacity: 0.7;
    font-size: 0.8rem;
}
.testimonial-stars {
    color: var(--secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    background: var(--primary);
    color: white;
    padding: 80px 20px;
    position: relative;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    margin-bottom: 20px;
    color: var(--secondary);
}
.about-text > p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 15px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.about-feature:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}
.about-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--secondary);
}
.about-feature span {
    font-weight: 500;
    font-size: 0.9rem;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Info Cards */
.info-section {
    background: linear-gradient(180deg, #fff5e6 0%, var(--bg) 100%);
    padding: 70px 20px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}
.info-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.info-card-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}
.info-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 5px;
}
.info-card a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.info-card a:hover { color: var(--accent); }

/* Map Section */
.map-section { padding: 0; }
.map-wrapper { position: relative; }
.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
    filter: saturate(0.8);
}
.map-wrapper:hover iframe { filter: saturate(1); }
.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 25px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    text-align: center;
}
.map-overlay h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.map-overlay p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.map-overlay .btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.map-overlay .btn:hover { transform: scale(1.05); }
.map-overlay .btn svg { width: 16px; height: 16px; }

/* YouTube Section */
.youtube-section {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 70px 20px;
}
.youtube-section .section-header h2 { color: white; }
.youtube-section .section-header p { color: rgba(255,255,255,0.7); }
.youtube-section .section-divider { background: #ff0000; }
.youtube-embed {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.15);
}
.youtube-embed iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}
.youtube-cta { margin-top: 30px; }
.youtube-cta .btn {
    background: #ff0000;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.youtube-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}
.youtube-cta .btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Cart Section */
.cart-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 18px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}
.cart-section.visible { transform: translateY(0); }
.cart-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.cart-info { color: white; }
.cart-info h3 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}
.cart-items-list {
    font-size: 0.85rem;
    opacity: 0.85;
}
.cart-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}
.whatsapp-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--success);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-order-btn svg {
    width: 22px;
    height: 22px;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--success);
    animation: ripple 1.5s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    animation: none;
}
.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: white;
}
.floating-whatsapp.hidden {
    transform: scale(0);
    opacity: 0;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #051525 100%);
    color: white;
    padding: 60px 20px 30px;
}
.footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin-bottom: 60px;
}
.footer-content { max-width: 1100px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand img {
    height: 70px;
    margin-bottom: 18px;
}
.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}
.footer-social svg {
    width: 18px;
    height: 18px;
    fill: white;
}
.footer-links h4 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: var(--secondary);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.footer-links a:hover { color: var(--secondary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Admin Styles */
.admin-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 20px;
    min-height: 100vh;
}
.admin-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 16px;
}
.admin-header img {
    height: 60px;
    margin-bottom: 15px;
}
.admin-header h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.admin-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}
.admin-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.admin-nav a:hover { background: rgba(255,255,255,0.1); color: white; }
.admin-nav a.active {
    background: var(--secondary);
    color: var(--primary-dark);
    border-color: var(--secondary);
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-card h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}
.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}
.admin-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 25px;
}
.login-form, .admin-form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.login-form {
    max-width: 400px;
    margin: 80px auto;
}
.login-form h2, .admin-form h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.4rem;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8eef5;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary);
    outline: none;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkbox-group input {
    width: 18px;
    height: 18px;
}
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 75, 124, 0.3);
}
.admin-table {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}
.admin-table h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.admin-table table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th, .admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eef2f7;
    font-size: 0.9rem;
}
.admin-table th {
    background: #f8fafc;
    font-weight: 600;
    color: var(--primary);
}
.admin-table img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}
.btn-edit, .btn-delete {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 5px;
}
.btn-edit { background: #e3f2fd; color: #1976d2; }
.btn-edit:hover { background: #1976d2; color: white; }
.btn-delete { background: #ffebee; color: #d32f2f; }
.btn-delete:hover { background: #d32f2f; color: white; }

/* Responsive */
@media (max-width: 1024px) {
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .logo { height: 40px; }
    .hero-logo { width: 200px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-hero { width: 100%; max-width: 250px; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-number { font-size: 2rem; }
    .featured-grid, .products-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .cart-content { flex-direction: column; text-align: center; }
    .map-overlay { width: 85%; padding: 20px; }
    .floating-whatsapp { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .floating-whatsapp svg { width: 24px; height: 24px; }
    .icon-btn { width: 36px; height: 36px; }
    .icon-btn svg { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
    .section { padding: 50px 15px; }
    .stats-grid { grid-template-columns: 1fr; }
    .category-tabs { gap: 8px; }
    .category-tab { padding: 8px 16px; font-size: 0.85rem; }
    .product-image-wrapper { height: 180px; }
    .youtube-embed { border-radius: 10px; }
}
