/* ================================================
   UPDATED THEME CSS – EXACTLY LIKE COLORBOT.IN
   (Premium, clean, modern e-comm vibe)
   Paste this ENTIRE code in your style.css 
   (or Appearance → Customize → Additional CSS)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

/* ====================== ROOT & COLORS ====================== */
:root {
    --primary: #2563eb;     /* Colorbot-style bright blue */
    --primary-dark: #1e40af;
    --text: #1f2937;
    --light-text: #64748b;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --border: #e2e8f0;
}

/* ====================== BODY & TYPOGRAPHY ====================== */
body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

/* ====================== CONTAINER ====================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================== HEADER (sticky + premium) ====================== */
header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 32px;
}

.menu li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: var(--primary);
}

/* Cart & WhatsApp icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon, .whatsapp-icon {
    font-size: 22px;
    color: var(--text);
    transition: all 0.3s ease;
}

.cart-icon:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Floating WhatsApp (exactly like Colorbot) */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* ====================== HERO (big, clean, Colorbot style) ====================== */
.hero {
    padding: 120px 20px 100px;
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://picsum.photos/id/1015/1920/800') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #0f172a;
}

.hero p {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 32px;
}

.hero .btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.hero .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* ====================== PRODUCTS (beautiful cards) ====================== */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.product-box {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.product-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.product-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 20px;
    margin: 0 0 8px;
    color: var(--text);
}

.product-info .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-info .btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.product-info .btn:hover {
    background: var(--primary-dark);
}

/* ====================== FOOTER ====================== */
footer {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 60px 20px 30px;
    margin-top: 100px;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
    .menu ul { 
        display: none; /* you can add JS hamburger later */
    }
    .hero h1 { font-size: 42px; }
    .products { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}