@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: var(--color-bg-main);
    --text-dark: var(--color-text-dark);
    --text-muted: var(--color-text-muted);
    --accent-pink: var(--color-action);
    /* Mapped to Gold for Action/CTA */
    --accent-green: var(--color-primary);
    /* Mapped to Burgundy */
    --accent-blue: var(--color-primary);
    /* Mapped to Burgundy */
    --accent-teal: var(--color-primary);
    /* Mapped to Burgundy */
    --white: var(--color-white);
    --border-color: var(--color-border);
    /* Legacy variables replaced */
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    background: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Override: İlk harf büyük (uppercase yerine capitalize) */
.hero-header,
.hero-header *,
.hero-nav,
.hero-nav *,
.collections-modern,
.collections-modern *,
.products-section *,
.modern-bestsellers-section *,
.section-title,
.section-header *,
.product-card *,
.collection-card-modern * {
    text-transform: capitalize !important;
}

/* 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 - Default (Inner Pages) */
.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .logo-text,
.header .nav-item,
.header .action-btn {
    color: var(--text-dark);
}

.header .menu-toggle span {
    background: var(--text-dark);
}

/* Header - Homepage Override */
body.anasayfa-page .header {
    background: #ffffff;
    /* Solid white for homepage too */
    padding: 0px 0;
    position: relative;
    /* Relative flow */
    box-shadow: none;
    border-bottom: 1px solid var(--color-primary);
}

body.anasayfa-page .header .logo-text,
body.anasayfa-page .header .nav-item,
body.anasayfa-page .header .action-btn {
    color: var(--text-dark);
    /* Dark text on white header */
}

body.anasayfa-page .header .menu-toggle span {
    background: var(--color-primary);
}

/* Header - Scrolled State (Global) */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    /* Keep sticky, don't switch to fixed */
}

.header.scrolled .logo-text,
.header.scrolled .nav-item,
.header.scrolled .action-btn {
    color: var(--text-dark);
}

.header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

/* Animated Yakut Logo - Premium Ruby Design (Global) */
.brand-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    line-height: 1;
    position: relative;
    padding: 10px;
}

.brand-text {
    font-family: 'Cinzel', serif;
    /* Premium Serif Font */
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;

    /* Deep Ruby Gradient Base */
    background: linear-gradient(to bottom, var(--color-primary), #640d14);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* 3D Depth Shadow */
    filter: drop-shadow(0px 2px 0px #4a0404);
}

/* The "Sheen" Effect Overlay */
.brand-text::after {
    content: attr(data-text);
    /* Requires data-text attribute in HTML */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    /* Softer Gold/White Sheen Gradient */
    background: linear-gradient(120deg,
            transparent 20%,
            rgba(255, 255, 255, 0.1) 40%,
            rgba(255, 215, 0, 0.4) 50%,
            rgba(255, 255, 255, 0.1) 60%,
            transparent 80%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* Slower, smoother animation */
    animation: nobleShine 8s linear infinite;
}

.tagline-text {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: #000;
    letter-spacing: 10px;
    font-weight: 400;
    margin-top: 5px;
    text-transform: uppercase;
    margin-left: 8px;
    /* Optical centering */
    opacity: 0.8;
}

@keyframes nobleShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Remove old body:not logic as it is now the default */
body:not(.anasayfa-page) {
    padding-top: 0 !important;
    margin-top: 0 !important;
}



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 rules moved to line 130 - do not add position: fixed here */

.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: 0;
    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(--color-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--primary-bg);
    color: var(--color-primary);
    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);
}



/* 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: 'Urbanist', 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: 'Urbanist', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
    /* No padding-top needed since header is sticky */
}

/* body.anasayfa-page has no special rules - header is relative on homepage */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Urbanist', 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;
    justify-content: center;
}

.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;
}

/* LEGACY PRODUCT CARD - Commented out to prevent conflict with Premium Showcase styling 
.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);
    color: var(--white);
}

.product-badge.discount {
    background: var(--color-primary);
    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;
    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(--color-primary);
}

.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;
}



/* Feature Banner */
.feature-banner {
    background: var(--color-primary-light);
    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(--color-primary-light);
    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(--color-primary-light);
    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;
}

