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

:root {
    --primary-bg: #f1efee;
    --text-dark: #040404;
    --text-muted: #5e584e;
    --accent-pink: #C5A059;
    /* Matte Gold */
    --accent-green: #8878C3;
    /* Matte Purple */
    --accent-blue: #386994;
    --accent-teal: #265c5e;
    --white: #ffffff;
    --border-color: #e5e5e5;
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.announcement-slider {
    display: flex;
    animation: slide 20s linear infinite;
    white-space: nowrap;
}

.announcement-item {
    padding: 0 60px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* Header */
.header {
    background: transparent;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    /* Assuming a nice font is available or fallback */
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.header.scrolled .logo-text {
    color: var(--text-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.logo img {
    height: 50px;
    /* Slightly larger */
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header.scrolled .nav-item {
    color: var(--text-dark);
}

.nav-item:hover {
    color: var(--accent-pink);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--primary-bg);
    color: var(--accent-pink);
    padding-left: 30px;
    /* Slide effect */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    min-width: 120px;
    /* Ensure space for icons */
    justify-content: flex-end;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--white);
    transition: all 0.3s;
    display: flex;
    /* Fix SVG alignment */
    align-items: center;
    justify-content: center;
}

.header.scrolled .action-btn {
    color: var(--text-dark);
}

.action-btn:hover {
    color: var(--accent-pink);
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-nav {
    padding: 20px;
    text-align: center;
    width: 100%;
}

.mobile-nav-item {
    display: block;
    padding: 20px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s;
}

.mobile-nav-item:hover {
    color: var(--accent-pink);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    /* Full screen height */
    min-height: 600px;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease-in-out, transform 8s linear;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    /* Slight overlay for text readability */
    z-index: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    /* Start slightly higher */
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 1000px;
    z-index: 3;
    opacity: 0;
    transition: all 1s ease-out 0.5s;
    /* Delay content appearance */
}

.slide.active .slide-content {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.slide-content h2 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -1px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--accent-pink);
    color: var(--white);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slider-btn.prev {
    left: 40px;
}

.slider-btn.next {
    right: 40px;
}

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

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

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

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

.full-width {
    width: 100%;
    padding: 0;
}

/* Section Titles */
.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.view-all {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--accent-pink);
}

/* Scroll Wrapper */
.scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-container {
    cursor: grab;
}

.scroll-container.active {
    cursor: grabbing;
    scroll-snap-type: none;
    /* Disable snap while dragging for smoothness */
    scroll-behavior: auto;
    /* Disable smooth scroll while dragging */
}

.scroll-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    transition: all 0.3s;
    opacity: 0;
    /* Hidden by default, shown on hover */
}

.scroll-wrapper:hover .scroll-nav-btn {
    opacity: 1;
}

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

.scroll-nav-btn.prev {
    left: -20px;
}

.scroll-nav-btn.next {
    right: -20px;
}

/* Collections Section */
.collections {
    padding: 60px 0;
}

.collection-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    /* Space for scrollbar */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.collection-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s;
    flex: 0 0 280px;
    /* Fixed width for scroll items */
    scroll-snap-align: start;
}

.collection-card:hover {
    transform: translateY(-5px);
}

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collection-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.collection-arrow {
    font-size: 24px;
}

/* Discover Section */
.discover-section {
    padding: 60px 0;
}

.discover-grid {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.discover-grid::-webkit-scrollbar {
    display: none;
}

.discover-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s;
    flex: 0 0 320px;
    scroll-snap-align: start;
}

.discover-card:hover {
    transform: scale(1.03);
}

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

.discover-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
}

.discover-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

.products-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s;
    flex: 0 0 300px;
    scroll-snap-align: start;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 1;
}

.product-badge.best-seller {
    background: var(--accent-pink);
    /* Gold */
    color: var(--white);
}

.product-badge.discount {
    background: var(--accent-green);
    /* Matte Purple */
    color: var(--white);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.3;
    height: auto !important;
    min-height: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card a {
    display: block;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px !important;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price-sale {
    font-size: 18px;
    font-weight: 700;
    color: #6A4C93;
}

.price-original {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background-color: #ef4444;
    /* Red color for discount */
    padding: 2px 6px;
    border-radius: 4px;
}

.product-colors {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.2s;
}

.color-dot:hover {
    transform: scale(1.2);
}

.color-more {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 5px;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
}

.newsletter-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--accent-pink);
}

