/* ================================================
   LITTLESTYLE - Kids Clothing E-commerce Template
   Colors: Sunny Yellow #F8B500, Sky Blue #00A8E8, Coral #FF6B6B
   ================================================ */

/* CSS Variables */
:root {
    --sunny-yellow: #F8B500;
    --sky-blue: #00A8E8;
    --coral: #FF6B6B;
    --dark-text: #2D3748;
    --light-bg: #FFF9E6;
    --white: #FFFFFF;
    --light-gray: #F7FAFC;
    --medium-gray: #A0AEC0;
    --success: #48BB78;
    --font-primary: 'Nunito', sans-serif;
    --font-display: 'Fredoka One', cursive;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--sky-blue);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   Buttons
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.btn-primary {
    background: var(--sunny-yellow);
    color: var(--dark-text);
}

.btn-primary:hover {
    background: #e5a600;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--sky-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: #0095cc;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-coral {
    background: var(--coral);
    color: var(--white);
}

.btn-coral:hover {
    background: #e55a5a;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

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

/* ================================================
   Header & Navigation
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.top-bar {
    background: var(--sunny-yellow);
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--sky-blue);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--sky-blue);
}

.logo-text span {
    color: var(--coral);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--sunny-yellow);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--sky-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 10px 20px;
    gap: 10px;
}

.search-box input {
    border: none;
    background: transparent;
    padding: 0;
    width: 180px;
}

.search-box button {
    background: none;
    color: var(--medium-gray);
    font-size: 18px;
}

.header-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    color: var(--dark-text);
}

.header-icon:hover {
    background: var(--sunny-yellow);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--coral);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ================================================
   Hero Slider
   ================================================ */
.hero-slider {
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    min-height: 600px;
    position: relative;
    align-items: center;
}

.hero-slide.active {
    display: flex;
}

.hero-slide-1 {
    background: linear-gradient(135deg, var(--light-bg) 0%, #FFF5CC 100%);
}

.hero-slide-2 {
    background: linear-gradient(135deg, #E6F7FF 0%, #CCE8FF 100%);
}

.hero-slide-3 {
    background: linear-gradient(135deg, #FFE6E6 0%, #FFCCCC 100%);
}

.hero-content {
    max-width: 550px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 56px;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--sky-blue);
}

.hero-text {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: 5%;
    bottom: 0;
    max-width: 45%;
    z-index: 1;
}

.hero-image img {
    max-height: 550px;
    object-fit: contain;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.3;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--sunny-yellow);
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--sky-blue);
    bottom: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--coral);
    top: 30%;
    right: 35%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--sunny-yellow);
    width: 40px;
    border-radius: 7px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    pointer-events: all;
    cursor: pointer;
}

.slider-arrow:hover {
    background: var(--sunny-yellow);
}

/* ================================================
   Categories Section
   ================================================ */
.categories {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--sunny-yellow);
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.section-text {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.category-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 5px;
}

.category-count {
    color: var(--sunny-yellow);
    font-weight: 600;
    font-size: 14px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--sunny-yellow);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
    z-index: 2;
}

.category-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* ================================================
   Products Section
   ================================================ */
.products {
    padding: 80px 0;
    background: var(--light-gray);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 700;
    color: var(--dark-text);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--sunny-yellow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-new {
    background: var(--sky-blue);
    color: var(--white);
}

.badge-sale {
    background: var(--coral);
    color: var(--white);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background: var(--sunny-yellow);
}

.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--sky-blue);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .quick-add {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.product-name:hover {
    color: var(--sky-blue);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars {
    color: var(--sunny-yellow);
    font-size: 14px;
}

.rating-count {
    font-size: 13px;
    color: var(--medium-gray);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--coral);
}

.original-price {
    font-size: 16px;
    color: var(--medium-gray);
    text-decoration: line-through;
}

.product-sizes {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.size-option {
    width: 30px;
    height: 30px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.size-option:hover,
.size-option.active {
    border-color: var(--sky-blue);
    background: var(--sky-blue);
    color: var(--white);
}

/* ================================================
   Sale Banner / Countdown
   ================================================ */
.sale-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--coral) 0%, #FF8E8E 100%);
    position: relative;
    overflow: hidden;
}

.sale-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sale-content {
    max-width: 500px;
    color: var(--white);
    z-index: 2;
}

.sale-badge {
    display: inline-block;
    background: var(--sunny-yellow);
    color: var(--dark-text);
    padding: 10px 25px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.sale-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.sale-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 36px;
    display: block;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.sale-image {
    max-width: 400px;
    z-index: 2;
}

.sale-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sale-shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
}

.sale-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
}