/* Action Buttons (Ported from hero-homepage.css for global use) */
/* Action Buttons (Ported from hero-homepage.css for global use) */
.action-btn-circle {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    line-height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: var(--color-accent);
    border: 1px solid var(--color-primary-light);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-primary);
    box-shadow: 0 4px 6px -1px rgba(93, 0, 30, 0.1);
    text-decoration: none !important;
    /* Ensure links don't have underline */
    position: static !important;
    /* Prevent absolute positioning if inherited */
    margin: 0 !important;
    /* Reset margins */
}

.action-btn-circle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff !important;
}

.action-btn-circle i {
    font-size: 16px;
}

.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(--color-primary);
    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;
    }



    .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: 'Urbanist', sans-serif !important;
    color: var(--color-primary) !important;
}

.product-price span:first-child {
    color: var(--color-primary) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

/* Match Sidebar Font and Hover Color */
.sidebar-widget ul li a {
    font-family: 'Urbanist', sans-serif !important;
    color: var(--color-primary);
    /* 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(--color-primary) !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: var(--color-bg-light);
        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(--color-primary);
        font-weight: 600;
        display: block;
    }

    .sidebar-widget.widget-category-2 ul li:hover,
    .sidebar-widget.widget-category-2 ul li a:hover {
        background: var(--color-primary) !important;
        color: var(--white) !important;
        border-color: var(--color-primary);
        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(--color-primary);
    padding: 25px 0;
    overflow: hidden;
    white-space: nowrap;
}

/* Custom Bub's Cart Popup Styles */
.tp-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);
}

.tp-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tp-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);
}

.tp-popup-overlay.active .tp-popup-content {
    transform: scale(1);
}

.tp-popup-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    /* Light green background */
    color: var(--color-bg-light);
    /* 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);
    }
}

.tp-popup-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.tp-popup-message {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    color: var(--color-primary-light);
    margin-bottom: 30px;
}

.tp-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tp-btn-continue {
    background-color: var(--color-primary);
    /* Purple */
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tp-btn-continue:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.tp-btn-cart {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Urbanist', 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: var(--color-primary);
    /* Light gray */
    color: #1f2937;
    /* Dark text */
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Urbanist', 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;
    }
}

.tp-btn-cart:hover {
    background-color: var(--color-primary);
    color: white;
}

.marquee-container {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.marquee-content {
    font-family: 'Urbanist', 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 */
.tp-cart-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.tp-cart-progress::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.tp-step {
    background: #fff;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
    color: #9ca3af;
    font-weight: 500;
    position: relative;
}

.tp-step.active {
    color: var(--color-primary);
    font-weight: 700;
}

.tp-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;
}

.tp-step.active .tp-step-number {
    background: var(--color-primary);
}

.tp-cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-family: 'Urbanist', sans-serif !important;
    line-height: 1.6;
    margin: 60px 0 80px 0;
    min-height: calc(100vh - 350px);
}

.tp-cart-items {
    flex: 1;
    min-width: 0;
    /* Fix flex overflow */
}

.tp-cart-summary-col {
    width: 350px;
    flex-shrink: 0;
}

.tp-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;
}

.tp-cart-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tp-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.tp-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-item-details {
    flex: 1;
}

.tp-item-title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1f2937;
    margin-bottom: 3px;
    display: block;
    text-decoration: none;
}

.tp-item-variant {
    font-size: 12px;
    color: #6b7280;
}

.tp-item-price {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 15px;
}

.tp-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tp-delete-btn {
    color: #ef4444;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 18px;
}

.tp-delete-btn:hover {
    color: #dc2626;
}

/* Order Summary Card Redesign */
.tp-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);
}

.tp-summary-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
    color: #111827;
    letter-spacing: -0.5px;
}

.tp-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6b7280;
    font-family: 'Urbanist', sans-serif;
    align-items: center;
}

.tp-summary-row span:last-child {
    color: #374151;
    font-weight: 500;
}

