@font-face {
    font-family: 'Averia';
    src: url('../fonts/averia-bolditalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

:root {
    --primary-orange: #FF6B6B;
    --primary-purple: #6B4CE6;
    --primary-green: #4CE6B4;
    --primary-blue: #4C9FE6;
    --text-dark: #2D1F3F;
    --background-light: #FFF6F6;
    --pink-light: #FFE6E6;
    --yellow-light: #FFF3E0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: white;
}

/* Header Styles */
.site-header {
    padding: 1.5rem 0;
    background: var(--background-light);
}

.navbar {
    padding: 0;
    position: relative;
}

.navbar > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left - Logo */
.navbar-brand {
    font-family: 'Averia', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
    margin-right: 2rem;
}

/* Center - Navigation */
.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: -webkit-inline-box;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    white-space: nowrap;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-purple);
}

/* Right - Icons */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
}

.nav-icon {
    color: var(--text-dark);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-icon:hover {
    color: var(--primary-purple);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar > .container {
        flex-wrap: wrap;
    }

    .navbar-center {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    .navbar-nav {
        justify-content: center;
        width: 100%;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-right {
        margin-left: 1rem;
        gap: 1rem;
    }
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: 'Averia', sans-serif;
    font-size: 4.5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.text-orange {
    color: #FF6B6B;
}

.text-purple {
    color: var(--primary-purple);
}

.heart-icon {
    display: inline-block;
    position: relative;
    top: -5px;
    font-size: 3rem;
}

.sparkle-icon {
    position: absolute;
    top: -20px;
    right: 15%;
    width: 40px;
    height: 40px;
    animation: spin 8s linear infinite;
}

.pencil-icon {
    position: absolute;
    top: 10px;
    right: 10%;
    width: 40px;
    height: 40px;
    transform: rotate(15deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-number {
    font-family: 'Averia', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF6B6B;
}

.stat-number span {
    font-size: 1.5rem;
}

.stat-avatars {
    display: flex;
    margin: 0 -0.5rem;
}

.stat-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin: 0 -0.5rem;
}

.stat-text {
    font-family: 'Averia', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    color: var(--primary-purple);
}

.btn-shop-now {
    background: #FF6B6B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: backwards;
}

.btn-shop-now:hover {
    transform: translateY(-3px);
}

.hero-decoration {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 200px;
    height: 200px;
}

.kid-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .pencil-icon {
        width: 30px;
        height: 30px;
    }

    .hero-stats {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-decoration {
        opacity: 0.3;
    }
}

/* Update the hero gallery styles */
.hero-gallery {
    margin-top: 4rem;
    position: relative;
    padding: 0 1rem;
}

.gallery-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
}

.gallery-wrapper::before {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 0;
    right: 0;
    height: 8rem;
    background: var(--background-light);
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.gallery-item {
    width: 200px;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(var(--translate-y, 0));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:nth-child(1) { --translate-y: 30px; }
.gallery-item:nth-child(2) { --translate-y: 15px; }
.gallery-item:nth-child(3) { --translate-y: 0; }
.gallery-item:nth-child(4) { --translate-y: 15px; }
.gallery-item:nth-child(5) { --translate-y: 30px; }

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: translateY(-10px);
}

.gallery-item.pink {
    background: var(--pink-light);
}

.gallery-item.yellow {
    background: var(--yellow-light);
}

.gallery-item.orange {
    background: #FFF0E6;
}

/* Add responsive styles */
@media (max-width: 1200px) {
    .gallery-item {
        width: 180px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 991px) {
    .gallery-wrapper {
        gap: 1rem;
    }
    
    .gallery-item {
        width: 150px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .gallery-item {
        width: calc(50% - 1rem);
        --translate-y: 0 !important;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.text-red {
    color: red;
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
}

.text-yellow {
    color: #FFB800;
    position: relative;
    display: inline-block;
    padding: 0 0.5rem;
}

.text-red::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.2em;
    height: 0.5em;
    background-color: #FFE17D;
    z-index: -1;
    border-radius: 19px;
    rotate: -5deg;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.feature-card {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: white;
}

.card-icon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

.arrow-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(255,255,255,0.7);
    transition: transform 0.3s ease;
}

.arrow-icon i {
    font-size: 1.5rem;
}

.feature-card:hover .arrow-icon {
    transform: translateX(10px);
}

/* Colors */
.feature-card.green { background-color: var(--primary-green); }
.feature-card.orange { background-color: var(--primary-orange); }
.feature-card.blue { background-color: var(--primary-blue); }

.feature-card.featured {
    min-height: 320px;
    transform: translateY(-20px);
}

.card-content h3 {
    font-family: 'Averia', sans-serif;
    font-size: 1.75rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.3;
    margin: 0;
}

.feature-card.featured .card-icon {
    width: 120px;
    height: 120px;
}

/* Responsive styles */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-card.featured {
        grid-column: span 2;
        min-height: 280px;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card.featured {
        grid-column: auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-card.featured .card-icon {
        width: 100px;
        height: 100px;
    }
}

/* Collection Section */
.collection-section {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.collection-header {
    margin-bottom: 3rem;
}

.title-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.title-content {
    position: relative;
}

.sparkle-icon {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 40px;
    height: 40px;
}

.collection-header .section-title {
    font-family: 'Averia', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: left;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: right;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF6B6B;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s;
}

.btn-explore:hover {
    transform: translateX(5px);
    color: white;
}

/* Collection Navigation Styles */
.collection-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--background-light);
    border-radius: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.collection-nav::-webkit-scrollbar {
    display: none;
}

.collection-nav button {
    background: white;
    border: none;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.collection-nav button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-purple);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    z-index: 0;
}

.collection-nav button span {
    position: relative;
    z-index: 1;
}

.collection-nav button:first-child {
    background: var(--primary-purple);
    color: white;
}

.collection-nav button.active {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 76, 230, 0.2);
}

.collection-nav button:hover:not(.active) {
    background: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.collection-nav button:hover:not(.active)::before {
    width: 150%;
    height: 150%;
    opacity: 0.1;
}

@media (max-width: 768px) {
    .collection-nav {
        padding: 0.8rem;
        gap: 0.4rem;
    }

    .collection-nav button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.promo-card {
    grid-column: span 2;
    background: #FF6B6B;
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-content {
    max-width: 55%;
    position: relative;
    z-index: 2;
}

.promo-content h3 {
    font-family: 'Averia', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.btn-claim {
    background: #FFE17D;
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-claim:hover {
    transform: translateY(-2px);
}

.promo-image-wrapper {
    position: relative;
    width: 45%;
    height: 100%;
}

.promo-image {
    position: absolute;
    right: -2.5rem;
    bottom: -2.5rem;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
}

.promo-pattern {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background: url('../images/pattern-dots.svg') no-repeat center;
    opacity: 0.1;
    z-index: 0;
}

/* Yellow promo card specific styles */
.promo-card.yellow {
    grid-column: span 1;
    background: #FFB800;
    padding: 1.5rem;
}

.promo-card.yellow .promo-content {
    max-width: 100%;
}

.promo-card.yellow .promo-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.promo-card.yellow .promo-image-wrapper {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    right: 0;
}

.promo-card.yellow .promo-image {
    right: -1rem;
    bottom: -1rem;
    width: 80%;
    margin-left: auto;
}

/* Update responsive styles */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-card, .promo-card.yellow {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-card, .promo-card.yellow {
        grid-column: span 1;
    }
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-image {
    position: relative;
    padding-top: 100%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating i {
    color: #FFB800;
}

.btn-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    padding: 1rem;
}

.brand {
    display: inline-block;
    background: #F5F5F5;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-info h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.current {
    font-weight: 600;
    font-size: 1.1rem;
}

.original {
    color: #999;
    text-decoration: line-through;
}

.btn-add {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--text-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .collection-header .section-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-card {
        grid-column: span 1;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .nav-center {
        margin-left: auto;
    }
    
    .search-box {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-card {
        height: 200px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Add these styles to the existing CSS */
.btn-favorite.active {
    color: #FF6B6B;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-favorite:hover {
    background: #FF6B6B;
    color: white;
}

.btn-add:hover {
    background: #FF6B6B;
}

.product-info h4 {
    color: var(--text-dark);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

@media (max-width: 991px) {
    .title-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .header-right {
        align-items: flex-start;
    }

    .subtitle {
        text-align: left;
    }

    .collection-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: #FF6B6B;
    color: white;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-choose-content .section-title {
    color: white;
    text-align: left;
    position: relative;
    margin-bottom: 3rem;
}

.sparkle-icon {
    position: absolute;
    top: -20px;
    right: 0;
    width: 40px;
    height: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feature-header:hover {
    background: rgba(255, 255, 255, 0.15);
}

.feature-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.btn-toggle {
    background: none;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.feature-content {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Rotate icon when content is expanded */
.collapse:not(.show) + .feature-header .btn-toggle i {
    transform: rotate(-180deg);
}

.feature-item .collapse.show + .feature-header,
.feature-item .collapsing + .feature-header {
    background: rgba(255, 255, 255, 0.2);
}

/* Add animation for collapse */
.collapse {
    transition: all 0.3s ease;
}

/* Add smooth transition for the chevron icon */
.bi-chevron-up,
.bi-chevron-down {
    transition: transform 0.3s ease;
}

[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }

    .why-choose-content .section-title {
        font-size: 2.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-carousel {
    position: relative;
    padding: 0 4rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--text-dark);
}

.rating {
    display: flex;
    gap: 0.25rem;
    color: #FFB800;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

/* Swiper Styles */
.swiper {
    padding: 1rem;
    margin: -1rem;
}

.swiper-slide {
    height: auto;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--text-dark);
    color: white;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-carousel {
        padding: 0 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Promotional Banners Section */
.promo-banners {
    padding: 6rem 0;
    background-color: white;
}

.banners-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.promo-banner {
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-banner.green {
    background: #4CE6B4;
}

.promo-banner.blue {
    background: #4C9FE6;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.banner-content h2 {
    font-family: 'Averia', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.banner-content span {
    color: #FFE17D;
}

.btn-explore, .btn-shop {
    background: #FFE17D;
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

.btn-shop {
    background: #FF6B6B;
    color: white;
}

.btn-explore:hover, .btn-shop:hover {
    transform: translateX(5px);
}

.banner-graphics {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
}

.giraffe-icon {
    position: absolute;
    right: 2rem;
    bottom: 0;
    width: 100%;
    height: auto;
}

.butterfly-icon {
    position: absolute;
    top: 2rem;
    right: 3rem;
    width: 40px;
    height: 40px;
}

.pencil-icon {
    position: absolute;
    right: 2rem;
    bottom: -1rem;
    width: 80px;
    height: auto;
    transform: rotate(-45deg);
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.link-item i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    background: var(--background-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--text-dark);
}

.link-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (max-width: 991px) {
    .banners-wrapper {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        max-width: 70%;
    }
    
    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promo-banners {
        padding: 4rem 0;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content {
        max-width: 100%;
    }
    
    .banner-graphics {
        opacity: 0.2;
    }
    
    .quick-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--background-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.link-column h3 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column ul li {
    margin-bottom: 0.75rem;
}

.link-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.link-column ul li a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-policies a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-policies a:hover {
    color: var(--primary-purple);
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-policies {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Common Section Title Style */
.section-title {
    font-family: 'Averia', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Specific section title overrides */
.hero-content .section-title {
    font-size: 4rem;
    text-align: center;
}

.collection-header .section-title {
    font-size: 3.8rem;
    text-align: left;
    margin-bottom: 0;
}

.why-choose-content .section-title {
    font-size: 3.8rem;
    color: white;
    text-align: left;
}

.testimonials-section .section-title {
    font-size: 3.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

/* Responsive styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 3rem;
    }

    .hero-content .section-title {
        font-size: 3.5rem;
    }

    .collection-header .section-title,
    .why-choose-content .section-title,
    .testimonials-section .section-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-content .section-title {
        font-size: 3rem;
    }

    .collection-header .section-title,
    .why-choose-content .section-title,
    .testimonials-section .section-title {
        font-size: 2.8rem;
    }
}

/* Curved Cards Section */
.curved-cards {
    position: relative;
    margin-top: 3rem;
    padding-bottom: 4rem;
}

.card-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.curved-card {
    width: 220px;
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered card positioning */
.curved-card:nth-child(1) { transform: translateY(40px) rotate(-2deg); }
.curved-card:nth-child(2) { transform: translateY(20px) rotate(2deg); }
.curved-card:nth-child(3) { transform: translateY(0) rotate(-2deg); }
.curved-card:nth-child(4) { transform: translateY(20px) rotate(2deg); }
.curved-card:nth-child(5) { transform: translateY(40px) rotate(-2deg); }

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    mix-blend-mode: multiply;
}

.card-overlay.pink {
    background: #FFB5B5;
}

.card-overlay.yellow {
    background: #FFD875;
}

.card-overlay.orange {
    background: #FFB088;
}

/* Hover Effects */
.curved-card:hover .card-image {
    transform: translateY(-10px) rotate(2deg);
}

.curved-card:hover .card-overlay {
    opacity: 0.2;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .curved-card {
        width: 200px;
        height: 260px;
    }
}

@media (max-width: 991px) {
    .curved-card {
        width: 180px;
        height: 240px;
    }
    
    .card-wrapper {
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .card-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .card-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .curved-cards::after {
        display: none;
    }

    .curved-card {
        flex: 0 0 auto;
    }
}

/* Shop Page Styles */
.shop-hero {
    padding: 4rem 0 2rem;
    background-color: var(--background-light);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.header-content .section-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.header-content .subtitle {
    font-size: 1.1rem;
    color: #666;
}

.shop-filters {
    min-width: 280px;
}

.filter-row {
    display: flex;
    gap: 1rem;
}

.filter-group {
    flex: 1;
}

.form-select {
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: white;
}

.shop-products {
    padding: 3rem 0 6rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 0.25rem;
    border: none;
    color: var(--text-dark);
    font-weight: 500;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-purple);
    color: white;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    background-color: transparent;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .header-content .section-title {
        font-size: 3rem;
    }

    .shop-filters {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
    }

    .header-content .section-title {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Add to your existing shop styles */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header .section-title {
    font-size: 3.5rem;
    position: relative;
    display: inline-block;
}

.section-header .sparkle-icon {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .section-header .section-title {
        font-size: 2.8rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 0 2rem;
    background-color: var(--background-light);
}

.contact-hero .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
}

.locations-section {
    padding: 4rem 0 6rem;
}

.location-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 3rem;
}

.location-card.factory {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-info {
    padding: 2.5rem;
}

.location-header {
    margin-bottom: 2rem;
}

.location-header .badge {
    background: var(--pink-light);
    color: var(--primary-purple);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.location-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.location-header p {
    color: #666;
    font-size: 1rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.25rem;
    color: var(--primary-purple);
}

.detail-item p {
    margin: 0;
    color: #666;
}

.location-map {
    height: 100%;
    min-height: 300px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.showrooms-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-card.showroom {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-card.showroom .location-map {
    flex: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .location-card.factory {
        grid-template-columns: 1fr;
    }

    .showrooms-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .location-info {
        padding: 2rem;
    }

    .location-header h2 {
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 4rem 0 2rem;
    background-color: var(--background-light);
}

.story-section {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-light);
    border-radius: 50%;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-purple);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-card {
    text-align: center;
}

.team-image {
    margin-bottom: 1.5rem;
    position: relative;
}

.team-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-info .position {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .story-content h2 {
        font-size: 2rem;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    padding: 4rem 0 2rem;
    background-color: var(--background-light);
}

.gallery-filter {
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: white;
    border-radius: 30px;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-btn.active {
    background: var(--primary-purple);
    color: white;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-grid {
    padding: 3rem 0 6rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
} 