/* ========== incy-wincy-style.css ========== */
/* premium playful kids fashion theme | responsive | decorative hover */

:root {
    --primary: #f8b4c2;      /* soft pink */
    --primary-dark: #f06292;
    --secondary: #a7d0d9;    /* mint */
    --accent: #ffd166;        /* golden */
    --dark: #2f3e46;
    --light: #fef9f8;
    --sale: #e63946;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
    --gradient: linear-gradient(135deg, #fdf0f3 0%, #fff5e6 100%);
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== header ===== */
.incy-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(248, 180, 194, 0.3);
}

.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 {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon i {
    font-size: 2.2rem;
    color: var(--primary-dark);
    filter: drop-shadow(0 4px 6px #f8b4c2);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon i {
    transform: rotate(10deg) scale(1.1);
}

.brand-name {
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.brand-name .fashion {
    font-weight: 300;
    color: var(--primary-dark);
    background: linear-gradient(45deg, #f06292, #f8b4c2);
    -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: 600;
    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-dark);
    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(240, 98, 146, 0.08);
}

.sale-highlight a {
    background: rgba(230, 57, 70, 0.15);
    color: #b71c1c;
    font-weight: 700;
    animation: subtlePulse 2s infinite;
}

@keyframes subtlePulse {
    0% { background: rgba(230,57,70,0.1); }
    50% { background: rgba(230,57,70,0.3); }
    100% { background: rgba(230,57,70,0.1); }
}

.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(--primary-dark);
    transform: scale(1.2);
}

/* hamburger */
.menu-toggle { display: none; }
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== hero section ===== */
.hero-section {
    position: relative;
    min-height: 500px;
    background: linear-gradient(115deg, #ffe9f0 0%, #fccfdf 50%, #b3e0e5 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(--light);
    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(--sale);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(230,57,70,0.5);
}

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

.glow {
    color: var(--primary-dark);
    text-shadow: 0 0 8px #f9b9c9;
}

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

.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-dark);
    color: white;
    box-shadow: 0 8px 18px #f8b4c2;
}

.btn-primary:hover {
    background: #d44e7a;
    transform: translateY(-4px);
    box-shadow: 0 15px 25px #f8b4c2;
}

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

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(240,98,146,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(240,98,146,0); }
    100% { box-shadow: 0 0 0 0 rgba(240,98,146,0); }
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: gold;
    color: #2f3e46;
    padding: 0.8rem 1.5rem;
    border-radius: 80px;
    font-weight: 800;
    rotate: 8deg;
    box-shadow: 0 10px 0 #b38f00;
}

.category-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: white;
    border-bottom: 1px solid #f0e0e5;
}

.cat-item {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    background: #fceef2;
    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-dark); }
.cat-item:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.08);
    box-shadow: var(--shadow);
}
.cat-item:hover i { color: white; }

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

.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;
}

.section-heading h2 span {
    font-weight: 700;
    background: linear-gradient(135deg, #f06292, #ffb6c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(240,98,146,0.2);
}

.product-card:hover {
    transform: translateY(-16px) rotate(0.5deg);
    box-shadow: 0 25px 40px -8px #f8b4c2;
}

.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: #b5a1a9;
    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.6); padding: 0.2rem 1rem; border-radius: 40px; }

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

.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(240,98,146,0.4);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.product-card:hover .hover-overlay {
    opacity: 1;
}
.quick-view {
    background: white;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    transform: translateY(20px);
    transition: 0.3s;
}
.product-card:hover .quick-view {
    transform: translateY(0);
}

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

.order-now {
    background: #25D366;
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    width: 100%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.order-now:hover {
    background: #128C7E;
    transform: scale(1.02);
    box-shadow: 0 10px 20px -5px #25D366;
}
.order-now i { font-size: 1.3rem; }

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

/* location */
.location-section {
    padding: 3rem 1rem;
    background: #f3f7fa;
}
.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; }
.loc-details p { margin: 0.8rem 0; font-size: 1.1rem; }
.map-link {
    display: inline-block;
    margin-top: 1rem;
    background: var(--primary-dark);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
}
.loc-map {
    flex: 2 1 400px;
}
.map-preview {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    border: 4px solid white;
}
.map-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.3s;
}
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    color: white;
    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(1px); }

/* footer */
.incy-footer {
    background: #1e2a2f;
    color: #ddd;
    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="%23fef9f8"></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: white; margin-bottom: 1rem; }
.social-links a {
    color: white;
    background: #2f3e46;
    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(--primary-dark);
    transform: translateY(-5px);
}
.footer-links ul { list-style: none; }
.footer-links li { margin: 0.6rem 0; }
.footer-links a { color: #bbb; text-decoration: none; }
.footer-links a:hover { color: white; padding-left: 5px; }
.footer-contact p { margin: 0.8rem 0; }
.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid #3a4a52;
}

/* ===== responsive ===== */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .brand-name { font-size: 1.4rem; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: 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; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}
@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; }
}
    .section-heading h2 { font-size: 2rem; }
}