.sale-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 5%;
}

/* ================================================
   Features Section
   ================================================ */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--sunny-yellow);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--sky-blue);
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--coral);
}

.feature-card:nth-child(4) .feature-icon {
    background: var(--success);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-text {
    color: var(--medium-gray);
    font-size: 14px;
}

/* ================================================
   Newsletter Section
   ================================================ */
.newsletter {
    padding: 80px 0;
    background: var(--sky-blue);
    position: relative;
    overflow: hidden;
}

.newsletter .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content {
    max-width: 450px;
    color: var(--white);
}

.newsletter-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-text {
    font-size: 16px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 18px 25px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
}

.newsletter-form button {
    padding: 18px 35px;
}

.newsletter-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ================================================
   Instagram Feed
   ================================================ */
.instagram {
    padding: 80px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,168,232,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--medium-gray);
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.social-link:hover {
    background: var(--sunny-yellow);
    color: var(--dark-text);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--medium-gray);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--sunny-yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--medium-gray);
    font-size: 14px;
}

.footer-contact i {
    color: var(--sunny-yellow);
    font-size: 18px;
    margin-top: 2px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.payment-methods img {
    height: 30px;
    background: var(--white);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--medium-gray);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--medium-gray);
}

.footer-bottom-links a:hover {
    color: var(--sunny-yellow);
}

/* ================================================
   Shop Page
   ================================================ */
.page-header {
    margin-top: 120px;
    padding: 60px 0;
    background: var(--light-bg);
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--medium-gray);
}

.breadcrumb a:hover {
    color: var(--sky-blue);
}

.breadcrumb span {
    color: var(--dark-text);
}

.page-title {
    font-size: 42px;
    color: var(--dark-text);
}

.shop-layout {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.shop-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}

.filter-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.filter-title {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.filter-list input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sky-blue);
}

.price-range {
    margin: 20px 0;
}

.price-slider {
    width: 100%;
    height: 6px;
    background: var(--light-gray);
    border-radius: 3px;
    margin-bottom: 15px;
    accent-color: var(--sky-blue);
}

.price-inputs {
    display: flex;
    gap: 10px;
}

.price-inputs input {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-weight: 700;
    font-size: 13px;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--sky-blue);
    background: var(--sky-blue);
    color: var(--white);
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-btn {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-full);
    border: 3px solid transparent;
    cursor: pointer;
}

.color-btn:hover,
.color-btn.active {
    border-color: var(--dark-text);
}

