/* Serfaherbal E-Commerce Design System & Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design System --- */
:root {
    --primary-color: #06b6d4; /* Vibrant Kids Turquoise */
    --primary-dark: #0891b2; /* Deep Turquoise */
    --primary-light: #ecfeff; /* Light icy cyan */
    --secondary-color: #f97316; /* Warm Vitamin Orange */
    --secondary-light: #fff7ed; /* Light orange glow */
    --bg-warm: #f0fafd; /* Clean, refreshing sky blue background */
    --bg-white: #ffffff;
    --text-dark: #0f172a; /* Deep slate */
    --text-muted: #64748b;
    --border-color: #e2eff5; /* Soft ice-blue border */
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.04), 0 2px 4px -1px rgba(0,0,0,0.02);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -2px rgba(0,0,0,0.03);
    --shadow-hover: 0 20px 25px -5px rgba(6,182,212,0.15), 0 10px 10px -5px rgba(6,182,212,0.06);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* --- Utility Classes --- */
.section-padding {
    padding: 60px 0;
}

.section-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.see-all-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.see-all-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 107, 39, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-best-seller {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.badge-new {
    background-color: #ebf8ff;
    color: #2b6cb0;
}

.badge-discount {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
}

.rating-stars {
    color: #ecc94b;
    display: flex;
    gap: 2px;
}

/* --- Header Section --- */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--bg-warm);
    font-size: 0.8rem;
    padding: 8px 0;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-header {
    background-color: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.search-form {
    flex: 1;
    max-width: 500px;
    display: flex;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 60px 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background-color: var(--bg-warm);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(62, 107, 39, 0.1);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 44px;
    border-radius: var(--radius-full);
    background-color: var(--primary-dark);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.search-btn:hover {
    background-color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-icon {
    font-size: 1.4rem;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* --- Navigation Bar --- */
.nav-bar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-bar .container {
    display: flex;
    align-items: center;
}

.categories-dropdown {
    position: relative;
}

.dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 16px 24px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    height: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 200;
}

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

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding-left: 28px;
}

.nav-menu {
    display: flex;
    margin-left: 20px;
}

.nav-menu li a {
    display: block;
    padding: 18px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, #f0fafd 0%, #e0f2fe 50%, #ffedd5 100%);
    padding: 90px 0 120px 0;
    position: relative;
    overflow: hidden;
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    min-height: 400px;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    display: block;
    opacity: 1;
    animation: heroSlideIn 1s ease forwards;
}

.hero-slide.hero-slide-exit {
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    animation: heroSlideOut 1s ease forwards;
}

@keyframes heroSlideIn {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes heroSlideOut {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-30px); }
}

/* Slider Ok Butonları */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 20px rgba(62, 107, 39, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider-prev {
    left: -24px;
}

.hero-slider-next {
    right: -24px;
}

/* Slider Dots - Override */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(62, 107, 39, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot:hover {
    background-color: rgba(62, 107, 39, 0.35);
}

.hero-slider-dot.active {
    width: 32px;
    border-radius: 10px;
    background-color: var(--primary-color);
}

/* Floating Background Leaves */
.leaf-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-leaf {
    position: absolute;
    color: rgba(6, 182, 212, 0.12);
    font-size: 1.8rem;
    pointer-events: none;
}

.leaf-1 {
    top: 15%;
    left: 8%;
    animation: floatLeaf1 18s ease-in-out infinite;
}

.leaf-2 {
    top: 65%;
    left: 5%;
    animation: floatLeaf2 22s ease-in-out infinite;
    font-size: 2.2rem;
}

.leaf-3 {
    top: 25%;
    right: 8%;
    animation: floatLeaf1 16s ease-in-out infinite;
    animation-delay: 2s;
}

.leaf-4 {
    top: 75%;
    right: 12%;
    animation: floatLeaf2 20s ease-in-out infinite;
    animation-delay: 4s;
    font-size: 1.5rem;
}

@keyframes floatLeaf1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -20px) rotate(45deg); }
}

@keyframes floatLeaf2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, 20px) rotate(-45deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-pre-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(62, 107, 39, 0.15);
    z-index: -1;
    border-radius: var(--radius-sm);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.6;
}

/* Badges Pills Layout */
.hero-badges-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge-pill-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.badge-pill-item i {
    color: var(--primary-color);
}

