:root {
    --primary: #0f172a;
    --secondary: #d97706;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    --text-main: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --radius: 0.75rem;
    --container: 1240px;
    --soft-text: #475569;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);

    /* E-Commerce Specifics */
    --price-green: #10b981;
    --price-old: #94a3b8;
    --btn-orange: #ff6000;
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.newsletter-popup.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup .popup-content {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    text-align: center;
}

.newsletter-popup.show .popup-content {
    transform: scale(1);
}

.newsletter-popup .close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: 0.3s;
}

.newsletter-popup .close-popup:hover {
    color: var(--primary);
}

.newsletter-popup .popup-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.newsletter-popup h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.newsletter-popup p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.newsletter-popup input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 1rem;
    outline: none;
}

.newsletter-popup input:focus {
    border-color: var(--secondary);
}

.newsletter-popup .popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.newsletter-popup .btn-secondary {
    background: var(--text-light);
    color: white;
}

.newsletter-popup .btn-secondary:hover {
    background: var(--text-main);
}

/* Enhanced Hero Section */
.hero-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.2;
}

.hero-text .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-placeholder {
    background: #e2e8f0;
    height: 300px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-align: center;
    padding: 2rem;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text .lead {
        font-size: 1.1rem;
    }

    .video-wrapper {
        height: 250px;
    }

    .newsletter-popup .popup-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-popup .popup-content {
        margin: 1rem;
        max-width: 90vw;
        max-height: 80vh;
        overflow-y: auto;
    }

    .newsletter-popup input {
        margin-bottom: 0.5rem;
    }
}

/* Sales Banner and Countdown Timer */
.sales-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    color: white;
    margin-bottom: 2rem;
}

/* Full Width Banner */
.full-width-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
}

.sales-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.sales-banner h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
}

.sales-banner p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: white;
}

.banner-actions .btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.banner-actions .btn-light:hover {
    background: white;
    transform: translateY(-2px);
    color: var(--primary);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timer-block {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 1rem;
    min-width: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-block span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.timer-block small {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Enhanced Product Cards */
.products-grid li.product,
.woocommerce ul.products li.product {
    position: relative;
    overflow: hidden;
}

.products-grid li.product::before,
.woocommerce ul.products li.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.products-grid li.product:hover::before,
.woocommerce ul.products li.product:hover::before {
    left: 100%;
}

.products-grid li.product .stock-status,
.woocommerce ul.products li.product .stock-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
}

.products-grid li.product .stock-status.low-stock,
.woocommerce ul.products li.product .stock-status.low-stock {
    background: #f59e0b;
}

.products-grid li.product .stock-status.out-of-stock,
.woocommerce ul.products li.product .stock-status.out-of-stock {
    background: #ef4444;
}

/* Urgency Elements */
.urgency-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
    animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Enhanced CTA Buttons */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23f0f0f0" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23f0f0f0" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23f0f0f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

/* Modern Minimalist Improvements */
.section-header {
    position: relative;
    margin-bottom: 3rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Enhanced Info Items */
.info-item {
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.1), transparent);
    transition: left 0.5s;
}

.info-item:hover::before {
    left: 100%;
}

/* Cart Notifications and Popups */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
    border-left: 4px solid var(--secondary);
}

.cart-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-content i {
    color: #10b981;
    font-size: 1.5rem;
}

.notification-content span {
    flex: 1;
    font-weight: 500;
    color: var(--text-main);
}

.view-cart-btn {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
}

.view-cart-btn:hover {
    background: var(--primary);
    color: white;
}

/* Exit Intent Popup */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-intent-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.exit-intent-popup.show .popup-content {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: 0.3s;
}

.close-popup:hover {
    color: var(--primary);
}

.popup-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.exit-intent-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 1rem;
    outline: none;
}

.exit-intent-form input:focus {
    border-color: var(--secondary);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--secondary);
    z-index: 10001;
    transition: width 0.1s ease;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-modal.show {
    opacity: 1;
    visibility: visible;
}

.quick-view-loading {
    text-align: center;
    color: white;
    font-size: 1.2rem;
}

.quick-view-loading i {
    margin-right: 0.5rem;
}

/* Recently Viewed Products */
.recently-viewed-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.recently-viewed-product {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s;
}

.recently-viewed-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recently-viewed-product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.recently-viewed-product h4 {
    font-size: 0.9rem;
    margin: 0.5rem;
    color: var(--primary);
}

