* {
    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 styles for non-homepage pages */
body:not(.anasayfa-page) {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body:not(.anasayfa-page) .header {
    position: relative;
    background: var(--white);
    padding: 0;
    margin-top: 0 !important;
    top: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body:not(.anasayfa-page) .header .logo-text,
body:not(.anasayfa-page) .header .nav-item,
body:not(.anasayfa-page) .header .action-btn {
    color: var(--text-dark);
}

body:not(.anasayfa-page) .header .menu-toggle span {
    background: var(--text-dark);
}

.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 - Side Drawer Redesign */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    /* Hide off-screen */
    width: 300px;
    /* Fixed width drawer */
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    /* Higher than header */
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    padding: 0;
}

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

.mobile-menu-header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background: #f9fafb;
}

.mobile-menu-title {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    transition: color 0.3s;
}

.mobile-menu-close:hover {
    color: var(--accent-pink);
}

.mobile-nav {
    padding: 20px 0;
    width: 100%;
    overflow-y: auto;
}

.mobile-nav-item {
    display: block;
    padding: 15px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}

.mobile-nav-item:hover {
    color: var(--accent-pink);
    background: #f9fafb;
    padding-left: 35px;
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    /* Just below menu */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(2px);
}

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

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 800px;
    /* Fixed height as requested */
    min-height: 400px;
    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%, -50%) scale(0.98);
    /* Start slightly smaller */
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 1000px;
    z-index: 3;
    opacity: 0;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    /* Smooth fade and scale */
}

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

.slide-content h2 {
    font-family: 'Barlow', sans-serif;
    /* User requested font */
    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;
    color: var(--white);
    /* Explicitly set color */
}

.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 */
body {
    font-family: 'Barlow', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
    padding-top: 80px;
    /* Header height */
}

body.anasayfa-page {
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Barlow', sans-serif;
}

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

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

/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    color: #1a1a1a;
    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: 12px;
    line-height: 1.4;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.price-sale {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-green);
}

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

.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;
    }

    .hero-slider {
        height: 400px;
    }

    .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;
    }
}

/* Collection/Category Card Updates */
.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* Force square */
    display: block;
}

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

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

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

