/* SaaS Base Structure - Common for all themes */
:root {
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 60px;
}
.hero-section h2 { font-size: 3.5rem; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; }
.hero-section p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; opacity: 0.8; }

/* Categories Scroll */
.section-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 30px; position: relative; padding-left: 20px; }
.section-title::before { content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 6px; border-radius: 10px; background: var(--primary-color); }

.category-scroll { display: flex; gap: 25px; overflow-x: auto; padding-bottom: 20px; scrollbar-width: none; }
.category-card-new { min-width: 180px; text-align: center; transition: var(--transition); }
.category-card-new:hover { transform: translateY(-8px); }
.rect-wrapper { width: 100%; height: 180px; border-radius: 25px; overflow: hidden; margin-bottom: 15px; box-shadow: var(--card-shadow); }
.rect-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 35px; }
.product-card { border-radius: var(--border-radius); overflow: hidden; transition: var(--transition); border: 1px solid rgba(0,0,0,0.05); position: relative; }
.product-card:hover { transform: translateY(-12px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }

.img-container { position: relative; height: 320px; overflow: hidden; }
.img-container img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.product-card:hover .img-container img { transform: scale(1.08); }

.wishlist-btn { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); cursor: pointer; z-index: 10; font-size: 1.2rem; }

.info-container { padding: 25px; }
.brand-name { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1.5px; opacity: 0.6; }
.prod-name { font-size: 1.2rem; margin: 10px 0; font-weight: 600; }
.curr-price { font-size: 1.4rem; font-weight: 800; display: block; margin-bottom: 15px; }
.hero-cta { display: block; text-align: center; padding: 15px; border-radius: 12px; text-decoration: none; font-weight: 700; transition: var(--transition); }

/* Floating WhatsApp */
.whatsapp-btn { position: fixed; bottom: 100px; right: 30px; padding: 18px 30px; border-radius: 100px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 12px; z-index: 999; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }