/* =====================================================
   BABYBLISS - Baby Products E-commerce Template
   Soft, Gentle Design with Pastel Colors
   ===================================================== */

/* CSS Variables */
:root {
    --pink: #F8BBD9;
    --pink-light: #FCE4EC;
    --pink-dark: #EC407A;
    --baby-blue: #B3E5FC;
    --baby-blue-light: #E1F5FE;
    --baby-blue-dark: #03A9F4;
    --cream: #FFF9C4;
    --cream-light: #FFFDE7;
    --cream-dark: #FBC02D;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #9E9E9E;
    --dark-gray: #616161;
    --text-dark: #424242;
    --text-light: #757575;
    --success: #81C784;
    --warning: #FFB74D;
    --error: #E57373;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Comic Sans MS', cursive, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul, ol {
    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,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', 'Comic Sans MS', cursive, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(248, 187, 217, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 187, 217, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--baby-blue) 0%, var(--baby-blue-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(179, 229, 252, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 229, 252, 0.5);
}

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

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

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

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

.header-top {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--baby-blue-light) 100%);
    padding: 8px 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
}

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

.header-top-right a {
    color: var(--text-light);
}

.header-top-right a:hover {
    color: var(--pink-dark);
}

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

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

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--baby-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-family: 'Baloo 2', cursive;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--baby-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-bar input:focus {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    border-radius: 50%;
    color: var(--white);
}

.search-bar button:hover {
    transform: translateY(-50%) scale(1.1);
}

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

.header-action {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.header-action:hover {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.header-action .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
}

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

.header-nav {
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-dark);
}

.nav-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-light);
}

.dropdown-menu li a:hover {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.dropdown-menu li a i {
    width: 20px;
    color: var(--pink);
}

/* Hero Section */
.hero {
    margin-top: 140px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    display: none;
    min-height: 600px;
    position: relative;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--baby-blue-light) 50%, var(--cream-light) 100%);
}

.hero-slide.active {
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0;
}

.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pink-dark);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--pink-dark);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
}

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

.hero-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
    box-shadow: var(--shadow-sm);
}

.hero-feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--baby-blue);
    bottom: -50px;
    left: -50px;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--cream);
    top: 50%;
    left: 30%;
}

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

.hero-nav-dot {
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--pink);
}

.hero-nav-dot.active {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    width: 30px;
    border-radius: 10px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.hero-arrow:hover {
    background: var(--pink);
    color: var(--white);
}

.hero-arrow.prev {
    left: 20px;
}

.hero-arrow.next {
    right: 20px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--baby-blue-light) 100%);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pink-dark);
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 15px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Categories Section */
.categories {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--white) 100%);
}

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

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--baby-blue) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.category-card:nth-child(1) .category-icon {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.category-card:nth-child(2) .category-icon {
    background: var(--baby-blue-light);
    color: var(--baby-blue-dark);
}

.category-card:nth-child(3) .category-icon {
    background: var(--cream-light);
    color: var(--cream-dark);
}

.category-card:nth-child(4) .category-icon {
    background: var(--pink-light);
    color: var(--pink-dark);
}

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

.category-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.category-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Products Section */
.products-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.products-tab {
    padding: 12px 28px;
    background: var(--light-gray);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-light);
}

.products-tab:hover,
.products-tab.active {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: var(--white);
}

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

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

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

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

.product-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge.new {
    background: var(--baby-blue);
    color: var(--baby-blue-dark);
}

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

.product-badge.hot {
    background: var(--warning);
    color: var(--white);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
}

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

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

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-action {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(20px);
    transition: var(--transition);
}

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

.product-action:hover {
    background: var(--pink);
    color: var(--white);
}

.product-action:nth-child(2) {
    transition-delay: 0.05s;
}

.product-action:nth-child(3) {
    transition-delay: 0.1s;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--pink-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.product-title:hover {
    color: var(--pink-dark);
}

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

.product-rating i {
    color: var(--cream-dark);
    font-size: 0.875rem;
}

.product-rating span {
    color: var(--text-light);
    font-size: 0.85rem;
}

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

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pink-dark);
}

.original-price {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--baby-blue-light) 100%);
    position: relative;
    overflow: hidden;
}

.special-offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.special-offer-image {
    position: relative;
}

.special-offer-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.special-offer-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.special-offer-badge span:first-child {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.special-offer-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
}