.btn-hero-cta {
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 10px 25px rgba(62, 107, 39, 0.15);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover .cta-arrow {
    transform: translateX(6px);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 238, 212, 0.7) 0%, rgba(222, 238, 212, 0.1) 70%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(15px);
}

.hero-image {
    max-width: 100%;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.12));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Floating Glass Badges */
.glass-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    animation: floatBadge 6s ease-in-out infinite;
}

.glass-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.glass-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.glass-badge-text strong {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.glass-badge-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.glass-badge.badge-1 {
    top: 15%;
    left: -12%;
    animation-delay: 0s;
}

.glass-badge.badge-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 1.5s;
}

.glass-badge.badge-3 {
    top: 45%;
    right: -12%;
    animation-delay: 3s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}


/* --- Feature Info Bar --- */
.feature-bar {
    background-color: var(--bg-white);
    padding: 30px 0;
    box-shadow: var(--shadow-sm);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-md);
}

.feature-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-bar-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-bar-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.feature-bar-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Popular Categories --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 3px solid transparent;
}

.category-card:nth-child(6n+1) { border-color: #e0f2fe; }
.category-card:nth-child(6n+2) { border-color: #ffedd5; }
.category-card:nth-child(6n+3) { border-color: #f0fdf4; }
.category-card:nth-child(6n+4) { border-color: #fdf2f8; }
.category-card:nth-child(6n+5) { border-color: #faf5ff; }
.category-card:nth-child(6n+6) { border-color: #fef9c3; }

.category-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.category-card:nth-child(6n+1):hover { border-color: #38bdf8; }
.category-card:nth-child(6n+2):hover { border-color: #fb923c; }
.category-card:nth-child(6n+3):hover { border-color: #4ade80; }
.category-card:nth-child(6n+4):hover { border-color: #f472b6; }
.category-card:nth-child(6n+5):hover { border-color: #c084fc; }
.category-card:nth-child(6n+6):hover { border-color: #facc15; }

.category-img-wrapper {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    background-color: var(--bg-warm);
    margin: 0 auto 16px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-light);
    transition: var(--transition-smooth);
}

.category-card:hover .category-img-wrapper {
    border-color: var(--primary-color);
}

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

.category-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- Product Cards Grid / Bestsellers --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid #f0efe9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.25);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
}

.product-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.badge-best-seller {
    background-color: #e0f7fa;
    color: #00838f;
    border: 1px solid #b2ebf2;
}

.badge-new {
    background-color: #e8f0fe;
    color: #1a56db;
    border: 1px solid #c2e7ff;
}

.badge-discount {
    background-color: #fff3e0;
    color: #e65100;
    border: 1px solid #ffe0b2;
}

.badge-popular {
    background-color: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}

.badge-herbal {
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #d1fae5;
}

.badge-default {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.product-img-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
    background-color: #faf9f6;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--bg-white);
}

.product-card-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
    line-height: 1.35;
}

.product-card-title a:hover {
    color: var(--primary-color);
}

.product-card-subname {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 7px;
    font-weight: 500;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 3px;
    border-top: 1px solid #f0efe9;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #a0aec0;
    margin-bottom: 2px;
}

.current-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
}

.add-to-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--primary-dark);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(45, 78, 28, 0.15);
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(62, 107, 39, 0.25);
}



/* --- Campaign Banner Section --- */
.campaign-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/campaign-banner.png') center/cover no-repeat;
    padding: 80px 0;
    color: var(--bg-white);
    border-radius: var(--radius-md);
    text-align: center;
}

.campaign-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.campaign-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* --- Trust Bar Section --- */
.trust-bar-section {
    padding: 40px 0;
    background-color: var(--bg-warm);
    position: relative;
    z-index: 5;
}

.trust-bar-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.03);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1);
    transition: var(--transition-smooth);
}

.trust-item:hover .trust-icon-wrapper {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.25);
    transform: scale(1.05) rotate(5deg);
}

.trust-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.trust-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Footer --- */
.site-footer {
    background-color: #0c2d36;
    color: #cbd5e1;
    padding: 70px 0 30px 0;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--bg-white);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.5;
    margin-bottom: 20px;
    color: #94a3b8;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--bg-white);
}

.social-link:hover {
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 16px;
    color: #94a3b8;
}

.newsletter-form {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 12px 110px 12px 16px;
    border-radius: var(--radius-full);
    border: none;
    background-color: rgba(255,255,255,0.06);
    color: var(--bg-white);
    font-size: 0.85rem;
}