.tp-summary-row.total {
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.tp-summary-row.total span {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

/* Modern Checkout Button */
/* Modern Checkout Button */
.tp-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--color-primary);
    /* Red */
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-top: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-primary);
    cursor: pointer;
    box-shadow: 0 4px 6px var(--color-bg-light);
    gap: 10px;
}

.tp-checkout-btn:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px var(--color-primary);
}

.tp-checkout-btn i {
    transition: transform 0.3s ease;
}

.tp-checkout-btn:hover i {
    transform: translateX(5px);
}

/* Back Button */
.tp-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;
}

.tp-back-btn:hover {
    color: #111827;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .tp-cart-container {
        flex-direction: column;
    }

    .tp-cart-summary-col {
        width: 100%;
        margin-top: 20px;
    }

    .tp-summary-card {
        position: static;
        /* Remove sticky on mobile */
        padding: 20px;
    }

    .tp-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;
    }

    .tp-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: var(--color-primary) !important;
    color: #fff !important;
}

.dashboard-menu ul li a:hover {
    color: var(--color-action) !important;
}

.dashboard-menu ul li a.active i {
    color: var(--white) !important;
}

/* Shofy Header Styles */
.hero-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.hero-header .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-header .logo-area {
    flex: 0 0 auto;
}

.hero-header .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-decoration: none;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Urbanist', sans-serif;
    text-transform: uppercase;
}

.hero-nav a:hover {
    color: var(--accent-pink, #C5A059);
}

.hero-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-search {
    position: relative;
    width: 300px;
}

.hero-search input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #f9f9f9;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.hero-search input:focus {
    border-color: var(--accent-pink, #C5A059);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.hero-search .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.hero-search .search-btn:hover {
    color: var(--accent-pink, #C5A059);
}

.hero-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-icons .icon-item {
    position: relative;
    color: #1a1a1a;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icons .icon-item:hover {
    color: var(--accent-pink, #C5A059);
}

.hero-icons .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-pink, #C5A059);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-nav {
        display: none;
    }

    .hero-search {
        display: none;
    }

    .hero-header .header-container {
        justify-content: space-between;
    }
}

/* Logo Resize */
.hero-header .logo-image {
    width: 400px;
    height: auto;
    max-height: 116px;
    /* Constraint height as requested, might crop or contain */
    object-fit: contain;
    /* Ensure it doesn't stretch */
}

/* Search Form Fix */
.hero-search-form {
    display: block;
    width: 100%;
    margin: 0;
}

/* Search Button Class Update */
.hero-search .hero-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.hero-search .hero-search-btn:hover {
    color: var(--accent-pink, #C5A059);
}

/* New Category Section Design */
.hero-collection-section {
    padding: 60px 0;
    background: #fff;
}

.hero-collection-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.hero-collection-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.hero-collection-card {
    flex: 0 0 400px;
    height: 220px;
    background: #f5f5f5;
    /* Default pastel gray */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.hero-collection-card:hover {
    transform: translateY(-5px);
}

/* Alternating background colors for variety */
.hero-collection-card:nth-child(3n+1) {
    background: #F2F0EA;
}

/* Pastel Beige */
.hero-collection-card:nth-child(3n+2) {
    background: #F3F5F7;
}

/* Pastel Blue-ish */
.hero-collection-card:nth-child(3n+3) {
    background: #FDF6F6;
}

/* Pastel Pink-ish */

.hero-collection-content {
    flex: 1;
    z-index: 2;
}

.hero-collection-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.hero-collection-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    background: transparent;
}

.hero-collection-card:hover .hero-collection-btn {
    background: #1a1a1a;
    color: #fff;
}

.hero-collection-image {
    flex: 0 0 180px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-collection-image img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.hero-collection-card:hover .hero-collection-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-collection-card {
        flex: 0 0 300px;
        height: 180px;
        padding: 0 20px;
    }

    .hero-collection-title {
        font-size: 22px;
    }

    .hero-collection-image {
        flex: 0 0 120px;
    }

}

/* Newsletter Form Height Fix */
.newsletter-form {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 300px;
}

.newsletter-form input {
    height: 50px !important;
    padding: 0 15px;
    border-radius: 5px 0 0 5px !important;
    border: 1px solid var(--color-primary) !important;
    background: var(--color-bg-light);
    color: var(--text-dark);
    flex: 1;
    width: 100%;
}

.newsletter-form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.newsletter-form button {
    height: 50px !important;
    width: 60px !important;
    border-radius: 0 5px 5px 0 !important;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--text-dark);
    color: #fff;
}

/* Blog Card Hover Effect */
.blog-card-hover {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 15px;
    padding: 15px;
}

.blog-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* ============================================= */
/* --- Authentication Pages (Global Styles) --- */
/* ============================================= */

/* Main Container Wrapper */
.login-container-wrapper {
    display: flex;
    max-width: 900px;
    margin: 80px auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    height: auto;
}

/* Form Area */
.login-form-area {
    flex-basis: 55%;
    padding: 40px;
    /* Standard Padding - Change here to affect all auth pages */
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
    /* Consistent font */
}

.login-header {
    margin-bottom: 30px;
    /* Space between header and form */
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.login-header p {
    font-size: 15px;
    color: #555;
}

.login-header p a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.login-header p a:hover {
    text-decoration: underline;
}

/* Form Elements */
.login-form-area .form-group {
    margin-bottom: 20px;
}

.login-form-area input[type="email"],
.login-form-area input[type="password"],
.login-form-area input[type="text"] {
    width: 100%;
    height: 50px;
    /* Fixed height for all inputs */
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    font-family: 'Urbanist', sans-serif;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-form-area textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    font-family: 'Urbanist', sans-serif;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    min-height: 120px;
    resize: vertical;
}

.login-form-area input::placeholder,
.login-form-area input[type="email"]::placeholder,
.login-form-area input[type="password"]::placeholder,
.login-form-area input[type="text"]::placeholder,
.login-form-area textarea::placeholder {
    color: #888 !important;
    font-family: 'Urbanist', sans-serif !important;
    font-weight: 400 !important;
    opacity: 1 !important;
}

.login-form-area input:focus,
.login-form-area textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(112, 72, 49, 0.2);
}

/* Checkbox Styles */
.login-form-area .form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.login-form-area .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-right: 10px;
    flex-shrink: 0;
}