.recently-viewed-product a {
    text-decoration: none;
    color: inherit;
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
    .cart-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .cart-notification.show {
        transform: translateY(0);
    }

    .notification-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .popup-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .recently-viewed-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* Performance Optimizations */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Enhanced Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

.animate-slide-in-up {
    animation: slideInUp 0.5s ease forwards;
}

/* Full Page Layout */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.site-header {
    flex-shrink: 0;
}

.site-content {
    flex: 1;
    width: 100%;
}

.site-footer {
    flex-shrink: 0;
}

/* Container fixes */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

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

html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--bg-body);
    line-height: 1.6;
    min-height: 100vh;
}

#content {
    flex: 1;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.text-muted {
    color: var(--text-light);
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.bg-light {
    background: var(--bg-light);
}

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

.w-100 {
    width: 100%;
}

.ml-auto {
    margin-left: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    filter: brightness(0.9);
}

.btn-lg {
    padding: 1rem 2rem;
}

/* Header & Marquee */
.top-bar {
    background: var(--secondary);
    color: white;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shipping-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: topMarquee 20s linear infinite;
    gap: 0;
}

.marquee-content span {
    flex-shrink: 0;
    padding: 0 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.top-links {
    margin-left: auto;
    z-index: 2;
    background: var(--secondary);
    padding: 0 1rem;
}

.top-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
}

.header-grid {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    gap: 2rem;
    align-items: center;
    padding: 1rem 1.5rem;
}

.site-branding img {
    max-height: 60px;
    width: auto;
}

.header-search form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.header-search input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius) 0 0 var(--radius);
    outline: none;
    transition: 0.2s;
    background: #f8fafc;
}

.header-search input:focus {
    border-color: var(--secondary);
    background: white;
}

.header-search button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 1.25rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.action-btn,
.cart-contents {
    position: relative;
    color: var(--text-main);
    font-size: 1.35rem;
    transition: 0.3s;
}

.action-btn:hover,
.cart-contents:hover {
    color: var(--secondary);
}

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

.header-nav {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    /* Sticky yap - aşağı inince gelir */
    top: 0;
    /* Üste sabitle */
    z-index: 1000;
    /* Üste çıkar */
}

/* Desktop Navigation */
.main-navigation ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}

.main-navigation a {
    display: block;
    padding: 0.9rem 0;
    font-weight: 500;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.main-navigation a:hover {
    color: var(--secondary);
}

/* Mobile Menu Toggle - Only Mobile */
.menu-toggle {
    display: none;
}

/* Close Button - Masaüstünde Gizle */
.menu-close-btn {
    display: none;
    /* Masaüstünde gizle */
}

/* Mobile Menu Styles - Only Mobile */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        margin: 0 auto;
        background: var(--primary);
        border: none;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.15);
        position: relative;
        overflow: hidden;
    }

    .menu-toggle:hover {
        background: #c82333;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
    }

    .menu-icon {
        display: inline-block;
        width: 20px;
        height: 16px;
        position: relative;
        margin-right: 0.5rem;
        vertical-align: middle;
    }

    .menu-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: white;
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .menu-icon span:nth-child(1) {
        top: 0;
    }

    .menu-icon span:nth-child(2) {
        top: 7px;
    }

    .menu-icon span:nth-child(3) {
        top: 14px;
    }

    .menu-toggle.active .menu-icon span:nth-child(1) {
        transform: rotate(45deg);
        top: 7px;
    }

    .menu-toggle.active .menu-icon span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .menu-toggle.active .menu-icon span:nth-child(3) {
        transform: rotate(-45deg);
        top: 7px;
    }

    .menu-text {
        color: white;
        font-weight: 600;
        font-size: 0.9rem;
        vertical-align: middle;
    }

    /* Close Button - Cıkmasına gerek yok, menü togle kapatır */
    .menu-close-btn {
        display: none !important;
    }

    /* Desktop Menu Hide */
    .main-navigation ul {
        display: none;
    }

    /* Mobile Menu Panel */
    #primary-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        z-index: 99999;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        max-height: 60vh;
        overflow-y: auto;
        border-top: 1px solid var(--border);
    }

    #primary-menu.open.active {
        display: block;
    }

    #primary-menu ul {
        list-style: none;
        margin: 0;
        padding: 1rem 0;
    }

    #primary-menu li {
        margin: 0;
        padding: 0;
    }

    #primary-menu a {
        display: block;
        padding: 0.8rem 1.5rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    #primary-menu a:hover {
        background: rgba(220, 53, 69, 0.05);
        color: var(--primary) !important;
        border-left-color: var(--primary);
    }

    #primary-menu ul.sub-menu {
        background: #f8fafc;
        padding: 0;
    }

    #primary-menu ul.sub-menu a {
        padding-left: 2.5rem;
        font-size: 0.95rem;
    }

    /* Overlay - Devre dışı */
    .menu-overlay {
        display: none !important;
    }
}

/* Hero */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fdfbf7 0%, #fff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-text .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-placeholder {
    background: #e2e8f0;
    height: 300px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

/* Info Bar */
.info-bar-section {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

.info-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.info-item .icon-box {
    width: 50px;
    height: 50px;
    background: #fffbeb;
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-item h4 {
    margin: 0;
    font-size: 1.1rem;
}

/* Products Grid */
.products-grid,
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.products-grid li.product,
.woocommerce ul.products li.product {
    list-style: none;
    text-align: left;
    transition: 0.3s ease;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    margin: 0 !important;
    width: 100% !important;
    position: relative;
    display: flex;
    flex-direction: column;
}

.products-grid li.product:hover,
.woocommerce ul.products li.product:hover {
    transform: none;
}

.products-grid li.product img,
.woocommerce ul.products li.product img {
    border-radius: 4px;
    margin-bottom: 1.25rem;
    aspect-ratio: 1;
    object-fit: cover;
    background: #f8fafc;
    width: 100%;
}

.products-grid li.product h2,
.woocommerce ul.products li.product h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

/* MODERN PRICES & BADGE (UPDATED) */
.products-grid li.product .price,
.woocommerce ul.products li.product .price {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-main);
}

.products-grid li.product .price del,
.woocommerce ul.products li.product .price del {
    color: var(--price-old);
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 0.85em;
    opacity: 1;
}

.products-grid li.product .price ins,
.woocommerce ul.products li.product .price ins {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1em;
}

.products-grid li.product .onsale,
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 10px;
    left: 10px;
    right: auto;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 5;
    text-transform: uppercase;
}

/* BUTTON: Minimalist */
.products-grid li.product .button,
.woocommerce ul.products li.product .button {
    background: var(--primary) !important;
    color: white !important;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin-top: auto;
    width: 100%;
}

.products-grid li.product .button:hover,
.woocommerce ul.products li.product .button:hover {
    filter: brightness(0.9);
}

.soft-title {
    font-weight: 400;
    font-size: 2rem;
    color: var(--soft-text);
    letter-spacing: -0.5px;
}

.separator-soft {
    height: 3px;
    width: 60px;
    background: var(--secondary);
    margin: 1rem auto 0;
    border-radius: 2px;
    opacity: 0.6;
}

/* Accordion */
.accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: visible;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accordion-header .acc-icon {
    margin-right: 1.5rem;
    font-size: 1.2rem;
    font-weight: 900;
    opacity: 0.8;
}

.accordion-header.active .acc-icon {
    color: white;
    opacity: 1;
}

.accordion-header i.ml-auto {
    margin-left: auto;
    transition: 0.3s;
}

.accordion-header.active i.ml-auto {
    transform: rotate(180deg);
    color: white;
}

.accordion-content {
    display: none;
    background: #f8f9fa;
    border-radius: 0 0 5px 5px;
    overflow: visible !important;
    position: relative;
    z-index: 9999;
    /* Üste çıkar */
    padding: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
}

/* İç içe accordion yapılarını tamamen etkisiz hale getir */
.accordion-content .accordion-item,
.accordion-content .accordion-collapse,
.accordion-content .panel,
.accordion-content .accordion-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow: visible !important;
    position: static !important;
}

/* İçindeki tüm elementleri görünür yap */
.accordion-content * {
    visibility: visible !important;
    opacity: 1 !important;
}

.accordion-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333 !important;
    font-size: 1rem !important;
}

.accordion-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
    color: #333 !important;
}

/* Fabric Slider (Excerpt Styling) */
.fabric-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1rem 0;
    width: 100%;
}

.marquee-track {
    display: inline-flex;
    gap: 2rem;
    animation: fabricScroll 40s linear infinite;
    width: max-content;
}