.newsletter-input::placeholder {
    color: #64748b;
}

.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background-color: var(--primary-dark);
}

.footer-trust-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #64748b;
}

/* --- Catalog Shop Page --- */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    margin: 40px 0;
}

.shop-layout .products-grid {
    grid-template-columns: repeat(3, 1fr);
}

.shop-sidebar {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.category-list li {
    margin-bottom: 10px;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
}

.category-link:hover, .category-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

.results-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sort-select {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-size: 0.85rem;
}

/* --- Product Detail Page --- */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 40px 0;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.product-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-warm);
    border-radius: var(--radius-md);
    padding: 40px;
    height: 450px;
}

.product-gallery img {
    max-height: 100%;
    object-fit: contain;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-category {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.detail-subname {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.detail-price-box {
    margin-bottom: 24px;
}

.detail-price-box .old-price {
    font-size: 1.1rem;
}

.detail-price-box .current-price {
    font-size: 2.2rem;
}

.detail-desc {
    color: #4a5568;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.purchase-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    overflow: hidden;
    background-color: var(--bg-warm);
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background-color: var(--border-color);
}

.qty-input {
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

/* Chrome, Safari, Edge, Opera: remove spinner */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.detail-add-btn {
    flex: 1;
    padding: 14px;
    border-radius: var(--radius-full);
}

.product-features-list {
    margin-top: 20px;
}

.product-features-list h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.product-features-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4a5568;
}

.product-features-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

/* Tabs Section */
.product-tabs-wrapper {
    margin-top: 40px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background-color: var(--bg-warm);
    border-bottom: 1px solid var(--border-color);
}

.tab-link {
    padding: 16px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.tab-link.active {
    color: var(--primary-color);
    background-color: var(--bg-white);
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-content {
    padding: 30px;
    display: none;
}

.tab-content.active {
    display: block;
}

/* --- Cart Page --- */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin: 40px 0;
}

.cart-table-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-dark);
    font-weight: 700;
}

.cart-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-product-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-warm);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-img img {
    max-height: 100%;
    object-fit: contain;
}

.cart-product-name {
    font-weight: 600;
    font-family: var(--font-heading);
}

.cart-product-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #e53e3e;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.cart-remove-btn:hover {
    color: #9b2c2c;
    transform: scale(1.1);
}

.cart-summary {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
    height: fit-content;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.summary-row.total {
    border-top: 2px solid var(--border-color);
    padding-top: 16px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.shipping-alert {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    text-align: center;
}

/* Premium Modern Free Shipping Progress Card */
.free-shipping-progress-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(6, 182, 212, 0.12);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.free-shipping-progress-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(6, 182, 212, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

.free-shipping-progress-card.completed {
    background: rgba(240, 253, 250, 0.6);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.1);
}

.progress-card-info {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.progress-card-text-wrapper {
    flex-grow: 1;
}

.progress-card-text {
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
    font-weight: 500;
}

.progress-card-text strong {
    font-weight: 700;
}

.progress-card-text.warning strong {
    color: #e53e3e;
}

.progress-card-text.shipping strong {
    color: var(--primary-dark);
}

.progress-card-text.success strong {
    color: #047857;
}

.progress-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.progress-icon.warning {
    background-color: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
    animation: pulseLock 2s infinite;
}

.progress-icon.shipping {
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--primary-color);
    animation: bounceTruck 2s infinite ease-in-out;
}

.progress-icon.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    animation: scaleCheck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.progress-percent-badge {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.15rem;
    background-color: var(--bg-white);
    border: 1px solid rgba(6, 182, 212, 0.15);
    padding: 6px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.05);
}

.free-shipping-progress-card.completed .progress-percent-badge {
    color: #047857;
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.05);
}

/* Progress Bar Container */
.progress-bar-container {
    position: relative;
    z-index: 1;
    padding-bottom: 25px;
    margin-top: 5px;
}

