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

:root {
    --pink: #FFB6C1;
    --light-pink: #FFE4E1;
    --beige: #F5F5DC;
    --light-beige: #FFF8F0;
    --light-blue: #E6F3FF;
    --dark-pink: #FFB800;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
    background: var(--white);
}

/* Particle Animation Background */
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
    filter: blur(2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) translateX(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) translateX(5px) rotate(270deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.header.hide-header {
    transform: translateY(-100%);
}

.main-header {
    padding: 20px 0;
    position: relative;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.logo i {
    font-size: 32px;
    color: var(--dark-pink);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-5deg);
    }
    75% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.logo h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    font-weight: 400;
    background: linear-gradient(45deg, #FFD700, #FFB800, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px 35px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--dark-pink);
}

.search-box i {
    position: absolute;
    right: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    color: var(--text-dark);
}

.icon-btn:hover {
    color: var(--dark-pink);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--dark-pink);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.main-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
    border-top: 1px solid #eee;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--dark-pink);
    background: var(--light-pink);
    transform: translateY(-2px);
}

.nav-link i {
    margin-right: 5px;
    color: var(--dark-pink);
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 30px;
    transform: none !important;
    z-index: 1;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    z-index: 1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide.banner-1 {
    background: #8eecf5;
}

.banner-slide.banner-2 {
    background: #f1c0e8;
}

.banner-slide.banner-3 {
    background: #b9fbc0;
}

.banner-slide.banner-4 {
    background: #fbf8cc;
}

.banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

.banner-text {
    flex: 0 1 50%;
    max-width: 50%;
    padding: 20px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-text h2,
.banner-text p,
.banner-text button {
    position: relative;
    z-index: 10;
    width: 100%;
}

.banner-text h2 {
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -1px;
}

.banner-text p {
    font-size: clamp(14px, 2vw, 22px);
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.btn-primary {
    background: var(--white);
    color: var(--dark-pink);
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--dark-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
}

.banner-image {
    flex: 0 1 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 11;
    height: 100%;
    min-height: 300px;
}

.banner-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 12;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--white);
    color: var(--dark-pink);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-nav-btn:hover {
    background: var(--white);
    color: var(--dark-pink);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.prev-btn-color,
.prev-btn-children {
    left: 0;
}

.next-btn-color,
.next-btn-children {
    right: 0;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Features Section */
.features-section {
    background: var(--beige);
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-pink);
    box-shadow: none;
    flex-shrink: 0;
}

.feature-item-content {
    flex: 1;
}

.feature-item h3 {
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    z-index: 10;
    line-height: 1.2;
}

.feature-item p {
    color: var(--text-light);
    font-size: 13px;
    position: relative;
    z-index: 10;
    line-height: 1.3;
    margin: 0;
}

/* Categories Section */
.categories-section {
    padding: 50px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
}

.categories-section .container {
    text-align: center;
}

.personalised-intro {
    text-align: center;
    margin-bottom: 40px;
}

.personalised-intro p {
    font-size: 18px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: start;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.category-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-pink);
    transition: all 0.3s;
    display: block;
    flex-shrink: 0;
    max-width: calc(100% - 10px);
    box-sizing: border-box;
}

.category-item:hover .category-image {
    border-color: var(--dark-pink);
    transform: scale(1.05);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 11;
}

.category-item h3 {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    position: relative;
    z-index: 10;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    position: relative;
    z-index: 10;
}

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

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    position: relative;
    z-index: 11;
}

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

.product-info {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.product-info h3,
.product-info button {
    position: relative;
    z-index: 10;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.btn-shop {
    background: var(--dark-pink);
    color: var(--white);
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-shop:hover {
    background: var(--pink);
    transform: translateY(-2px);
}

/* Top Sellers Section */
.top-sellers-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

/* Color Grid */
.shop-color-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.color-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.color-grid {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    align-items: flex-start;
}

.color-item {
    flex: 0 0 calc(25% - 18.75px);
    min-width: 0;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.color-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--light-pink);
    transition: all 0.3s;
    flex-shrink: 0;
}

.color-item:hover .color-image {
    border-color: var(--dark-pink);
    transform: scale(1.05);
}

.color-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 11;
    display: block;
}

.color-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Children Section */
.children-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.children-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
}

.children-grid {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    align-items: flex-start;
}

.children-grid .product-card {
    flex: 0 0 calc(25% - 18.75px);
    min-width: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.children-grid .product-card .product-image {
    flex-shrink: 0;
}

.children-grid .product-card .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.children-grid .product-card .product-info h3 {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Bespoke Section */
.bespoke-section {
    padding: 40px 0;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 1;
}

/* Suspended Section */
.suspended-section {
    padding: 0;
    background: var(--white);
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.suspended-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.suspended-text {
    padding: 60px 40px;
    background: var(--light-blue);
}

.suspended-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.suspended-text p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-dark);
}

.suspended-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.suspended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 11;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: var(--light-pink);
    position: relative;
    z-index: 1;
}

.info-section p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--beige);
    padding: 40px 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.personalised-form-section {
    background: #FFB6C1;
    padding: 60px 0;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.personalised-form-section + .footer {
    margin-top: 0;
}

.footer-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.personalised-form-section .footer-form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-align: center;
}