.login-form-area .form-check-label {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.login-form-area .form-check-label a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.login-form-area .form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.login-form-area .btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: var(--white);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.login-form-area .btn-submit:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* Messages */
.login-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.login-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.login-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Promo Area */
.login-promo-area {
    flex-basis: 45%;
    background: var(--color-primary);
    color: var(--white);
    padding: 40px;
    /* Standard Padding - Change here to affect all auth pages */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.login-promo-area img {
    max-width: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.login-promo-area h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    margin-top: 30px;
    /* Space above headings */
}

.login-promo-area .login-divider {
    width: 50%;
    border-color: rgba(255, 255, 255, 0.3);
    margin: 35px 0;
    /* Increased from 25px for better spacing */
}

/* Promo Buttons */
.login-promo-area .btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    width: 80%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
    /* Space between buttons and next element */
}

.login-promo-area .btn-promo-main {
    background-color: #fff;
    color: var(--color-primary);
}

.login-promo-area .btn-promo-main:hover {
    background-color: #f0f0f0;
}

.login-promo-area .btn-promo-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.login-promo-area .btn-promo-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Auth Pages Responsive */
@media (max-width: 991px) {
    .login-promo-area {
        display: none;
    }

    .login-form-area {
        flex-basis: 100%;
    }

    .login-container-wrapper {
        flex-direction: column;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .login-form-area {
        padding: 25px;
        /* Mobile Padding */
    }
}

/* Additional page spacing for scroll fix */
.page-content {
    min-height: calc(100vh - 200px);
    padding-bottom: 100px;
}

.page-content.pt-75 {
    padding-top: 60px;
}

.page-content.pb-75 {
    padding-bottom: 100px;
}

/* Hesabım page - account dashboard */
.dashboard-content {
    min-height: calc(100vh - 350px);
}

/* Favorilerim page container spacing */
main.main>.container.mb-80.mt-40 {
    margin-top: 80px !important;
    margin-bottom: 100px !important;
    min-height: calc(100vh - 300px);
}

/* Sepetim page - additional spacing */
main.main>.container.mb-80.mt-40 .tp-cart-progress {
    margin-bottom: 40px;
}

/* =========================================
   BREADCRUMB & PAGINATION - THEME STYLES
   ========================================= */

/* Breadcrumb Container - Hidden */
.page-header.breadcrumb-wrap {
    display: none;
}

/* Breadcrumb Links */
.breadcrumb {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--color-primary) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-primary-light) !important;
    text-decoration: underline;
}