.social-links a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-pink);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-pink);
}

.footer-column p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

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

.payment-icons img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Feature Banner */
.feature-banner {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 60px;
    margin: 80px 20px;
    max-width: calc(100% - 40px);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.banner-image {
    width: 50%;
    object-fit: cover;
    border-radius: 12px;
}

.banner-text {
    flex: 1;
}

.banner-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Outdoor Section */
.outdoor-section {
    padding: 80px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.outdoor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.outdoor-card {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.outdoor-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.outdoor-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.outdoor-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.outdoor-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.outdoor-prev,
.outdoor-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.outdoor-prev:hover,
.outdoor-next:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

/* Pop Mart Banner */
.popmart-banner {
    background: var(--white);
    padding: 60px 20px;
    margin: 80px 0;
}

.popmart-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.popmart-product {
    position: relative;
}

.popmart-product>img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.product-thumbnails img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.product-thumbnails img:hover {
    border-color: var(--text-dark);
}

.popmart-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.accordion-btn {
    width: 100%;
    padding: 15px 20px;
    background: var(--primary-bg);
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.accordion-btn:hover {
    background: #e5e3e2;
}

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

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary-bg);
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
}

.add-to-cart,
.buy-now {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.add-to-cart {
    background: var(--accent-green);
    color: var(--white);
}

.add-to-cart:hover {
    background: #3a8c78;
    transform: translateY(-2px);
}

.buy-now {
    background: var(--text-dark);
    color: var(--white);
}

.buy-now:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}

.other-payment {
    display: block;
    text-align: center;
    color: var(--text-dark);
    text-decoration: underline;
    font-size: 14px;
    margin-top: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
    margin: 80px 0;
    border-radius: 20px;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 16px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-pink);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-muted);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile Header Fix */
    .header {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%) !important;
        position: absolute !important;
        padding: 15px 0 !important;
        box-shadow: none !important;
        top: 0 !important;
        margin-top: 0 !important;
        transition: all 0.3s ease !important;
        z-index: 1001 !important;
        /* Ensure header is above mobile menu */
    }

    /* Sticky State for Mobile */
    .header.scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        position: fixed !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
        padding: 15px 0 !important;
    }

    .header .logo-text,
    .header .logo-text span {
        color: var(--white) !important;
    }

    .header.scrolled .logo-text {
        color: var(--text-dark) !important;
    }

    /* Specific colors for sticky menu logo */
    .header.scrolled .logo-text span:nth-child(1),
    .header.scrolled .logo-text span:nth-child(2) {
        color: #6A4C93 !important;
        /* Matte Purple */
    }

    .header.scrolled .logo-text span:nth-child(3) {
        color: #D4AF37 !important;
        /* Gold */
    }

    .header .menu-toggle span {
        background: var(--white) !important;
    }

    /* Ensure close button is visible when menu is active */
    .header .menu-toggle.active span {
        background: var(--text-dark) !important;
    }

    .header.scrolled .menu-toggle span {
        background: var(--text-dark) !important;
    }

    .header .action-btn {
        color: var(--white) !important;
    }

    .header.scrolled .action-btn {
        color: var(--text-dark) !important;
    }

    /* Mobile Header Styles Moved to Global CSS (bubs-style.css) */

    .hero-slider {
        height: 400px;
        margin-top: 0 !important;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }

    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .product-card {
        padding: 15px;
    }

    .banner-content {
        flex-direction: column;
        padding: 30px;
    }

    .banner-image {
        width: 100%;
    }

    .feature-banner {
        padding: 30px;
        margin: 40px 20px;
    }

    .outdoor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .popmart-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 12px;
    }

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

    .logo img {
        height: 35px;
    }

    .hero-slider {
        height: 250px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .collection-name {
        font-size: 16px;
    }

    .products-section,
    .collections,
    .discover-section {
        padding: 40px 0;
    }
}