.personalised-form-section .footer-form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 16px;
}

.personalised-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-pink);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--white);
    color: var(--text-dark);
}

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: var(--dark-pink);
    color: var(--white);
    padding: 15px 50px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-submit:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.footer-newsletter h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.footer-newsletter > p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--dark-pink);
}

.btn-subscribe {
    background: var(--dark-pink);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.btn-subscribe:hover {
    background: var(--pink);
}

.terms {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.social-icons a {
    width: 35px;
    height: 35px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-pink);
    font-size: 16px;
    transition: all 0.3s;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--dark-pink);
}

.footer-bottom {
    background: var(--beige);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-name h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Fredoka One', cursive;
}

.footer-copyright {
    text-align: right;
    font-size: 14px;
    color: var(--text-dark);
}

.footer-copyright p {
    margin: 5px 0;
}

.footer-copyright a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copyright a:hover {
    color: var(--dark-pink);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner-container {
        padding: 50px 30px;
        gap: 30px;
    }
    
    .banner-text {
        padding: 30px 20px;
    }
    
    .banner-image {
        padding: 20px;
    }
    
    .banner-image img {
        max-height: 450px;
    }
}

@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
    }
    
    .banner-container {
        padding: 40px 25px;
        gap: 25px;
    }
    
    .banner-text {
        padding: 25px 15px;
    }
    
    .banner-image img {
        max-height: 400px;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    .main-nav.active {
        display: flex;
        max-height: 500px;
        padding: 15px 0;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: var(--light-pink);
        transform: none;
    }
    
    .banner-container {
        flex-direction: column;
        padding: 30px 20px;
        min-height: auto;
        gap: 20px;
    }
    
    .banner-text {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
        padding: 20px 15px;
        order: 2;
        align-items: center;
    }
    
    .banner-text h2 {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .banner-text p {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .banner-image {
        flex: 1 1 100%;
        max-width: 100%;
        order: 1;
        padding: 15px;
        min-height: 250px;
    }
    
    .banner-image img {
        max-height: 300px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .category-image {
        width: 140px;
        height: 140px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .color-carousel-wrapper {
        padding: 0 45px;
    }
    
    .color-item {
        flex: 0 0 calc(50% - 12.5px);
    }
    
    .color-image {
        width: 160px;
        height: 160px;
        max-width: 100%;
    }
    
    .color-item h3 {
        font-size: 16px;
    }
    
    .children-carousel-wrapper {
        padding: 0 45px;
    }
    
    .children-grid .product-card {
        flex: 0 0 calc(50% - 12.5px);
    }
    
    .children-grid .product-card .product-image {
        height: 250px;
    }
    
    .children-grid .product-card .product-info h3 {
        font-size: 16px;
    }
    
    .suspended-content {
        grid-template-columns: 1fr;
    }
    
    .suspended-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: row;
        gap: 15px;
        position: relative;
        align-items: center;
        justify-content: space-between;
    }
    
    .header-actions {
        position: static;
        width: auto;
        justify-content: flex-end;
        margin-top: 0;
    }
    
    .logo {
        justify-content: flex-start;
        width: auto;
        flex: 1;
    }
    
    .logo h1 {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .logo i {
        font-size: 28px;
    }
    
    .search-box input {
        width: 100%;
        max-width: 250px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    .main-nav.active {
        display: flex;
        max-height: 500px;
        padding: 15px 0;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: var(--light-pink);
        transform: none;
    }
    
    .banner-container {
        flex-direction: column !important;
        padding: 25px 15px !important;
        min-height: auto !important;
        gap: 15px;
    }
    
    .banner-text {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        text-align: center;
        padding: 15px 10px !important;
        order: 2;
        align-items: center;
    }
    
    .banner-text h2 {
        font-size: clamp(24px, 6vw, 36px) !important;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .banner-text p {
        font-size: clamp(14px, 3vw, 18px) !important;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .banner-image {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        order: 1;
        padding: 10px;
        min-height: 200px;
        align-items: center;
        justify-content: center;
    }
    
    .banner-image img {
        max-height: 220px;
        max-width: 100%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        gap: 10px;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }
    
    .feature-item h3 {
        font-size: 13px;
    }
    
    .feature-item p {
        font-size: 11px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-image {
        width: 120px;
        height: 120px;
    }
    
    .category-item h3 {
        font-size: 13px;
        font-weight: 700;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .color-carousel-wrapper {
        padding: 0 50px;
        position: relative;
    }
    
    .color-grid {
        gap: 20px;
    }
    
    .color-item {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .color-image {
        width: 200px;
        height: 200px;
        max-width: 100%;
        margin: 0 auto 15px;
    }
    
    .color-item h3 {
        font-size: 18px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 5px;
        margin: 0;
        line-height: 1.4;
    }
    
    .children-carousel-wrapper {
        padding: 0 50px;
        position: relative;
    }
    
    .children-grid {
        gap: 20px;
    }
    
    .children-grid .product-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .children-grid .product-card .product-image {
        height: 280px;
        width: 100%;
        overflow: hidden;
    }
    
    .children-grid .product-card .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .children-grid .product-card .product-info {
        padding: 20px 15px;
        min-height: auto;
    }
    
    .children-grid .product-card .product-info h3 {
        font-size: 18px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
        line-height: 1.4;
    }
    
    .carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        z-index: 15;
    }
    
    .carousel-nav-btn:hover {
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .prev-btn-color,
    .prev-btn-children {
        left: 5px;
    }
    
    .next-btn-color,
    .next-btn-children {
        right: 5px;
    }
    
    /* Ensure carousel containers don't overflow */
    .color-grid,
    .children-grid {
        overflow: visible;
    }
    
    /* Better spacing for mobile */
    .shop-color-section,
    .children-section {
        padding: 40px 0;
    }
    
    .shop-color-section .section-header,
    .children-section .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .shop-color-section .section-header h2,
    .children-section .section-header h2 {
        font-size: 24px;
    }
    
    .shop-color-section .section-header p,
    .children-section .section-header p {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .color-carousel-wrapper {
        padding: 0 45px;
    }
    
    .color-image {
        width: 180px;
        height: 180px;
    }
    
    .color-item h3 {
        font-size: 16px;
    }
    
    .children-carousel-wrapper {
        padding: 0 45px;
    }
    
    .children-grid .product-card .product-image {
        height: 250px;
    }
    
    .children-grid .product-card .product-info h3 {
        font-size: 16px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn-color,
    .prev-btn-children {
        left: 2px;
    }
    
    .next-btn-color,
    .next-btn-children {
        right: 2px;
    }
    
    .shop-color-section,
    .children-section {
        padding: 30px 0;
    }
    
    .shop-color-section .section-header h2,
    .children-section .section-header h2 {
        font-size: 22px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .suspended-content {
        grid-template-columns: 1fr !important;
    }
    
    .suspended-text {
        padding: 30px 20px;
        text-align: center;
    }
    
    .suspended-text h2 {
        font-size: 28px;
    }
    
    .suspended-image {
        min-height: 250px;
    }
    
    .info-section {
        padding: 40px 20px;
    }
    
    .info-section p {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .btn-subscribe {
        width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-name {
        justify-content: center;
    }
    
    .personalised-form-section {
        padding: 40px 0;
    }
    
    .personalised-form-section .footer-form-container {
        padding: 0 15px;
    }
    
    .personalised-form-section .footer-form-container h2 {
        font-size: 24px;
    }
    
    .personalised-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 15px 30px;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
}

/* ============================================
   About Us Page Styles
   ============================================ */

.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--dark-pink);
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features li i {
    color: var(--dark-pink);
    font-size: 18px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background: var(--light-pink);
}

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

.contact-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--dark-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-item h3 {
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.contact-item a {
    color: var(--dark-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e6a700;
    text-decoration: underline;
}

/* Social Media Section */
.social-section {
    padding: 60px 0;
    background: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 35px;
    background: var(--light-pink);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    background: var(--dark-pink);
    color: var(--white);
    transform: translateY(-5px);
}

.social-link i {
    font-size: 32px;
    margin-bottom: 5px;
}

.social-link span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Reviews Page Styles
   ============================================ */

.reviews-section {
    padding: 80px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.review-content {
    padding: 25px;
}

.review-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 15px;
}

.review-stars i {
    margin-right: 2px;
}

.review-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-name {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* ============================================
   Collections Page Styles
   ============================================ */

.collections-page-section {
    padding: 80px 0;
    background: var(--white);
}

.filter-section {
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-section label {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
}

.filter-select {
    padding: 12px 20px;
    border: 2px solid var(--light-pink);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 250px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--dark-pink);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.2);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.collection-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.collection-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--light-pink);
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.collection-info {
    padding: 25px;
}

.collection-info h3 {
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.collection-category {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collection-price {
    color: var(--dark-pink);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.collection-item .btn-shop {
    width: 100%;
    padding: 12px 20px;
    background: var(--dark-pink);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collection-item .btn-shop:hover {
    background: #e6a700;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .about-section,
    .reviews-section,
    .collections-page-section {
        padding: 50px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        min-width: 100px;
        padding: 20px 25px;
    }
    
    .filter-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-select {
        width: 100%;
        min-width: auto;
    }
}

/* ============================================
   Back to Home Button Styles
   ============================================ */

.back-to-home-section {
    padding: 40px 0;
    background: var(--light-pink);
    text-align: center;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--dark-pink);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
}

.btn-back-home:hover {
    background: #e6a700;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 184, 0, 0.4);
}

.btn-back-home i {
    font-size: 18px;
}

/* ============================================
   Back to Top Button Styles
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-pink);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #e6a700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    color: var(--white);
}

/* Responsive Styles for Back Buttons */
@media (max-width: 768px) {
    .back-to-home-section {
        padding: 30px 0;
    }
    
    .btn-back-home {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}