.fabric-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.fabric-card {
    background: var(--bg-body);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    min-width: 320px;
    max-width: 320px;
    gap: 1rem;
    transition: 0.3s;
    white-space: normal;
    display: inline-flex;
    align-items: flex-start;
    /* Align top for text block */
    color: var(--text-main);
}

.fabric-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
    color: var(--secondary);
}

.fabric-img {
    flex-shrink: 0;
}

.fabric-img img,
.fabric-img .placeholder-cloth {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    object-fit: cover;
}

.fabric-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: inherit;
    font-weight: 700;
}

.fabric-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

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

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

/* Newsletter (Dark Blue Theme) */
.newsletter-section {
    background: var(--primary);
    padding: 4rem 0;
    color: white;
    margin-top: 4rem;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: #cbd5e1;
    margin: 0;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.newsletter-form .input-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    width: 300px;
}

.newsletter-form button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
}

/* Newsletter Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 0;
        margin-top: 2rem;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .newsletter-content h3 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .newsletter-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }

    .newsletter-form input {
        width: 100%;
        padding: 1.25rem;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
        border: 2px solid #e9ecef;
        height: 55px;
        box-sizing: border-box;
    }

    .newsletter-form button {
        width: 100%;
        padding: 1.25rem;
        font-size: 1.1rem;
        height: 55px;
        border-radius: 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        font-weight: 600;
        letter-spacing: 0.5px;
        box-sizing: border-box;
    }

    .input-group {
        flex-direction: column;
        width: 100%;
        display: block;
        /* Flex yerine block */
        max-width: 500px;
        /* Maksimum genişlik */
        margin: 0 auto;
        /* Ortala */
    }

    .newsletter-form input {
        margin-bottom: 1rem;
        /* Input altına boşluk */
    }

    .newsletter-form button {
        margin-bottom: 0;
        /* Buton altı boşluk */
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 0;
        margin-top: 1.5rem;
    }

    .newsletter-wrapper {
        padding: 2.5rem 1rem;
        gap: 1.5rem;
    }

    .newsletter-content h3 {
        font-size: 1.6rem;
    }

    .newsletter-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .newsletter-form input {
        padding: 1rem;
        font-size: 1rem;
        height: 50px;
        border-radius: 10px;
    }

    .newsletter-form button {
        padding: 1rem;
        font-size: 1rem;
        height: 50px;
        border-radius: 10px;
        font-weight: 600;
    }

    .input-group {
        gap: 0.75rem;
    }
}

/* Single Product */
.single-product .site-content {
    padding: 4rem 10%;
    background: #fff;
}

.woocommerce div.product {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.woocommerce div.product::before,
.woocommerce div.product::after {
    display: none !important;
}

.woocommerce-product-gallery {
    width: 100% !important;
    margin: 0 !important;
    position: relative;
}

.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
}

.woocommerce-product-gallery figure {
    margin: 0;
}

.woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.woocommerce-product-gallery__image {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f8fafc;
}

/* Flexbox Thumbnails overrides for Woo */
.woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    overflow-x: auto;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    gap: 10px;
    scrollbar-width: none;
}

.woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
    display: none;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    flex-shrink: 0;
    width: 80px;
    cursor: pointer;
}

.woocommerce-product-gallery .flex-control-thumbs li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: 0.3s;
    background: #f8fafc;
}

.woocommerce-product-gallery .flex-control-thumbs li img:hover,
.woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    border-color: var(--secondary);
    opacity: 1;
}