.special-offer-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.special-offer-text h2 span {
    color: var(--pink-dark);
}

.special-offer-text p {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

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

.countdown-item {
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 85px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pink-dark);
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Features Section */
.features {
    background: var(--white);
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card:nth-child(1) .feature-icon {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--baby-blue-light);
    color: var(--baby-blue-dark);
}

.feature-card:nth-child(3) .feature-icon {
    background: var(--cream-light);
    color: var(--cream-dark);
}

.feature-card:nth-child(4) .feature-icon {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    transition: transform 0.6s ease;
}

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

.feature-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--pink-light) 100%);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    display: none;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.testimonial-card.active {
    display: block;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--pink-light);
}

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

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--cream-dark);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-nav-dot {
    width: 12px;
    height: 12px;
    background: var(--pink-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-nav-dot.active {
    background: var(--pink-dark);
    width: 30px;
    border-radius: 10px;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--pink) 0%, var(--baby-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pink-dark);
    margin: 0 auto 25px;
    box-shadow: var(--shadow-md);
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    max-width: 350px;
    padding: 16px 25px;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 16px 35px;
    background: var(--white);
    color: var(--pink-dark);
    border-radius: 50px;
    font-weight: 700;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.footer-brand .logo-text {
    color: var(--white);
    -webkit-text-fill-color: initial;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pink);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--white);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    width: 20px;
    color: var(--pink);
    margin-top: 3px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-payments {
    display: flex;
    gap: 15px;
}

.footer-payments img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-payments img:hover {
    opacity: 1;
}

/* Shop Page Styles */
.page-header {
    margin-top: 140px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--baby-blue-light) 100%);
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--pink-dark);
}

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

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

.shop-sidebar {
    position: sticky;
    top: 160px;
    height: fit-content;
}

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

.filter-title {
    font-size: 1.1rem;
    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;
    color: var(--text-light);
    transition: var(--transition);
}

.filter-list label:hover {
    color: var(--pink-dark);
}

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

.price-range {
    margin-top: 15px;
}

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

.price-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--pink-dark);
    border-radius: 50%;
    cursor: pointer;
}

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

.price-inputs input {
    flex: 1;
    padding: 10px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    text-align: center;
}

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

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.color-option:hover,
.color-option.active {
    transform: scale(1.2);
    box-shadow: var(--shadow-md);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.shop-result {
    color: var(--text-light);
}

.shop-result span {
    color: var(--pink-dark);
    font-weight: 700;
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop-sort select {
    padding: 10px 20px;
    background: var(--light-gray);
    border-radius: 50px;
    cursor: pointer;
}

.shop-view {
    display: flex;
    gap: 10px;
}

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

.view-btn.active {
    background: var(--pink);
    color: var(--white);
}

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

.pagination-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--pink);
    color: var(--white);
}

/* Product Page Styles */
.product-detail {
    padding: 60px 0;
    margin-top: 140px;
}

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

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

.product-main-image {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

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

.product-thumbnails {
    display: flex;
    gap: 15px;
}

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

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--pink);
}

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

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

.product-detail-info .product-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

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

