:root {
    --primary-color: #74a89c;
    --secondary-color: #f8f3eb;
    --accent-color: #e7b7a2;
    --text-color: #3a3a3a;
    --light-text: #727272;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Stilleri - Güncellenmiş Boyutlar */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 80px; /* 50px'den 80px'e yükseltildi */
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .logo img {
        max-height: 70px; /* Tablet boyutu için */
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height: 60px; /* Mobil boyutu için */
    }
}

@media (max-width: 576px) {
    .logo img {
        max-height: 50px; /* Küçük mobil boyutu için */
    }
}

/* Alert Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--light-text);
}

.contact-info a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.social-icons a {
    color: var(--light-text);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icons a {
    color: var(--text-color);
    font-size: 18px;
    transition: color 0.3s;
    position: relative;
}

.nav-icons a:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 11px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 18px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.mobile-menu {
    display: none;
    background-color: var(--white);
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 5px 0;
}

.search-panel {
    display: none;
    background-color: var(--white);
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.search-panel form {
    display: flex;
    position: relative;
}

.search-panel input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
    font-size: 14px;
}

.search-panel button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--light-text);
}

.search-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--light-text);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.slide-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    padding: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
}

.slide-subtitle {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.2;
}

.slide-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--light-text);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background-color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #5e9385;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.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(--white);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-subtitle {
    color: var(--light-text);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s;
}

.product-card:hover .product-overlay {
    bottom: 0;
}

.product-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.product-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-content {
    padding: 20px;
}

.product-category {
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-title a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.old-price {
    font-size: 14px;
    color: var(--light-text);
    text-decoration: line-through;
    margin-left: 8px;
}

.product-rating {
    color: #ffc107;
    font-size: 14px;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

.no-products {
    text-align: center;
    color: var(--light-text);
    grid-column: 1 / -1;
    padding: 30px;
}

/* Categories */
.categories {
    background-color: var(--secondary-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    color: var(--white);
}

.category-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.category-link {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.category-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.category-link:hover {
    color: var(--accent-color);
}

.category-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Newsletter */
.newsletter {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 0 25px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #d39b86;
}

/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    font-size: 16px;
    color: var(--primary-color);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: var(--light-text);
}

.payment-methods img {
    height: 25px;
    margin-left: 10px;
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    background-color: #f9f9f9;
    padding: 15px 0;
    margin-bottom: 30px;
}
.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb-item {
    font-size: 14px;
}
.breadcrumb-item:not(:first-child)::before {
    content: '/';
    margin: 0 10px;
    color: var(--light-text);
}
.breadcrumb-item a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-item a:hover {
    color: var(--primary-color);
}
.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Shop Section Styles */
.shop-section {
    padding: 60px 0;
}
.shop-header {
    margin-bottom: 40px;
}
.shop-title {
    font-size: 32px;
    margin-bottom: 15px;
}
.shop-description {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.7;
}
.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}
.shop-sidebar {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.sidebar-widget {
    padding: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.sidebar-widget:last-child {
    border-bottom: none;
}
.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}
.category-list {
    list-style: none;
}
.category-list li {
    margin-bottom: 10px;
}
.category-list li:last-child {
    margin-bottom: 0;
}
.category-list li a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    padding: 5px 0;
    transition: color 0.3s, transform 0.3s;
}
.category-list li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}
.category-list li.active a {
    color: var(--primary-color);
    font-weight: 500;
}
.price-filter-form .price-inputs {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.price-input {
    flex: 1;
}
.price-input label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--light-text);
}
.input-wrap {
    position: relative;
}
.currency {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}
.price-input input {
    width: 100%;
    padding: 8px 8px 8px 25px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.price-separator {
    margin: 0 10px;
    color: var(--light-text);
}
.price-slider-container {
    margin-bottom: 20px;
    padding: 0 5px;
}
.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}
.btn-sm {
    padding: 8px 15px;
    font-size: 13px;
}
.shop-content {
    min-height: 500px;
}
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.product-count {
    font-size: 14px;
    color: var(--light-text);
}
.product-sorting label {
    margin-right: 10px;
    font-size: 14px;
    color: var(--light-text);
}
.product-sorting select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: var(--white);
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 5px;
}
.page-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--white);
    border: 1px solid #ddd;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}