.collection-name {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.collection-arrow {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.collection-card:hover .collection-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Grid System Fixes */
.col-lg-1-5 {
    flex: 0 0 20%;
    max-width: 20%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 992px) {
    .col-lg-1-5 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .col-lg-1-5 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Ensure visibility if WOW.js is not working */
.product-cart-wrap {
    opacity: 1 !important;
    visibility: visible !important;
    animation-name: none !important;
}

/* Match Category Page Prices to Homepage */
.product-price,
.product-price span {
    font-family: 'Barlow', sans-serif !important;
}

.product-price span:first-child {
    color: var(--accent-green) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

/* Match Sidebar Font and Hover Color */
.sidebar-widget ul li a {
    font-family: 'Barlow', sans-serif !important;
    color: var(--text-dark);
    /* Default color */
    transition: all 0.3s ease;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
}

.sidebar-widget ul li a:hover,
.widget-category-2 ul li a:hover {
    color: var(--white) !important;
    background-color: var(--accent-green) !important;
    padding-left: 15px;
    padding-left: 15px;
    /* Slight slide effect */
}

/* Mobile Category Layout Improvements */
@media (max-width: 991px) {
    .sidebar-widget.widget-category-2 ul {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 5px 0 15px 0;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
        flex-wrap: nowrap;
        margin-bottom: 20px;
    }

    .sidebar-widget.widget-category-2 ul::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .sidebar-widget.widget-category-2 ul li {
        flex: 0 0 auto;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 50px;
        padding: 8px 20px;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar-widget.widget-category-2 ul li a {
        padding: 0 !important;
        margin: 0 !important;
        font-size: 14px;
        white-space: nowrap;
        color: var(--text-dark);
        font-weight: 600;
        display: block;
    }

    .sidebar-widget.widget-category-2 ul li:hover,
    .sidebar-widget.widget-category-2 ul li a:hover {
        background: var(--accent-green) !important;
        color: var(--white) !important;
        border-color: var(--accent-green);
        padding-left: 0 !important;
        /* Reset hover slide effect */
    }

    /* Hide the "Back to Top" link arrow icon for cleaner look or adjust it */
    .sidebar-widget.widget-category-2 ul li.uste_don i {
        margin-right: 5px;
    }

    .sidebar-widget.widget-category-2 h5.section-title {
        font-size: 18px;
        margin-bottom: 15px;
        border-bottom: none;
        /* Optional: remove border if it looks cluttered */
        display: none;
        /* Hide title on mobile for cleaner look as per user feedback */
    }

    /* Force full width for sidebar on mobile */
    .primary-sidebar {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        /* Remove padding to align with screen edges if needed, or keep small padding */
    }

    /* Remove box styles from widget on mobile */
    .sidebar-widget {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        margin-bottom: 10px !important;
    }
}

/* Scrolling Text Marquee */
.marquee-section {
    background-color: var(--accent-green);
    padding: 25px 0;
    overflow: hidden;
    white-space: nowrap;
}

/* Custom Bub's Cart Popup Styles */
.bubs-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.bubs-popup-content {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.bubs-popup-icon {
    width: 80px;
    height: 80px;
    background-color: #d1fae5;
    /* Light green background */
    color: #10b981;
    /* Emerald green icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: popupIconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupIconPop {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.bubs-popup-title {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.bubs-popup-message {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.bubs-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bubs-btn-continue {
    background-color: var(--accent-green);
    /* Purple */
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bubs-btn-continue:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.bubs-btn-cart {
    background-color: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

/* Quick Add Button Styles */
.product-image {
    position: relative;
    overflow: hidden;
}

.quick-add-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: auto;
    transform: none;
    background-color: #e5e7eb;
    /* Light gray */
    color: #1f2937;
    /* Dark text */
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 20;
}

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

.quick-add-btn:hover {
    background-color: #d1d5db;
    /* Slightly darker gray on hover */
    color: #000;
}

.quick-add-btn i {
    font-size: 11px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .quick-add-btn {
        opacity: 1;
        transform: translateY(0);
        padding: 6px 12px;
        font-size: 12px;
    }
}

.bubs-btn-cart:hover {
    background-color: var(--accent-green);
    color: white;
}

.marquee-container {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.marquee-content {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    padding-right: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Ensure content is wide enough */
    flex-shrink: 0;
}

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

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

/* Cart Page Redesign */
.bubs-cart-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.bubs-cart-progress::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.bubs-step {
    background: #fff;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
    color: #9ca3af;
    font-weight: 500;
    position: relative;
}

.bubs-step.active {
    color: var(--accent-green);
    font-weight: 700;
}

.bubs-step-number {
    width: 30px;
    height: 30px;
    background: #e5e7eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.bubs-step.active .bubs-step-number {
    background: var(--accent-green);
}

.bubs-cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-family: 'Barlow', sans-serif !important;
}

.bubs-cart-items {
    flex: 1;
    min-width: 0;
    /* Fix flex overflow */
}

.bubs-cart-summary-col {
    width: 350px;
    flex-shrink: 0;
}

.bubs-cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #fff;
    transition: all 0.3s ease;
}

.bubs-cart-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bubs-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.bubs-item-details {
    flex: 1;
}

.bubs-item-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
}

.bubs-item-variant {
    font-size: 13px;
    color: #6b7280;
}

.bubs-item-price {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    color: var(--accent-green);
    font-size: 16px;
}

.bubs-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bubs-delete-btn {
    color: #ef4444;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 18px;
}

.bubs-delete-btn:hover {
    color: #dc2626;
}

/* Order Summary Card Redesign */
.bubs-summary-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.bubs-summary-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
    color: #111827;
    letter-spacing: -0.5px;
}

.bubs-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #6b7280;
    font-family: 'Barlow', sans-serif;
}

.bubs-summary-row span:last-child {
    color: #374151;
    font-weight: 500;
}

.bubs-summary-row.total {
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.bubs-summary-row.total span {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

/* Modern Checkout Button */
.bubs-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #9089c8;
    /* Restored Purple */
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-top: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(144, 137, 200, 0.3);
    gap: 10px;
}

.bubs-checkout-btn:hover {
    background: #7a73b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(144, 137, 200, 0.4);
}

.bubs-checkout-btn i {
    transition: transform 0.3s ease;
}

.bubs-checkout-btn:hover i {
    transform: translateX(5px);
}

/* Back Button */
.bubs-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    padding: 10px;
    transition: color 0.2s;
    gap: 5px;
}

.bubs-back-btn:hover {
    color: #111827;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .bubs-cart-container {
        flex-direction: column;
    }

    .bubs-cart-summary-col {
        width: 100%;
        margin-top: 20px;
    }

    .bubs-summary-card {
        position: static;
        /* Remove sticky on mobile */
        padding: 20px;
    }

    .bubs-checkout-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        z-index: 100;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    /* Add padding to bottom of page so content isn't hidden by fixed button */
    body {
        padding-bottom: 80px;
    }

    .bubs-cart-progress::after {
        left: 10%;
        right: 10%;
    }
}

/* --- Global Mobile Header Standardization --- */
@media (max-width: 768px) {

    /* Ensure Header Container allows absolute positioning */
    .header-container {
        position: relative !important;
        justify-content: space-between !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Center Logo Globally on Mobile */
    .header .logo-text,
    .header .logo-image {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        margin: 0 !important;
        text-align: center !important;
        z-index: 10;
        /* Ensure logo is above other elements if needed */
    }

    /* Hide Search Button Globally on Mobile */
    .header .search-btn {
        display: none !important;
    }

    /* Adjust Header Actions spacing */
    .header .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        /* Adjust gap as needed */
    }
}

/* Increase Header Height for Non-Homepage on Mobile */
@media (max-width: 768px) {
    body:not(.anasayfa-page) .header {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    /* Hide Outdoor/Spa Section on Mobile */
    .outdoor-section {
        display: none !important;
    }
}

/* Dashboard Menu Active State Override */
.dashboard-menu ul li a.active {
    background-color: #6A4C93 !important;
    color: #fff !important;
}

.dashboard-menu ul li a:hover {
    color: #6A4C93 !important;
}

.dashboard-menu ul li a.active i {
    color: #fff !important;
}