.entry-summary {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product_title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.entry-summary .price {
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.entry-summary .price del {
    color: var(--price-old);
    font-size: 0.75em;
    font-weight: 400;
    margin-right: 0.5rem;
}

.single-price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.woocommerce-product-details__short-description {
    display: block;
    margin-bottom: 2rem;
    color: var(--soft-text);
    font-size: 1.05rem;
    line-height: 1.6;
}

.cart {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.quantity {
    display: flex;
    flex-direction: column;
}

.quantity input {
    width: 70px;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 0;
    outline: none;
}

.quantity input:focus {
    border-color: var(--secondary);
}

.single_add_to_cart_button {
    flex: 1;
    min-width: 200px;
    background: var(--btn-orange) !important;
    color: white !important;
    border: none;
    border-radius: 4px !important;
    height: 50px;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    transition: 0.3s;
}

.single_add_to_cart_button:hover {
    filter: brightness(0.9);
}

.parcabez-delivery-info {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.delivery-item i {
    font-size: 1.5rem;
    color: #2ecc71;
}

.delivery-item.refund i {
    color: #3498db;
}

.del-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.del-text strong {
    font-size: 0.95rem;
    color: #333;
}

.del-text span {
    font-size: 0.85rem;
    color: #777;
}

.product-info-grid-wrapper {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.product-info-grid-wrapper h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.info-grid-item {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.grid-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.grid-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
}

/* Product Tabs Modernization */
.woocommerce-tabs {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    clear: both;
}

.woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    gap: 2rem;
    border-bottom: 2px solid var(--border);
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.woocommerce-tabs ul.tabs::-webkit-scrollbar {
    display: none;
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    position: relative;
    white-space: nowrap;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

.woocommerce-tabs ul.tabs li a:hover {
    color: var(--primary);
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--primary);
}

.woocommerce-tabs ul.tabs li.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}

.woocommerce-Tabs-panel {
    color: var(--soft-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.woocommerce-Tabs-panel h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

/* Single Product Table fix */
.woocommerce table.shop_attributes {
    border: none;
    border-collapse: collapse;
    width: 100%;
    margin-top: 1rem;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.woocommerce table.shop_attributes th {
    font-weight: 600;
    color: var(--primary);
    width: 30%;
    text-align: left;
}

.woocommerce table.shop_attributes td p {
    margin: 0;
}

/* Review Section Fixes */
.woocommerce-Reviews #comments h2 {
    font-size: 1.5rem;
}

.woocommerce-Reviews ol.commentlist {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.woocommerce-Reviews ol.commentlist li {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.site-footer {
    background: var(--primary);
    color: #cbd5e1;
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* WooCommerce Pagination */
.woocommerce nav.woocommerce-pagination {
    margin: 4rem 0;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    background: white;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    margin: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.woocommerce nav.woocommerce-pagination ul li a.next,
.woocommerce nav.woocommerce-pagination ul li a.prev {
    width: auto;
    padding: 0 1.25rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    min-width: 0;
}

@media (max-width: 992px) {

    .header-grid,
    .hero-grid,
    .info-bar-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid,
    .woocommerce ul.products,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-navigation ul {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin: 0 auto;
        background: var(--primary);
        border: none;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.15);
        position: relative;
        overflow: hidden;
    }

    .menu-toggle:hover {
        background: #c82333;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
    }

    .header-search {
        display: none;
    }

    .slide-item {
        min-width: 280px;
    }

    .parcabez-delivery-info {
        flex-direction: column;
        gap: 1rem;
    }

    .single-product .site-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {

    .products-grid,
    .woocommerce ul.products,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product {
        gap: 1.5rem;
    }

    .single-product .site-content {
        padding: 1.5rem 0;
    }

    .entry-summary {
        padding: 0 1rem;
    }

    .product_title {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .entry-summary .price,
    .single-price {
        font-size: 1.5rem;
    }

    .cart {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .quantity {
        align-items: center;
    }

    .quantity input {
        width: 100%;
        max-width: 150px;
    }

    .single_add_to_cart_button {
        width: 100%;
    }

    .woocommerce table.shop_attributes th,
    .woocommerce table.shop_attributes td {
        display: block;
        width: 100%;
        text-align: left;
    }
}

.footer-widgets {
    padding: 4rem 0;
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--secondary);
    margin-top: 4px;
}

.contact-list a:hover {
    color: white;
}

.site-info {
    background: var(--primary);
    padding: 1.5rem 0;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.site-info .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payments {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #cbd5e1;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    border: none;
    outline: none;
}

.input-group button.btn-primary {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    height: auto;
}

.contact-hero {
    border-bottom: 1px solid var(--border);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form-wrapper form label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form-wrapper form input,
.contact-form-wrapper form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-form-wrapper form input:focus,
.contact-form-wrapper form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
    outline: none;
}

.contact-form-wrapper form button {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-wrapper form button:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Toptan Fiyat Sayfası */
.toptan-fiyat-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.toptan-fiyat-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box,
.contact-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-box h3,
.contact-box h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.info-box li strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.contact-item span {
    color: var(--text-light);
    font-size: 1.1rem;
}

.quick-contact {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-contact .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

.toptan-fiyat-table {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.toptan-fiyat-table h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border);
}

.price-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.price-table tr:nth-child(even) {
    background: #f8f9fa;
}

.price-table td strong {
    color: var(--success);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toptan-fiyat-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-contact {
        flex-direction: column;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Product Gallery - Ürün Galerisi */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.gallery-item {
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    aspect-ratio: 1/1;
}

.gallery-item:hover {
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.3);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.active::after {
    content: '✓';
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
}

/* Main Image - Ana Görsel */
.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.product-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-main-img:hover {
    transform: scale(1.02);
}

/* Lightbox Styles */
.image-lightbox {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.show {
    opacity: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .gallery-item.active::after {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .gallery-item {
        border-width: 2px;
    }
}

/* WooCommerce Single Product Override */
.woocommerce-product-page {
    background: #fff;
}

.woocommerce-product-page .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem 0;
}

/* Product Images - WooCommerce */
.woocommerce-product-page .woocommerce-product-gallery {
    position: sticky;
    top: 2rem;
}

.woocommerce-product-page .woocommerce-product-gallery__image {
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-product-page .woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.woocommerce-product-page .woocommerce-product-gallery__image img:hover {
    transform: scale(1.05);
}

.woocommerce-product-page .woocommerce-product-gallery__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.woocommerce-product-page .woocommerce-product-gallery__wrapper img {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 80px;
    object-fit: cover;
}

.woocommerce-product-page .woocommerce-product-gallery__wrapper img:hover,
.woocommerce-product-page .woocommerce-product-gallery__wrapper img.active {
    border-color: var(--primary);
}

/* Product Summary - WooCommerce */
.woocommerce-product-page .summary.entry-summary {
    padding: 0 2rem;
}

.woocommerce-product-page .product_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.woocommerce-product-page .woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.woocommerce-product-page .star-rating {
    color: #ffc107;
}

.woocommerce-product-page .woocommerce-review-link {
    color: #6c757d;
    font-size: 0.9rem;
    text-decoration: none;
}

.woocommerce-product-page .woocommerce-review-link:hover {
    text-decoration: underline;
}

.woocommerce-product-page .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.woocommerce-product-page .price del {
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.woocommerce-product-page .woocommerce-product-details__short-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Product Meta - WooCommerce */
.woocommerce-product-page .product_meta {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.woocommerce-product-page .product_meta>span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.woocommerce-product-page .product_meta>span:last-child {
    margin-bottom: 0;
}

.woocommerce-product-page .product_meta>span::before {
    color: var(--primary);
    width: 20px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.woocommerce-product-page .product_meta .sku::before {
    content: "\f02b";
    /* fa-tag */
}

.woocommerce-product-page .product_meta .posted_in::before {
    content: "\f07b";
    /* fa-cube */
}

.woocommerce-product-page .product_meta .tagged_as::before {
    content: "\f02b";
    /* fa-tag */
}

/* Add to Cart - WooCommerce */
.woocommerce-product-page .cart {
    margin-bottom: 2rem;
}

.woocommerce-product-page .quantity {
    display: inline-block;
    margin-right: 1rem;
}

.woocommerce-product-page .quantity input {
    width: 80px;
    height: 50px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.woocommerce-product-page .single_add_to_cart_button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 50px;
    vertical-align: top;
}

.woocommerce-product-page .single_add_to_cart_button:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Product Tabs - WooCommerce */
.woocommerce-product-page .woocommerce-tabs {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 4rem 0;
}

.woocommerce-product-page .wc-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.woocommerce-product-page .wc-tabs li {
    margin: 0;
}

.woocommerce-product-page .wc-tabs li a {
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    display: block;
    text-decoration: none;
}

.woocommerce-product-page .wc-tabs li a:hover {
    color: var(--primary);
    background: rgba(220, 53, 69, 0.05);
}

.woocommerce-product-page .wc-tabs li.active a {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: white;
}

.woocommerce-product-page .woocommerce-Tabs-panel {
    padding: 2rem;
    line-height: 1.6;
    color: #6c757d;
}

.woocommerce-product-page .woocommerce-Tabs-panel h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Related Products - WooCommerce */
.woocommerce-product-page .related.products {
    padding: 4rem 0;
}

.woocommerce-product-page .related.products>h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.woocommerce-product-page .related.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .woocommerce-product-page .product {
        gap: 3rem;
    }

    .woocommerce-product-page .product_title {
        font-size: 2rem;
    }

    .main-image {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .woocommerce-product-page .product {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .woocommerce-product-page .woocommerce-product-gallery {
        position: static;
    }

    .woocommerce-product-page .summary.entry-summary {
        padding: 0;
    }

    .woocommerce-product-page .product_title {
        font-size: 1.8rem;
    }

    .woocommerce-product-page .price {
        font-size: 1.5rem;
    }

    .main-image {
        max-height: 400px;
        margin-bottom: 1rem;
    }

    .product-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 6px;
    }

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

@media (max-width: 480px) {
    .woocommerce-product-page .product {
        padding: 2rem 0;
    }

    .woocommerce-product-page .woocommerce-tabs {
        margin: 2rem 0;
    }

    .woocommerce-product-page .related.products {
        padding: 2rem 0;
    }

    .woocommerce-product-page .quantity {
        display: block;
        margin-bottom: 1rem;
    }

    .woocommerce-product-page .quantity input {
        width: 100%;
    }

    .woocommerce-product-page .single_add_to_cart_button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .woocommerce-product-page .related.products ul.products {
        grid-template-columns: 1fr;
    }

    .main-image {
        max-height: 300px;
        margin-bottom: 0.75rem;
    }

    .product-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
    }

    .gallery-item {
        border-radius: 4px;
    }

    /* Mobil WooCommerce Form */
    .woocommerce div.product form.cart {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .woocommerce div.product form.cart .quantity {
        width: 100%;
        margin-bottom: 0;
    }

    .woocommerce div.product form.cart .quantity .qty {
        width: 100%;
        height: 50px;
        font-size: 1rem;
        text-align: center;
    }

    .woocommerce div.product form.cart .button {
        width: 100%;
        height: 55px;
        font-size: 1rem;
        padding: 1rem;
        text-align: center;
        justify-content: center;
    }
}

.product-breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 2;
}

.product-breadcrumb .woocommerce-breadcrumb {
    font-size: 0.9rem;
    color: #6c757d;
}

.product-breadcrumb .woocommerce-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.product-breadcrumb .woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

.product-breadcrumb .woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

.product-main-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.product-images {
    position: sticky;
    top: 2rem;
    z-index: 10;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    width: 100%;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.main-image::before {
    content: '';
    display: block;
    padding-top: 100%;
    /* 1:1 aspect ratio */
}

.product-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

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

.gallery-item:hover,
.gallery-item.active {
    border-color: var(--primary);
}

.product-info {
    padding: 0 2rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-rating .star-rating {
    color: #ffc107;
}

.review-count {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.product-price del {
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.product-short-desc {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-meta {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item i {
    color: var(--primary);
    width: 20px;
}

.meta-item span {
    color: #6c757d;
    font-size: 0.9rem;
}

.meta-item strong {
    color: #2c3e50;
    font-weight: 600;
}

.meta-item .in-stock {
    color: #28a745;
}

.meta-item .out-of-stock {
    color: #dc3545;
}

/* Product Actions */
.product-actions {
    margin-bottom: 2rem;
}

/* WooCommerce Quantity Override */
.woocommerce div.product form.cart .quantity {
    float: none;
    margin: 0 0 1rem 0;
    display: inline-block;
}

.woocommerce div.product form.cart .quantity .qty {
    width: 80px;
    height: 50px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    padding: 0.5rem;
    line-height: 1;
    -moz-appearance: textfield;
    appearance: textfield;
}

.woocommerce div.product form.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.woocommerce div.product form.cart .quantity .qty::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* WooCommerce Add to Cart Button Override */
.woocommerce div.product form.cart .button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 50px;
    vertical-align: top;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    line-height: 1;
    display: inline-block;
    text-decoration: none;
}

.woocommerce div.product form.cart .button:hover {
    background: #c82333;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.woocommerce div.product form.cart .button:active {
    transform: translateY(0);
}

.woocommerce div.product form.cart .button.loading {
    opacity: 0.7;
    cursor: wait;
}

.woocommerce div.product form.cart .button.added {
    background: #28a745;
}

/* Quantity and Button Layout */
.woocommerce div.product form.cart {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.woocommerce div.product form.cart .quantity {
    margin-bottom: 0;
}

.product-actions .quantity {
    display: inline-block;
    margin-right: 1rem;
    visibility: visible !important;
    /* Zorla görünür yap */
    opacity: 1 !important;
}

.product-actions .quantity input {
    width: 80px;
    height: 50px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.product-actions .single_add_to_cart_button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block !important;
    /* Zorla görünür yap */
    visibility: visible !important;
    opacity: 1 !important;
    height: 50px;
    line-height: 50px;
}

.product-actions .single_add_to_cart_button:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.product-features li i {
    color: #28a745;
}

/* Social Share */
.product-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn.pinterest {
    background: #e60023;
}

.social-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Product Tabs */
.product-details-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.product-tabs {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tab-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
    background: rgba(220, 53, 69, 0.05);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: white;
}

.tab-contents {
    padding: 2rem;
}

.tab-content {
    display: none;
}

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

.content-wrapper {
    line-height: 1.6;
    color: #6c757d;
}

/* Specifications Table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.spec-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.spec-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    width: 30%;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* Shipping Info */
.shipping-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Related Products */
.related-products-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .product-grid {
        gap: 3rem;
    }

    .product-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        position: static;
    }

    .product-info {
        padding: 0;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-price .price {
        font-size: 1.5rem;
    }

    .tab-headers {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        text-align: left;
        border-bottom: 1px solid #e9ecef;
    }

    .tab-btn.active {
        border-bottom-color: var(--primary);
    }

    .shipping-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-item img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .product-main-section {
        padding: 2rem 0;
    }

    .product-details-section {
        padding: 2rem 0;
    }

    .related-products-section {
        padding: 2rem 0;
    }

    .product-actions .quantity {
        display: block;
        margin-bottom: 1rem;
    }

    .product-actions .quantity input {
        width: 100%;
    }

    .product-actions .single_add_to_cart_button {
        width: 100%;
    }

    .social-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-info .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group input,
    .input-group button {
        width: 100%;
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .footer-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }

    .footer-menu {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .footer-menu li {
        margin: 0.5rem 1rem;
    }

    .contact-list {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .site-info .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .site-info p {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Modern WooCommerce Checkout Styles
   ========================================================================== */
.woocommerce-checkout #customer_details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.woocommerce-checkout h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
    position: relative;
    font-weight: 700;
}

.woocommerce-checkout h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: var(--secondary);
}

.woocommerce-checkout form .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-checkout form .form-row label {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.select2-container--default .select2-selection--single {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: #f9fafb;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 15px;
}

.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row textarea:focus,
.select2-container--default.select2-container--open .select2-selection--single {
    background-color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
    outline: none;
}

/* Bireysel Kurumsal Radio Buttons Customizing */
.parcabez-customer-type {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem !important;
}

.parcabez-customer-type label {
    margin-bottom: 0 !important;
}

.parcabez-customer-type input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.2);
    cursor: pointer;
    accent-color: var(--secondary);
}

/* Order Review Section (Sağ Taraf - Sepet Özeti) */
#order_review_heading {
    margin-top: 3rem;
}

#order_review {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-top: 4px solid var(--secondary);
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: none;
    margin-bottom: 2rem;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-main);
}

.woocommerce-checkout-review-order-table thead th {
    background: #f8fafc;
    font-weight: 700;
    color: var(--primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.woocommerce-checkout-review-order-table tfoot th {
    font-weight: 700;
    text-align: right;
    padding-right: 1.5rem;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    border-bottom: none;
    padding-top: 2rem;
}

/* Payment Section */
#payment {
    background: #f8fafc !important;
    border-radius: 8px;
    padding: 1.5rem !important;
    border: 1px solid #e2e8f0;
}

#payment ul.payment_methods {
    border-bottom: 1px solid #cbd5e1 !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

#payment li.payment_method {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    padding: 1rem;
    transition: all 0.3s;
}

#payment li.payment_method:hover {
    box-shadow: var(--shadow-sm);
    border-color: #cbd5e1;
}

#payment .payment_box {
    background: #f1f5f9 !important;
    color: var(--text-light) !important;
    border-radius: 6px;
    margin-top: 1rem !important;
    box-shadow: none !important;
}

#payment .payment_box::before {
    border-bottom-color: #f1f5f9 !important;
}

#payment .place-order {
    padding: 0 !important;
    background: transparent !important;
}

button#place_order {
    display: block;
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--btn-orange);
    color: white;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.3);
    margin-top: 1.5rem;
}

button#place_order:hover {
    background: #e65600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 96, 0, 0.4);
}

/* Responsive Checkouts */
@media (min-width: 992px) {
    .woocommerce-checkout form.checkout {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
        align-items: start;
    }

    #order_review_heading {
        margin-top: 0;
    }

    .woocommerce-checkout #customer_details {
        margin-bottom: 0;
    }
}