.page-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.page-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.no-products {
    text-align: center;
    padding: 50px 0;
    color: var(--light-text);
}
.no-products p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* NoUiSlider Custom Styling */
.noUi-connect {
    background-color: var(--primary-color);
}
.noUi-horizontal {
    height: 6px;
}
.noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    right: -9px;
    top: -6px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
    cursor: pointer;
}
.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

/* Responsive Adjustments for Shop Page */
@media (max-width: 992px) {
    .shop-container {
        grid-template-columns: 1fr;
    }
    .shop-sidebar {
        order: 2;
    }
    .shop-content {
        order: 1;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .price-inputs {
        flex-direction: column;
        gap: 15px;
    }
    .price-separator {
        display: none;
    }
}

/* Ürün Detay Sayfası Stilleri */
.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    text-align: center;
}

.product-main-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
}

.product-thumbnail:hover, 
.product-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    position: relative;
}

.product-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.product-rating {
    display: flex;
    align-items: center;
}

.product-rating i {
    color: #ffc107;
    margin-right: 2px;
}

.rating-count {
    color: var(--light-text);
    font-size: 14px;
    margin-left: 5px;
}

.product-category {
    font-size: 14px;
    color: var(--light-text);
}

.product-category a {
    color: var(--primary-color);
    text-decoration: none;
}