.shop-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.results-count {
    font-size: 14px;
    color: var(--medium-gray);
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active,
.view-btn:hover {
    background: var(--sunny-yellow);
}

.sort-select {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    min-width: 200px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.page-btn:hover,
.page-btn.active {
    background: var(--sunny-yellow);
    border-color: var(--sunny-yellow);
}

/* ================================================
   Product Detail Page
   ================================================ */
.product-detail {
    padding: 60px 0;
    margin-top: 120px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    position: sticky;
    top: 140px;
}

.main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-list {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--sky-blue);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info .product-category {
    font-size: 14px;
    margin-bottom: 10px;
}

.product-detail-info .product-name {
    font-size: 36px;
    margin-bottom: 15px;
}

.product-detail-info .product-rating {
    margin-bottom: 20px;
}

.product-detail-info .product-price {
    margin-bottom: 25px;
}

.product-detail-info .current-price {
    font-size: 32px;
}

.product-description {
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-options {
    margin-bottom: 30px;
}

.option-title {
    font-weight: 700;
    margin-bottom: 12px;
}

.size-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.size-selector .size-btn {
    width: 55px;
    height: 55px;
    font-size: 14px;
}

.color-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.color-selector .color-btn {
    width: 45px;
    height: 45px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--sunny-yellow);
}

.quantity-input input {
    width: 70px;
    height: 50px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.add-to-cart-section {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.wishlist-btn {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.wishlist-btn:hover {
    background: var(--coral);
    color: var(--white);
}

.product-meta {
    padding: 25px 0;
    border-top: 1px solid var(--light-gray);
}

.meta-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.meta-item strong {
    min-width: 80px;
}

.product-tabs {
    margin-top: 60px;
}

.tab-buttons {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-weight: 700;
    background: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-button.active,
.tab-button:hover {
    border-bottom-color: var(--sunny-yellow);
    color: var(--sky-blue);
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

.review-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.reviewer-info h4 {
    font-family: var(--font-display);
    margin-bottom: 5px;
}

.review-date {
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.review-text {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ================================================
   Cart Page
   ================================================ */
.cart-page {
    padding: 60px 0;
    margin-top: 120px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.cart-items {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 20px 30px;
    background: var(--light-gray);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 25px 30px;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
}

.cart-product {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-name {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-product-meta {
    font-size: 13px;
    color: var(--medium-gray);
}

.cart-price {
    font-weight: 700;
    font-size: 16px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    width: fit-content;
}

.cart-quantity button {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
}

.cart-quantity input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-weight: 700;
    padding: 0;
}

.cart-total {
    font-weight: 700;
    font-size: 18px;
    color: var(--coral);
}

.remove-btn {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    color: var(--medium-gray);
    font-size: 18px;
}

.remove-btn:hover {
    background: var(--coral);
    color: var(--white);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    padding: 25px 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.coupon-form {
    display: flex;
    gap: 10px;
}

.coupon-form input {
    width: 200px;
    padding: 12px 20px;
}

.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 140px;
}

.summary-title {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
    margin-top: 20px;
}

.summary-row.total span:last-child {
    color: var(--coral);
    font-family: var(--font-display);
    font-size: 28px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    margin-top: 25px;
    font-size: 18px;
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--medium-gray);
}

/* ================================================
   About Page
   ================================================ */
.about-hero {
    margin-top: 120px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #FFF5CC 100%);
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-stats {
    padding: 80px 0;
    background: var(--sky-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

.about-mission {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--sunny-yellow);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.mission-card:nth-child(2) .mission-icon {
    background: var(--sky-blue);
}

.mission-card:nth-child(3) .mission-icon {
    background: var(--coral);
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--medium-gray);
}

.team-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-image {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--medium-gray);
    font-size: 14px;
}

/* ================================================
   Contact Page
   ================================================ */
.contact-section {
    padding: 60px 0;
    margin-top: 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--sunny-yellow);
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--medium-gray);
    font-size: 14px;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.map-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================================================
   Quick View Modal
   ================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--light-gray);
}

.modal-close {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--coral);
    color: var(--white);
}

.modal-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-image {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   Empty Cart State
   ================================================ */
.empty-cart {
    text-align: center;
    padding: 80px 40px;
}

.empty-cart-icon {
    font-size: 80px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.empty-cart h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 1200px) {
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-main .container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-slide {
        min-height: 500px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-image {
        max-width: 40%;
        opacity: 0.3;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-detail-grid,
    .about-hero .container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 36px;
    }

    .sale-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .countdown {
        justify-content: center;
    }

    .newsletter .container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .products-grid,
    .categories-grid,
    .features-grid,
    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .search-box {
        display: none;
    }

    .countdown-item {
        padding: 15px;
    }

    .countdown-number {
        font-size: 24px;
    }

    .footer-main,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   Utility Classes
   ================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.bg-light { background: var(--light-gray); }
.bg-yellow { background: var(--sunny-yellow); }
.bg-blue { background: var(--sky-blue); }
.bg-coral { background: var(--coral); }

.text-yellow { color: var(--sunny-yellow); }
.text-blue { color: var(--sky-blue); }
.text-coral { color: var(--coral); }
.text-gray { color: var(--medium-gray); }