.breadcrumb a i {
    color: var(--color-primary);
    margin-right: 5px;
}

.breadcrumb span {
    color: #888;
}

.breadcrumb span::before {
    color: var(--color-primary);
    opacity: 0.5;
}

/* Pagination Theme Styling */
.pagination-area .pagination {
    gap: 8px;
}

.pagination .page-item .page-link {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    color: var(--color-primary);
    background: #fff;
    border: 1px solid rgba(112, 72, 49, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    transition: all 0.3s ease;
}

.pagination .page-item .page-link:hover {
    background: var(--color-bg-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pagination .page-item.active .page-link {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-bg-light) !important;
}

.pagination .page-item.disabled .page-link {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
}

/* Product Link Hover Effects */
.product-cart-wrap a,
.product-content-wrap a,
.product-card a {
    color: inherit;
    transition: color 0.3s ease;
}

.product-cart-wrap a:hover,
.product-content-wrap a:hover,
.product-card a:hover {
    color: var(--color-primary) !important;
}

/* General Link Hover - Theme Color */
a:hover {
    color: var(--color-primary);
}

/* ========================================
   Modern Pagination Styles
   ======================================== */
.pagination-area {
    margin: 50px 0 30px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    background: transparent;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect - subtle background */
.pagination .page-item .page-link:hover {
    background: rgba(112, 72, 49, 0.08);
}

/* Active page - kahve filled rounded square */
.pagination .page-item.active .page-link {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    cursor: default;
}

.pagination .page-item.active .page-link:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Ellipsis dots */
.pagination .page-item .page-link[href="#"] {
    width: auto;
    min-width: 32px;
    color: #999;
    cursor: default;
    font-weight: 400;
}

.pagination .page-item .page-link[href="#"]:hover {
    background: transparent;
    color: #999;
}

/* Navigation arrows styling */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-size: 18px;
    color: var(--color-primary);
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:last-child .page-link:hover {
    background: var(--color-bg-light);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .pagination-area {
        margin: 30px 0 20px;
    }

    .pagination {
        gap: 2px;
    }

    .pagination .page-item .page-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 10px;
    }
}

/* 
   Generic Component Styles (Extracted from index.php inline styles) 
   ================================================================ 
*/

/* Gray Button Variant */
a.v-button.c-bg-gray-400.hover\:c-bg-gray-500.c-text-center.c-block.c-py-2.c-px-4.c-text-white.c-rounded-md.c-transition-colors,
.btn-gray-custom {
    background: #c0c0c0;
    display: block;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    color: #fff;
    transition: background-color 0.3s;
}

.btn-gray-custom:hover {
    background: #a0a0a0;
}

/* Soft Shadow for Images */
img.c-w-full.c-h-auto,
.img-soft-shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -2px;
    border-radius: 0.5rem;
}

/* Mobile Specific Utility Overrides */
@media (max-width: 768px) {
    .slick-initialized .slick-slide {
        height: 572px !important;
    }

    body section:not(.header-breadcrumb-active) {
        margin-top: 1rem;
    }

    .v-product-card .v-product-money-container {
        flex-direction: column;
    }

    .c-text-white {
        --tw-text-opacity: 1;
        color: #000;
    }

    .featured-card img {
        margin: auto;
    }

    /* Login Page Wrappers */
    .login-container-wrapper {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .login-form-area,
    .login-promo-area {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .login-promo-area {
        margin-top: 20px;
        text-align: center;
        border-radius: 10px;
    }
}