.product-detail-info .product-rating span {
    font-size: 0.95rem;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-detail-price .current-price {
    font-size: 2rem;
}

.product-detail-price .original-price {
    font-size: 1.25rem;
}

.product-detail-price .discount-badge {
    padding: 5px 15px;
    background: var(--pink-light);
    color: var(--pink-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

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

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

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

.option-label {
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

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

.size-btn {
    min-width: 50px;
    height: 50px;
    padding: 0 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
}

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

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.quantity-btn:hover {
    background: var(--pink);
    color: var(--white);
}

.quantity-input {
    width: 60px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-meta {
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.product-meta p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.product-meta p:last-child {
    margin-bottom: 0;
}

.product-meta span {
    color: var(--text-dark);
    font-weight: 600;
}

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

.tabs-nav {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

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

.tab-content {
    display: none;
}

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

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.review-content {
    flex: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 700;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.review-rating i {
    color: var(--cream-dark);
}

.review-text {
    color: var(--text-light);
    margin: 0;
}

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

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

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

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 20px 25px;
    background: var(--pink-light);
    font-weight: 700;
    color: var(--text-dark);
}

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

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

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

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

.cart-product-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.cart-price {
    font-weight: 700;
    color: var(--pink-dark);
}

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

.cart-quantity button {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    border-radius: 50%;
    font-size: 1rem;
}

.cart-quantity button:hover {
    background: var(--pink);
    color: var(--white);
}

.cart-quantity span {
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.cart-total {
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-remove {
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--gray);
    font-size: 1.1rem;
}

.cart-remove:hover {
    color: var(--error);
}

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

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-light);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-top: 15px;
    border-top: 2px solid var(--light-gray);
    margin-top: 15px;
}

.summary-row.total span:last-child {
    color: var(--pink-dark);
}

.promo-code {
    margin: 25px 0;
}

.promo-code input {
    width: 100%;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
}

.promo-code button {
    width: 100%;
    padding: 15px;
    background: var(--baby-blue);
    color: var(--baby-blue-dark);
    border-radius: var(--border-radius-sm);
    font-weight: 700;
}

.promo-code button:hover {
    background: var(--baby-blue-dark);
    color: var(--white);
}

.cart-summary .btn {
    width: 100%;
    margin-top: 15px;
}

.cart-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.cart-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-feature i {
    width: 20px;
    color: var(--success);
}

/* About Page Styles */
.about-hero {
    margin-top: 140px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--baby-blue-light) 100%);
}

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

.about-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero-text h1 span {
    color: var(--pink-dark);
}

.about-hero-text p {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pink-dark);
    line-height: 1;
}

.about-stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.about-hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-story {
    padding: 100px 0;
}

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

.about-story-image {
    position: relative;
}

.about-story-image img {
    border-radius: var(--border-radius-lg);
}

.about-story-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.about-story-badge span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-story-badge span:last-child {
    font-size: 0.9rem;
}

.about-values {
    background: var(--cream-light);
    padding: 100px 0;
}

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

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-card:nth-child(1) .value-icon {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.value-card:nth-child(2) .value-icon {
    background: var(--baby-blue-light);
    color: var(--baby-blue-dark);
}

.value-card:nth-child(3) .value-icon {
    background: var(--cream-light);
    color: var(--cream-dark);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.value-description {
    color: var(--text-light);
}

.team-section {
    padding: 100px 0;
}

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

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

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--pink-light);
}

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

.team-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--pink-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.team-social a:hover {
    background: var(--pink);
    color: var(--white);
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    margin-top: 140px;
}

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

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

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--pink-light);
    transform: translateX(10px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--pink-dark);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
}

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

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: var(--white);
    box-shadow: 0 0 0 3px var(--pink-light);
}

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

.contact-map {
    margin-top: 80px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

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

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

.quick-view-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--text-dark);
    z-index: 10;
}

.quick-view-close:hover {
    background: var(--pink);
    color: var(--white);
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quick-view-image {
    background: var(--light-gray);
}

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

.quick-view-info {
    padding: 40px;
}

/* Decorative Elements */
.cloud {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.5;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: var(--white);
    border-radius: 50%;
}

.star-decoration {
    position: absolute;
    color: var(--cream-dark);
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

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

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

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .header-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .special-offer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .special-offer-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .countdown {
        justify-content: center;
    }

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

    .shop-sidebar {
        position: static;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

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

    .cart-summary {
        position: static;
    }

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

    .about-hero-content,
    .about-story-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .quick-view-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .header-top {
        display: none;
    }

    .search-bar {
        display: none;
    }

    .hero {
        margin-top: 90px;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .products-grid,
    .categories-grid,
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .cart-header {
        display: none;
    }

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

    .page-header,
    .about-hero,
    .contact-section,
    .product-detail,
    .cart-page {
        margin-top: 90px;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .product-actions-detail {
        flex-direction: column;
    }

    .product-actions-detail .btn {
        width: 100%;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    left: 0;
}

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

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    font-size: 1.25rem;
}

.mobile-menu-nav {
    padding: 20px;
}

.mobile-menu-nav li {
    margin-bottom: 10px;
}

.mobile-menu-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
}

.mobile-menu-nav a:hover {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Loading Spinner */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--pink-light);
    border-top-color: var(--pink-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: var(--transition);
    z-index: 3000;
}

.toast.active {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--error);
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.toast.success .toast-icon {
    background: rgba(129, 199, 132, 0.2);
    color: var(--success);
}

.toast.error .toast-icon {
    background: rgba(229, 115, 115, 0.2);
    color: var(--error);
}

.toast-close {
    background: none;
    color: var(--gray);
    font-size: 1.25rem;
    margin-left: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
