/* ========== incy-wincy-style.css ========== */
/* Color Palette:
   Primary: #79ccba (light green/mint) - 50%
   Accent: #f89419 (orange/golden) - 20%
   Dark: #111312 (deep black) - 15%
   White: #ffffff (white) - 15%
*/

:root {
    --primary: #79ccba;        /* main color - spider body */
    --primary-dark: #5fb3a1;
    --primary-light: #a8e0d4;
    --accent: #f89419;          /* orange/golden */
    --accent-dark: #e07d00;
    --dark: #111312;            /* deep black for text */
    --pure-white: #ffffff;
    --soft-bg: #f5f9f8;
    --shadow: 0 10px 30px -10px rgba(121, 204, 186, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--soft-bg);
    color: var(--dark);
    line-height: 1.6;
}

/* ===== header ===== */
.incy-header {
    background: var(--pure-white);
    box-shadow: 0 4px 20px rgba(121, 204, 186, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.7rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* logo styles */
.logo {
    text-decoration: none;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-spider {
    color: var(--primary);
    font-size: 2.2rem;
    text-shadow: 2px 2px 0 var(--primary-light);
}

.logo-line {
    color: var(--dark);
    font-size: 1.5rem;
}

.logo-fashion {
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 5px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    color: var(--dark);
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    transition: all 0.2s ease;
    font-size: 1rem;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 60%;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-dark);
    background: rgba(121, 204, 186, 0.1);
}

.sale-highlight a {
    background: rgba(248, 148, 25, 0.15);
    color: var(--accent-dark);
    font-weight: 600;
}

.sale-highlight a:hover {
    background: var(--accent);
    color: var(--pure-white);
}

.header-icons a {
    margin-left: 1rem;
    color: var(--dark);
    font-size: 1.2rem;
    transition: transform 0.2s, color 0.2s;
}

.header-icons a:hover {
    color: var(--accent);
    transform: scale(1.2);
}

/* hamburger - left side */
.menu-toggle { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    order: -1;
    margin-right: auto;
    margin-left: 0;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== hero section ===== */
.hero-section {
    position: relative;
    min-height: 500px;
    background: linear-gradient(115deg, #e0f2ef 0%, #c2e6df 50%, #79ccba 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slant {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--soft-bg);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    padding: 2rem;
}

.super-sale {
    background: var(--accent);
    color: var(--pure-white);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(248, 148, 25, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--dark);
}

.spider-color {
    color: var(--primary);
}

.glow {
    color: var(--accent);
    text-shadow: 0 0 8px var(--accent);
}

.hero-sub {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    display: inline-block;
    color: var(--dark);
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 8px 18px rgba(121, 204, 186, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--pure-white);
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(121, 204, 186, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--dark);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--pure-white);
    padding: 0.8rem 1.5rem;
    border-radius: 80px;
    font-weight: 800;
    rotate: 8deg;
    box-shadow: 0 10px 0 var(--accent-dark);
}

.category-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--pure-white);
    border-bottom: 1px solid var(--primary-light);
}

.cat-item {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    background: var(--soft-bg);
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cat-item i { color: var(--primary); }
.cat-item:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.08);
    box-shadow: var(--shadow);
}
.cat-item:hover i { color: var(--dark); }

/* ===== products grid ===== */
.products-section {
    padding: 3rem 1rem;
    background: var(--soft-bg);
}

.container { max-width: 1300px; margin: 0 auto; }

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--dark);
}

.section-heading h2 span {
    font-weight: 700;
    color: var(--primary);
}

/* Product Grid - mobile par 2 cards per row */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* mobile ke liye 2 columns */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        gap: 0.8rem;
    }
}

.product-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px -8px rgba(121, 204, 186, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-light);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -8px var(--primary);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1.1;
}

.product-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--pure-white);
    transition: transform 0.5s;
}

.product-img i { font-size: 5rem; margin-bottom: 0.5rem; }
.img-label { 
    font-size: 1rem; 
    background: rgba(255,255,255,0.9); 
    padding: 0.2rem 1rem; 
    border-radius: 40px;
    color: var(--dark);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(121, 204, 186, 0.3);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.product-card:hover .hover-overlay {
    opacity: 1;
}
.quick-view {
    background: var(--pure-white);
    color: var(--primary-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    transform: translateY(20px);
    transition: 0.3s;
}
.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-info {
    padding: 1rem;
    text-align: center;
}
.product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}
.price-row {
    margin: 0.5rem 0;
}
.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}
.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #aaa;
    margin-left: 8px;
}

.order-now {
    background: #25D366;
    border: none;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    font-weight: 500;
    width: 100%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.order-now:hover {
    background: #128C7E;
    transform: scale(1.02);
}

/* ramadan banner */
.ramadan-banner {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    isolation: isolate;
}
.ramadan-banner::before {
    content: "🌙 ✨";
    font-size: 8rem;
    opacity: 0.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.moon-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.btn-light {
    background: var(--pure-white);
    color: var(--primary-dark);
    margin-top: 1.5rem;
    display: inline-block;
}
.btn-light:hover {
    background: var(--accent);
    color: var(--pure-white);
}

/* location */
.location-section {
    padding: 3rem 1rem;
    background: var(--pure-white);
}
.location-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.loc-details {
    flex: 1 1 250px;
}
.loc-details h3 { 
    font-size: 2rem; 
    margin-bottom: 1rem;
    color: var(--primary-dark);
}
.loc-details p { margin: 0.8rem 0; font-size: 1.1rem; }
.map-link {
    display: inline-block;
    margin-top: 1rem;
    background: var(--primary);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}
.map-link:hover {
    background: var(--accent);
}
.loc-map {
    flex: 2 1 400px;
}
.map-preview {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    border: 4px solid var(--pure-white);
}
.map-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.3s;
}
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(121, 204, 186, 0.5);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: 0.3s;
}
.map-preview:hover .map-overlay { opacity: 1; }
.map-preview:hover img { filter: blur(2px); }

/* footer */
.incy-footer {
    background: var(--dark);
    color: var(--pure-white);
    position: relative;
}
.footer-wave {
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%2379ccba"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer-about h4 { 
    font-size: 1.5rem; 
    color: var(--primary); 
    margin-bottom: 1rem; 
}
.social-links a {
    color: var(--dark);
    background: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: 0.3s;
}
.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
    color: var(--pure-white);
}
.footer-links ul { list-style: none; }
.footer-links li { margin: 0.6rem 0; }
.footer-links a { color: #aaa; text-decoration: none; }
.footer-links a:hover { 
    color: var(--primary); 
    padding-left: 5px; 
}
.footer-contact p { margin: 0.8rem 0; }
.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--primary);
    color: #aaa;
}

/* ===== responsive ===== */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .logo-text { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .hamburger { 
        display: flex;
        order: -1;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--pure-white);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
        z-index: 999;
    }
    
    #menu-toggle:checked ~ .navbar .nav-menu {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .header-icons { display: none; }
    
    .hero-title { font-size: 2.3rem; }
    .floating-badge { display: none; }
    .category-strip { gap: 0.8rem; }
    .cat-item { padding: 0.5rem 1rem; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    .btn { padding: 0.7rem 1.2rem; }
    .section-heading h2 { font-size: 2rem; }
    .logo-text { font-size: 1.2rem; }
    .logo-spider { font-size: 1.8rem; }
    .logo-fashion { font-size: 1.1rem; }
}