.product-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stock-status {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.in-stock {
    color: #28a745;
}

.out-of-stock {
    color: #dc3545;
}

.stock-status i {
    margin-right: 5px;
}

.product-description {
    margin-bottom: 30px;
    color: var(--light-text);
    line-height: 1.6;
}

.product-quantity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-quantity label {
    margin-right: 15px;
    font-weight: 500;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background-color: var(--secondary-color);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.qty-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.qty-input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-size: 16px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart:hover {
    background-color: #5d8a7e;
}

.add-to-cart i {
    margin-right: 8px;
}

.add-to-wishlist {
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 25px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.add-to-wishlist:hover {
    background-color: var(--primary-color);
    color: white;
}

.add-to-wishlist i {
    margin-right: 8px;
}

.product-marketplace {
    margin-bottom: 30px;
}

.product-marketplace h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.marketplace-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.marketplace-link {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s;
}

.marketplace-link:hover {
    background-color: var(--accent-color);
    color: white;
}

.marketplace-link span {
    margin-right: 5px;
}

.product-meta-info {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.meta-item {
    display: flex;
    margin-bottom: 10px;
}

.meta-label {
    font-weight: 500;
    width: 100px;
    color: var(--text-color);
}

.meta-value {
    color: var(--light-text);
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.product-tag {
    background-color: var(--secondary-color);
    padding: 3px 8px;
    border-radius: 3px;
    color: var(--text-color);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.product-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-share a {
    color: var(--light-text);
    font-size: 16px;
    margin-right: 10px;
    transition: color 0.3s;
}

.product-share a:hover {
    color: var(--primary-color);
}

.product-tabs {
    margin-bottom: 50px;
}

.nav-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.nav-item {
    margin-right: 5px;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

#description {
    line-height: 1.8;
    color: var(--text-color);
}

.additional-info-table {
    width: 100%;
    border-collapse: collapse;
}

.additional-info-table th, 
.additional-info-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.additional-info-table th {
    width: 30%;
    font-weight: 500;
    color: var(--text-color);
}

.additional-info-table td {
    color: var(--light-text);
}

.reviews-wrapper {
    padding: 20px 0;
}

.reviews-list {
    margin-bottom: 40px;
}

.review-item {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.review-date {
    font-size: 12px;
    color: var(--light-text);
}

.review-rating i {
    color: #ffc107;
    margin-right: 2px;
}

.review-content p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.no-reviews {
    color: var(--light-text);
    text-align: center;
    padding: 20px;
}

.review-form-wrapper {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
}

.review-form-wrapper h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-color);
}

.rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-option {
    position: relative;
    margin-right: 5px;
}

.rating-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.rating-option label {
    cursor: pointer;
    color: #e0e0e0;
    font-size: 24px;
    transition: color 0.3s;
    margin-bottom: 0;
}

.rating-option:hover label,
.rating-option:hover ~ .rating-option label,
.rating-option input:checked ~ label {
    color: #ffc107;
}

.review-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
}

.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.review-form button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.review-form button:hover {
    background-color: #5d8a7e;
}

.login-to-review {
    text-align: center;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    color: var(--text-color);
}

.login-to-review a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-to-review a:hover {
    text-decoration: underline;
}

.related-products {
    margin-top: 50px;
}

/* Responsive Styling for Product Detail */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart, .add-to-wishlist {
        width: 100%;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .nav-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .nav-item {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .nav-link {
        border: 1px solid #e0e0e0;
        border-radius: 4px;
    }
    
    .nav-link.active {
        border-color: var(--primary-color);
    }
}

/* Shop Section Styles - Düzeltmeler */
.shop-section {
    padding: 60px 0;
}

.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Ürün Kartları İyileştirmeleri */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Fiyat Filtresi İyileştirmeleri */
.price-filter-form .price-inputs {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.price-input {
    flex: 1;
}

.price-input input {
    width: 100%;
    padding: 8px 8px 8px 25px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.price-slider-container {
    margin: 15px 0 25px;
    padding: 0 5px;
}

/* Ürün Derecelendirme Yıldızları */
.product-rating {
    color: #ffc107;
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* Ürün Fiyatlandırması */
.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Sayfalama İyileştirmeleri */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 8px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    min-width: 40px;
    background-color: var(--white);
    border: 1px solid #ddd;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

/* Responsive Ayarlamalar */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-container {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        order: 2;
    }
    
    .shop-content {
        order: 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .price-inputs {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-separator {
        display: none;
    }
}

/* NoUiSlider İyileştirmeleri */
.noUi-connect {
    background-color: var(--primary-color);
}

.noUi-horizontal {
    height: 6px;
}

.noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    right: -9px;
    top: -6px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
    cursor: pointer;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-story {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-color);
}

.about-story p {
    margin-bottom: 25px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    color: var(--light-text);
    transition: color 0.3s;
}

.team-social a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Cart Page Styles */
.cart-section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 40px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--text-color);
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 40px;
    padding: 20px 0;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.cart-item-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-item-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.cart-item-title a:hover {
    color: var(--primary-color);
}

.cart-item-price, .cart-item-total {
    font-weight: 600;
    color: var(--primary-color);
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: fit-content;
}

.qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.qty-btn:hover {
    background-color: #e0e0e0;
}

.qty-input {
    width: 40px;
    height: 30px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
}

.remove-item {
    color: #dc3545;
    font-size: 16px;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #c82333;
}

.cart-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cart-summary {
    height: fit-content;
}

.cart-summary-inner {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 20px;
}

.summary-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-label {
    color: var(--light-text);
}

.summary-value {
    font-weight: 600;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.free-shipping {
    color: #28a745;
    font-weight: 600;
}

.free-shipping-message {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 14px;
}

.free-shipping-message p {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
}

.free-shipping-message i {
    color: var(--primary-color);
}

.shipping-progress {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.shipping-progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.checkout-button {
    margin: 20px 0;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.payment-icons img {
    height: 30px;
}

.empty-cart {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.empty-cart-icon {
    font-size: 60px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        order: 1;
    }
    .cart-items-container {
        order: 2;
    }
}

@media (max-width: 768px) {
    .cart-header {
        display: none;
    }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }
    .cart-item-info {
        grid-column: 1 / -1;
    }
    .cart-item-price, .cart-item-quantity, .cart-item-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .cart-item-price::before {
        content: 'Fiyat:';
        font-weight: normal;
        color: var(--light-text);
    }
    .cart-item-quantity::before {
        content: 'Adet:';
        font-weight: normal;
        color: var(--light-text);
    }
    .cart-item-total::before {
        content: 'Toplam:';
        font-weight: normal;
        color: var(--light-text);
    }
    .cart-item-remove {
        text-align: right;
    }
    .cart-actions {
        flex-direction: column;
    }
    .cart-actions .btn {
        width: 100%;
    }
}

/* Checkout Sayfası Stilleri */
.checkout {
    padding: 60px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.checkout-details {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.checkout-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.checkout-title i {
    margin-right: 10px;
    color: var(--primary);
}

.checkout-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.checkout-section:last-child {
    border-bottom: none;
}

.checkout-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    padding: 0 60px;
}

.checkout-progress:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    font-size: 18px;
    color: #757575;
    position: relative;
}

.progress-step.active .step-number {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.progress-step.complete .step-number {
    background-color: var(--success);
    border-color: var(--success);
    color: #fff;
}

.progress-step.complete .step-number:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.step-title {
    font-size: 16px;
    font-weight: 500;
    color: #757575;
}

.progress-step.active .step-title {
    color: var(--primary);
    font-weight: 600;
}

.progress-step.complete .step-title {
    color: var(--success);
    font-weight: 600;
}

.address-selection h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.addresses-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.address-item {
    position: relative;
}

.address-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.address-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
}

.address-item input[type="radio"]:checked + .address-card {
    border-color: var(--primary);
    background-color: rgba(var(--primary-rgb), 0.05);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-header h4 {
    font-size: 16px;
    font-weight: 600;
}

.address-type {
    font-size: 12px;
    background-color: #f0f0f0;
    color: #333;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.address-content p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
    line-height: 1.5;
}

.no-address {
    background-color: #f9f9f9;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px dashed #ddd;
}

.no-address p {
    margin-bottom: 15px;
    color: #666;
}

.address-actions {
    margin-top: 20px;
}

.form-group-check {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.form-group-check input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.form-group-check label {
    font-size: 15px;
    cursor: pointer;
}

.payment-methods {
    margin-top: 20px;
}

.payment-method {
    margin-bottom: 20px;
}

.payment-method:last-child {
    margin-bottom: 0;
}

.payment-method-label {
    display: block;
    position: relative;
    cursor: pointer;
}

.payment-method-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
}

.payment-method-label input[type="radio"]:checked + .payment-header {
    border-color: var(--primary);
    background-color: rgba(var(--primary-rgb), 0.05);
}

.payment-icon {
    font-size: 24px;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
}

.payment-info {
    flex: 1;
}

.payment-title {
    font-size: 16px;
    font-weight: 600;
}

.payment-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.payment-content {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
    display: none;
}

.payment-info-text ul {
    margin: 15px 0 15px 20px;
    padding: 0;
}

.payment-info-text li {
    margin-bottom: 8px;
    color: #666;
}

.payment-card-logos {
    text-align: center;
    margin-top: 15px;
}

.payment-card-logos img {
    max-width: 100%;
    height: auto;
}

.bank-accounts {
    margin-top: 15px;
}

.bank-account {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bank-account:last-child {
    margin-bottom: 0;
}

.bank-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background-color: #f1f1f1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bank-logo img {
    max-width: 80%;
    max-height: 80%;
}

.bank-logo i {
    font-size: 24px;
    color: #666;
}

.bank-info {
    flex: 1;
}

.bank-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.account-number {
    font-size: 13px;
    color: #666;
}

.iban-copy {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.iban-text {
    font-size: 13px;
    font-family: monospace;
    letter-spacing: 1px;
    background-color: #f8f9fa;
    padding: 6px 10px;
    border-radius: 4px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    color: #333;
}

.copy-btn:hover {
    background-color: #e0e0e0;
}

.copy-btn.copied {
    background-color: var(--success);
    color: #fff;
}

.no-bank-accounts {
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.order-summary {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: sticky;
    top: 30px;
}

.order-summary-title {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.order-items {
    margin-bottom: 25px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order-item-title {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.4;
}

.order-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-item-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.order-item-quantity {
    font-size: 13px;
    color: #666;
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 20px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.order-summary-label {
    color: #666;
}

.order-summary-value {
    font-weight: 600;
}

.free-shipping {
    color: var(--success);
    font-weight: 500;
}

.shipping-info {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.order-summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 18px;
    font-weight: 700;
}

.total .order-summary-value {
    color: var(--primary);
}

.checkout-button {
    margin-top: 25px;
}

.checkout-button .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-button .btn i {
    font-size: 18px;
}

/* Adres Formu */
.address-form {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.form-title {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.form-title i {
    margin-right: 10px;
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
}

/* Alert Stilleri */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.alert-danger {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #b91c1c;
}

.alert-success {
    background-color: #f0fdf4;
    border-left: 4px solid #22c55e;
    color: #15803d;
}

.alert-icon {
    margin-right: 15px;
    font-size: 20px;
    margin-top: 2px;
}

.alert-content strong {
    display: block;
    margin-bottom: 5px;
}

.alert ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.alert ul li {
    margin-bottom: 5px;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .order-summary {
        position: static;
        margin-bottom: 30px;
    }
    .checkout-progress {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 20px;
    }
    .addresses-list {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .checkout-progress {
        padding: 0;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .step-title {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .checkout-progress {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-left: 20px;
    }
    .checkout-progress:before {
        top: 0;
        bottom: 0;
        left: 20px;
        right: auto;
        width: 2px;
        height: 100%;
    }
    .progress-step {
        display: flex;
        align-items: center;
        width: 100%;
    }
    .step-number {
        margin: 0 15px 0 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.close-modal {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--light-text);
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .addresses-list {
        grid-template-columns: 1fr;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px; /* Sabit yükseklik belirtiyoruz */
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bu resmin kırpılmadan kapsamasını sağlar */
    object-position: center;
    top: 0;
    left: 0;
}

.slide-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    margin-left: 10%;
}

.slide-subtitle {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.2;
}

.slide-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--light-text);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background-color: var(--white);
}

/* Admin Panel Slider Image Cell Styles */
.slider-image-cell {
    width: 150px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #eee;
}

.slider-image-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
    font-size: 12px;
}

/* Ödeme İkonları Stilleri */
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-icons i {
    font-size: 28px;
    color: #444; /* Füme renk */
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-color);
}

.fab.fa-cc-visa {
    color: #444;
}

.fab.fa-cc-mastercard {
    color: #444;
}

.fas.fa-credit-card {
    color: #444;
    position: relative;
}

/* Troy için özel stil */
.fas.fa-credit-card::after {
    content: "TROY";
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* Ürün Resmi Stil Düzeltmeleri */
.product-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 oranı için */
    overflow: hidden;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Resmi kırpmadan tam olarak sığdırır */
    object-position: center;
    padding: 15px; /* Resim etrafında biraz boşluk */
}

/* Ana görüntü konteynerini de düzelt */
.product-main-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* 1:1 oranı için */
    overflow: hidden;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.product-main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Resmi kırpmadan tam olarak sığdırır */
    object-position: center;
    padding: 15px; /* Resim etrafında biraz boşluk */
}

/* Küçük ürün resimleri (thumbnail) için */
.product-thumbnails {
    display: flex;
    margin-top: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary-color);
}

/* Ürün galerisi iyileştirmeleri */
.product-gallery {
    position: relative;
}

/* İlgili ürünler kısmında da 1:1 oranını koruyalım */
.related-products .product-image {
    position: relative;
    padding-bottom: 100%; /* 1:1 oranı */
    overflow: hidden;
}

.related-products .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Mobil cihazlar için duyarlı tasarım */
@media (max-width: 768px) {
    .product-gallery {
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .product-thumbnails {
        justify-content: center;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}