.progress-bar-wrapper-new {
    height: 12px;
    background-color: rgba(226, 232, 240, 0.6);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.progress-bar-fill-new {
    height: 100%;
    border-radius: 6px;
    transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar-fill-new.warning {
    background: linear-gradient(90deg, #feb2b2 0%, #fc8181 100%);
    box-shadow: 0 0 10px rgba(252, 129, 129, 0.3);
}

.progress-bar-fill-new.shipping {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

.progress-bar-fill-new.success {
    background: linear-gradient(90deg, #34d399 0%, #059669 100%);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* Active Shimmering Effect */
.shimmer-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 2s infinite linear;
    transform: skewX(-20deg);
}

@keyframes shimmer {
    0% { transform: translateX(-150%) skewX(-20deg); }
    100% { transform: translateX(150%) skewX(-20deg); }
}

/* Milestones Dots */
.progress-milestones {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.milestone-dot {
    position: absolute;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid rgba(226, 232, 240, 0.8);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #a0aec0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.milestone-dot.active {
    border-color: var(--primary-color);
    color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.milestone-dot.min-order.active {
    border-color: #f6ad55;
    color: #dd6b20;
    box-shadow: 0 0 10px rgba(246, 173, 85, 0.3);
}

.milestone-dot.free-shipping.active {
    border-color: #34d399;
    color: #059669;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.4);
    background-color: #ecfdf5;
}

.milestone-label {
    position: absolute;
    top: 25px;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 600;
    color: #718096;
    transition: all 0.3s ease;
}

.milestone-dot.active .milestone-label {
    color: var(--text-dark);
    font-weight: 700;
}

.milestone-dot.start .milestone-label {
    left: 0;
    transform: translateX(0);
}

.milestone-dot.min-order .milestone-label {
    left: 0;
    transform: translateX(-50%);
}

.milestone-dot.free-shipping .milestone-label {
    right: 0;
    transform: translateX(0);
    left: auto;
}

/* Animations */
@keyframes pulseLock {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 10px 4px rgba(229, 62, 62, 0.1); }
}

@keyframes bounceTruck {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes scaleCheck {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Confetti Celebration Style */
.confetti-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.confetti-piece {
    position: absolute;
    width: 6px;
    height: 12px;
    background-color: #34d399;
    opacity: 0;
    border-radius: 2px;
    transform: rotate(45deg);
    animation: fallConfetti 2.5s ease-out infinite;
}

.confetti-piece:nth-child(1) { left: 10%; background-color: #38bdf8; animation-delay: 0.2s; }
.confetti-piece:nth-child(2) { left: 30%; background-color: #fbbf24; animation-delay: 0.8s; }
.confetti-piece:nth-child(3) { left: 50%; background-color: #ec4899; animation-delay: 0.1s; }
.confetti-piece:nth-child(4) { left: 70%; background-color: #34d399; animation-delay: 1.4s; }
.confetti-piece:nth-child(5) { left: 90%; background-color: #a855f7; animation-delay: 0.5s; }

@keyframes fallConfetti {
    0% { top: -20px; opacity: 1; transform: translateY(0) rotate(0deg); }
    100% { top: 120%; opacity: 0; transform: translateY(100px) rotate(360deg); }
}

@media (max-width: 576px) {
    .free-shipping-progress-card {
        padding: 16px;
    }
    .progress-card-text {
        font-size: 0.85rem;
    }
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-full);
}

.empty-cart-state {
    text-align: center;
    padding: 60px;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* --- Checkout Page --- */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin: 40px 0;
}

.checkout-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
}

.checkout-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
}

.form-control {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-warm);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(62, 107, 39, 0.1);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.payment-option-label:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.payment-option-label input:checked + span {
    color: var(--primary-dark);
}

.checkout-order-summary {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    height: fit-content;
}

.summary-items-list {
    margin-bottom: 24px;
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.summary-item-name {
    font-weight: 600;
}

.summary-item-qty {
    color: var(--text-muted);
}

.success-card {
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 60px auto;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.success-msg {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* --- About and Contact Pages --- */
.text-page-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 40px;
    margin: 40px 0;
}

.text-page-card h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.text-page-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.text-page-card p {
    margin-bottom: 20px;
    color: #4a5568;
}

.text-page-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.text-page-card li {
    margin-bottom: 8px;
    color: #4a5568;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-list {
    margin-top: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 4px;
}

.contact-info-text h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-info-text p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-map {
    margin-top: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 300px;
}

/* --- Responsiveness Media Queries --- */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .feature-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        align-items: stretch;
    }
    .logo-wrapper {
        text-align: center;
        justify-content: center;
        display: flex;
    }
    .search-form {
        max-width: 100%;
    }
    .header-actions {
        justify-content: space-around;
        padding: 10px 0;
    }
    .nav-bar .container {
        justify-content: space-between;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        margin-left: 0;
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li a {
        padding: 15px 24px;
        border-bottom: 1px solid var(--border-color);
    }
    .mobile-menu-btn {
        display: block;
        padding: 15px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-bullets {
        justify-content: center;
    }
    .hero-image-wrapper {
        order: -1;
    }
    .hero-image {
        max-width: 70%;
    }
    .hero-slider-arrow {
        display: none;
    }
    .hero-slider {
        min-height: auto;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        height: 300px;
    }
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-bar-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .top-bar .container {
        justify-content: center;
        text-align: center;
    }
    .dropdown-btn {
        padding: 16px 15px;
        font-size: 0.85rem;
    }
}

/* Özel Dil Seçici Dropdown Tasarımı */
.custom-dropdown-lang {
    position: relative;
    display: inline-block;
}

.custom-dropdown-lang-btn {
    background-color: transparent;
    border: none;
    color: var(--bg-warm);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 6px;
    transition: var(--transition-smooth);
}

.custom-dropdown-lang-btn:hover {
    opacity: 0.8;
}

.custom-dropdown-lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 6px 0;
    min-width: 65px;
    z-index: 1000;
    display: none;
    margin-top: 6px;
    border: 1px solid var(--border-color);
}

.custom-dropdown-lang-menu.active {
    display: block;
    animation: dropdownFadeIn 0.2s ease-out;
}

.custom-dropdown-lang-menu li {
    list-style: none;
    margin: 0;
}

.custom-dropdown-lang-menu li a {
    display: block;
    padding: 6px 12px;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition-smooth);
}

.custom-dropdown-lang-menu li a:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Google Translate Dil Çeviri Kutusu Özelleştirmeleri */
#google_translate_element {
    display: inline-block;
}

#google_translate_element select.goog-te-combo {
    background-color: transparent;
    border: none;
    color: var(--bg-warm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    outline: none;
    padding: 2px 5px;
    border-radius: var(--radius-sm);
}

#google_translate_element select.goog-te-combo option {
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-family: var(--font-body);
}

/* Google Translate Amblem ve Logolarını Gizleme */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
}

/* Üstteki Çeviri Çubuğunu ve İpucu Balonlarını Gizleme */
body {
    top: 0 !important;
}

iframe.skiptranslate,
body > .skiptranslate {
    display: none !important;
}

#google_translate_element .skiptranslate {
    display: inline-block !important;
}

#goog-gt-tt {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

/* Favoriler Modülü Wishlist Buton Tasarımları */
.wishlist-btn {
    width: 36px;
    height: 36px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
    color: #e53e3e;
}

.wishlist-btn.active {
    color: #e53e3e;
    border-color: #fca5a5;
    background-color: #fff5f5;
}

.btn-fav-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: #94a3b8;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    font-size: 1.15rem;
}

.btn-fav-detail:hover {
    background-color: #f7fafc;
    color: #e53e3e;
    border-color: #cbd5e1;
}

.btn-fav-detail.active {
    color: #e53e3e;
    background-color: #fff5f5;
    border-color: #fca5a5;
}

/* Mini Sepet Yan Çekmece (Side Cart Drawer) */
.side-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.side-cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-cart.open {
    right: 0;
}

.side-cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-cart-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.side-cart-close:hover {
    color: #e53e3e;
}

.side-cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.side-cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.side-cart-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    background-color: #f7fafc;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-cart-img img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.side-cart-details {
    flex-grow: 1;
}

.side-cart-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.side-cart-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.side-cart-title a:hover {
    color: var(--primary-color);
}

.side-cart-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.side-cart-qty-price {
    font-size: 0.85rem;
}

.side-cart-qty {
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 5px;
}

.side-cart-price {
    color: var(--primary-dark);
    font-weight: 700;
}

.side-cart-remove:hover {
    color: #e53e3e !important;
}

body.side-cart-open {
    overflow: hidden;
}

/* ==========================================
   SELLZY CUSTOM THEME REDESIGN OVERRIDES
   ========================================== */

/* Typography & Global */
body {
    background-color: #f7fbfb;
    color: var(--text-dark);
}

.container {
    max-width: 1240px;
}

/* Header & Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: #e5f5f4;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar-item {
    font-weight: 500;
}

.top-bar-item a:hover {
    color: var(--secondary-color);
}

.top-bar-promo-badge {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-left: 8px;
    display: inline-block;
}

.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eef5f4;
}

/* Redesign Search Bar */
.search-form {
    max-width: 600px;
}

.search-input {
    border: 1.5px solid #d4eae7;
    background-color: #fafdff;
    padding: 14px 60px 14px 24px;
    font-size: 0.92rem;
    border-radius: var(--radius-full);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 95, 91, 0.08);
}

.search-btn {
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
}

.search-btn:hover {
    background-color: transparent;
    color: var(--primary-dark);
}

/* Action Circle Icons */
.header-actions {
    gap: 20px;
}

.action-item {
    gap: 12px;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item .action-icon {
    width: 46px;
    height: 46px;
    background-color: var(--primary-light);
    color: var(--primary-dark) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.1);
}

.action-item:hover .action-icon {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(6, 182, 212, 0.25);
}

.action-item .action-icon i {
    color: var(--primary-dark) !important;
    transition: var(--transition-smooth);
}

.action-item:hover .action-icon i {
    color: #ffffff !important;
}

.action-item .cart-badge {
    top: -4px;
    right: -4px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 0.72rem;
    width: 20px;
    height: 20px;
}

/* Navbar */
.nav-bar {
    padding: 10px 0;
    border-bottom: 1px solid #e6f1f0;
}

.categories-dropdown .dropdown-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.categories-dropdown .dropdown-btn:hover {
    background-color: var(--primary-dark);
}

.nav-menu {
    margin-left: 0;
    gap: 2px;
    display: flex;
    align-items: center;
}

.nav-menu li {
    position: relative;
    list-style: none;
}

.nav-menu li a {
    font-size: 0.92rem;
    font-weight: 600;
    color: #344c49;
    padding: 12px 16px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li a:hover,
.nav-menu li a.active,
.nav-menu li.menu-item-has-children:hover > a {
    color: #ffffff;
    background-color: var(--primary-color);
}

/* Sub Menu Styles */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    border: 1px solid #eef5f4;
    margin-top: 5px;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    width: 100%;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #344c49;
    background: transparent;
    border-radius: 0;
    text-align: left;
    width: 100%;
}

.nav-menu .sub-menu li a:hover {
    color: var(--primary-color) !important;
    background-color: var(--primary-light) !important;
}

/* Right support text in header */
.header-support {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
}

.header-support-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #d4eae7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.header-support-text {
    line-height: 1.2;
}

.header-support-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.header-support-text strong {
    font-weight: 700;
    color: var(--text-dark);
}

/* Hero Section */
.hero-outer-container {
    padding: 30px 0;
}

.hero-banner-container {
    background-color: #FFE853;
    border-radius: 40px;
    overflow: hidden;
    padding: 60px 80px;
    position: relative;
    box-shadow: 0 15px 35px rgba(253, 232, 83, 0.15);
}

.hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-banner-container::after {
    display: none;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0b1a18;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h1 .highlight::after {
    background-color: rgba(0, 95, 91, 0.12);
    height: 12px;
    bottom: 2px;
}

.hero-pre-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #3b4e4c;
    margin-bottom: 30px;
}

.hero-btn-row {
    margin-top: 30px;
}

.hero-btn-row .btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 95, 91, 0.2);
}

.hero-btn-row .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 95, 91, 0.35);
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(62, 107, 39, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    width: 32px;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper::before {
    display: none;
}

.hero-image {
    max-height: 420px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

/* Category Icons Section */
.sellzy-categories-section {
    padding: 60px 0;
}

.sellzy-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.sellzy-category-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sellzy-category-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #d4eae7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 15px rgba(0, 95, 91, 0.02);
}

.sellzy-category-item:hover .sellzy-category-icon-box {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    box-shadow: 0 10px 25px rgba(0, 95, 91, 0.1);
}

.sellzy-category-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.sellzy-category-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Trust Bar / Feature Cards */
.trust-bar {
    padding: 60px 0 30px 0;
    background-color: transparent;
}

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

.trust-card {
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.01);
}

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

.trust-card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.03);
}

.trust-card-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trust-card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Specific Card Colors */
.trust-card.card-mint { background-color: #e6f6f5; }
.trust-card.card-mint .trust-card-icon-wrapper { color: #005F5B; }

.trust-card.card-yellow { background-color: #fff9e6; }
.trust-card.card-yellow .trust-card-icon-wrapper { color: #FDBE14; }

.trust-card.card-peach { background-color: #ffeedf; }
.trust-card.card-peach .trust-card-icon-wrapper { color: #ff8b3d; }

.trust-card.card-green { background-color: #ebf7ec; }
.trust-card.card-green .trust-card-icon-wrapper { color: #3cd070; }

/* Newsletter Overlap Card */
.newsletter-overlap-section {
    position: relative;
    z-index: 10;
    margin-bottom: -70px;
    padding: 0 20px;
}

.newsletter-overlap-card {
    background-color: #ffffff;
    border-radius: 35px 35px 0 0;
    box-shadow: 0 -15px 40px rgba(0, 95, 91, 0.05);
    padding: 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-bottom: none;
}

.newsletter-overlap-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.newsletter-overlap-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.newsletter-overlap-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.newsletter-overlap-input {
    width: 100%;
    padding: 16px 140px 16px 28px;
    border: 1.5px solid #d4eae7;
    background-color: #f7fbfb;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.newsletter-overlap-input:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
}

.newsletter-overlap-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-overlap-btn:hover {
    background-color: var(--primary-dark);
}

/* Footer Section */
.site-footer {
    background: linear-gradient(135deg, #07262e 0%, #031216 100%);
    color: #b1c9ce;
    padding: 80px 0 40px 0;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

.footer-column h3 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 28px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.footer-about .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.footer-about .logo-text i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.3));
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #8fa8ad;
}

.footer-about .social-links {
    display: flex;
    gap: 14px;
}

.footer-about .social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #b1c9ce;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-about .social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #8fa8ad;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-links li a:hover::before {
    color: var(--secondary-color);
    transform: translateX(2px);
}

.footer-newsletter p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #8fa8ad;
    margin-bottom: 20px;
}

/* Premium newsletter form group */
.newsletter-form-premium .newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 4px;
    transition: var(--transition-smooth);
}

.newsletter-form-premium .newsletter-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-input-premium {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-premium::placeholder {
    color: #5d757a;
}

.newsletter-btn-premium {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.newsletter-btn-premium:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.footer-trust-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-trust-logos i {
    font-size: 1.8rem;
    color: #5d757a;
    transition: var(--transition-smooth);
}

.footer-trust-logos i:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-trust-logos i.fa-shield-alt {
    color: var(--primary-color);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #5d757a;
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-bottom-links .designed-by {
    color: #5d757a;
}

.footer-bottom-links .designed-by i {
    animation: heartBeat 2s infinite;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

/* Responsive CSS Overrides */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-banner-container {
        padding: 50px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .sellzy-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-item {
        font-size: 0.75rem;
    }
    .header-support {
        display: none;
    }
    .hero-banner-container {
        padding: 40px 30px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image-wrapper {
        justify-content: center;
    }
    .hero-image {
        max-height: 280px;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .sellzy-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-overlap-card {
        padding: 30px 20px;
    }
    .newsletter-overlap-form {
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-overlap-input {
        padding: 16px 20px;
    }
    .newsletter-overlap-btn {
        position: relative;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        padding: 14px 0;
    }
    .site-footer {
        padding-top: 100px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Custom Native Slider Styles */
.slider-section {
    position: relative;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.15);
}

.slider-track-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 25px 0; /* Extra bottom padding for shadows */
    margin-top: 10px;
}

.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slider-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
}

/* Specific item widths for categories slider */
.categories-slider .slider-item {
    width: calc(100% / 6 - 17px); /* 6 columns on large screens */
}

/* Specific item widths for products slider */
.products-slider .slider-item {
    width: calc(100% / 4 - 15px); /* 4 columns on large screens */
}

/* Responsive grid widths */
@media (max-width: 1024px) {
    .categories-slider .slider-item {
        width: calc(100% / 4 - 15px);
    }
    .products-slider .slider-item {
        width: calc(100% / 3 - 14px);
    }
}

@media (max-width: 768px) {
    .categories-slider .slider-item {
        width: calc(100% / 3 - 14px);
    }
    .products-slider .slider-item {
        width: calc(100% / 2 - 10px);
    }
}

@media (max-width: 480px) {
    .categories-slider .slider-item {
        width: calc(100% / 2 - 10px);
    }
    .products-slider .slider-item {
        width: 100%;
    }
}


