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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.5;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.header-item:hover {
    background: #e8e8e8;
}

.header-item i {
    font-size: 18px;
    color: #2d5a27;
}

.header-item.whatsapp {
    background: #25d366;
    color: #fff;
}

.header-item.whatsapp i {
    color: #fff;
}

.header-item.whatsapp:hover {
    background: #1da851;
}

/* Marquee */
.marquee-container {
    background: #2d5a27;
    padding: 10px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    animation: marquee 15s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
    white-space: nowrap;
}

.marquee-content span {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marquee-content i {
    color: rgba(255,255,255,0.9);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c43 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Logo varsa yazıyı gizle */
.logo:has(img) .logo-text {
    display: none;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-text span {
    color: #2d5a27;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
}

.contact-item i {
    color: #2d5a27;
    font-size: 18px;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    font-size: 13px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2d5a27;
}

.breadcrumb span {
    margin: 0 8px;
    color: #ccc;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px 40px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Product Gallery */
.product-gallery {
    display: flex;
    gap: 16px;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb {
    width: 70px;
    height: 70px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #999;
}

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

.thumb:hover, .thumb.active {
    border-color: #2d5a27;
}

.gallery-main {
    flex: 1;
    position: relative;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-image p {
    margin-top: 16px;
    color: #999;
    font-size: 14px;
}

.image-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e53935;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: #2d5a27;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-text {
    font-size: 13px;
    color: #666;
}

/* Price Section */
.price-section {
    background: #f8faf8;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.discount-rate {
    background: #e53935;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d5a27;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 13px;
    color: #666;
}

.price-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-info i {
    color: #2d5a27;
}

.installment-highlight {
    background: #2d5a27;
    color: #fff !important;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.installment-highlight i {
    color: #fff !important;
}

.installment-detail {
    animation: fadeIn 0.3s ease-in;
}

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

/* Color Selection */
.option-section {
    margin-bottom: 24px;
}

.option-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.option-label span {
    font-weight: 400;
    color: #666;
}

.color-options {
    display: flex;
    gap: 12px;
}

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

.color-option {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
    border: 3px solid transparent;
}

.color-option:hover {
    transform: scale(1.05);
}

.color-option.active {
    border-color: #2d5a27;
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.color-name {
    font-size: 11px;
    margin-top: 6px;
    color: #666;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c43 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.35);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.trust-badge {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    background: #f9f9f9;
    border-radius: 8px;
}

.trust-badge i {
    font-size: 20px;
    color: #2d5a27;
    margin-bottom: 6px;
}

.trust-badge p {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
}

.trust-badge strong {
    display: block;
    color: #333;
    font-size: 12px;
    margin-bottom: 2px;
}

/* Payment Section */
.payment-section {
    padding: 14px;
    background: #fff8e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-section i {
    color: #2d5a27;
    font-size: 18px;
}

.payment-section p {
    font-size: 13px;
    color: #666;
}

.payment-section strong {
    color: #333;
}

/* Shipping Compact */
.shipping-compact {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.shipping-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #555;
}

.shipping-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.shipping-row:first-child {
    padding-top: 0;
}

.shipping-row i {
    color: #2d5a27;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.shipping-row strong {
    color: #333;
}

/* Product Details - Simplified */
.product-details {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.detail-section {
    margin-bottom: 32px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2d5a27;
    display: inline-block;
}

.detail-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.spec-item {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.spec-item .label {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.spec-item .value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.feature-item i {
    color: #2d5a27;
    font-size: 16px;
}

/* Feature Groups */
.feature-group {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
    border-left: 4px solid #2d5a27;
}

.feature-group:last-child {
    margin-bottom: 0;
}

.feature-group-title {
    font-size: 15px;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-group-title i {
    font-size: 18px;
}

.feature-group-content {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Shipping Info */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.shipping-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 8px;
}

.shipping-item i {
    font-size: 24px;
    color: #2d5a27;
}

.shipping-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
}

.shipping-item p {
    font-size: 13px;
    color: #666;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d5a27 0%, #1e3d1a 100%);
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}

.footer-center {
    display: flex;
    gap: 30px;
}

.footer-center a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-center a:hover {
    color: #fff;
}

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

.social-links a {
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #fff;
}

.footer-address {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
}

.footer-address i {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
}

.footer-txtgarden {
    max-width: 600px;
    margin: 24px auto 0;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    text-align: center;
}

.footer-txtgarden a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-txtgarden a:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.footer-txtgarden strong {
    font-weight: 700;
    color: #fff;
}

/* Mobile Fixed Bar */
.mobile-fixed-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px 12px;
    gap: 10px;
    z-index: 1000;
    flex-direction: row;
    align-items: center;
}

.mobile-fixed-bar .btn-primary {
    flex: 1;
    padding: 14px 16px;
    font-size: 14px;
    white-space: nowrap;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-fixed-bar .header-item.whatsapp {
    flex: 1;
    justify-content: center;
    padding: 14px 16px;
    font-size: 14px;
    white-space: nowrap;
    height: 48px;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 968px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        flex-direction: column-reverse;
    }

    .gallery-thumbs {
        flex-direction: row;
        justify-content: center;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-list {
        grid-template-columns: 1fr;
    }

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

    .header-main {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* KDV ve Taksit bilgisini mobilde alt alta yap */
    .price-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Taksit detayı mobilde daha küçük font */
    .installment-detail {
        padding: 10px !important;
    }

    .installment-detail > div:first-child {
        font-size: 13px !important;
    }

    .installment-detail > div:first-child span {
        font-size: 16px !important;
    }

    .installment-detail > div:last-child {
        font-size: 12px !important;
    }

    /* Mobilde logo ortalı */
    .logo {
        justify-content: center;
        width: 100%;
    }

    .logo img {
        max-width: 150px;
    }

    .header-right {
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .header-item {
        padding: 10px 14px;
        font-size: 13px;
    }

    /* Mobilde header'daki WhatsApp'ı gizle (bottom bar'da var) */
    .header-right .header-item.whatsapp {
        display: none;
    }

    .mobile-fixed-bar {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }

    .action-buttons {
        display: none;
    }
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-center {
        flex-direction: column;
        gap: 12px;
    }
}

/* Müşteri Değerlendirmeleri */
.reviews-section {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.reviews-section .section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-section .section-title i {
    color: #ffc107;
}

.reviews-summary {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.big-rating {
    font-size: 56px;
    font-weight: 700;
    color: #2d5a27;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars-large {
    font-size: 24px;
    color: #ffc107;
    margin-bottom: 8px;
}

.rating-stars-large i {
    margin: 0 2px;
}

.summary-text {
    font-size: 14px;
    color: #666;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #2d5a27;
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c43 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

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

.author-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    color: #28a745;
    font-size: 14px;
}

.author-location {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-location i {
    font-size: 11px;
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.review-rating {
    font-size: 16px;
    color: #ffc107;
}

.review-rating i {
    margin: 0 1px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-content {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 20px;
    }

    .reviews-summary {
        padding: 20px;
    }

    .big-rating {
        font-size: 42px;
    }

    .rating-stars-large {
        font-size: 20px;
    }

    .review-card {
        padding: 15px;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
    }

    .review-meta {
        align-items: flex-start;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .author-name {
        font-size: 15px;
    }
}

/* Pagination (Sayfalama) */
.reviews-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.reviews-pagination nav {
    display: flex;
    gap: 5px;
}

.reviews-pagination .pagination {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.reviews-pagination .page-item {
    display: inline-block;
}

.reviews-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 6px 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    line-height: 1;
}

.reviews-pagination .page-link:hover {
    background: #f5f5f5;
    border-color: #2d5a27;
    color: #2d5a27;
    transform: translateY(-1px);
}

.reviews-pagination .page-item.active .page-link {
    background: #2d5a27;
    border-color: #2d5a27;
    color: #fff;
}

.reviews-pagination .page-item.active .page-link:hover {
    background: #1e3d1a;
    transform: translateY(-1px);
}

.reviews-pagination .page-item.disabled .page-link {
    background: #f8f8f8;
    border-color: #e0e0e0;
    color: #ccc;
    cursor: not-allowed;
}

.reviews-pagination .page-item.disabled .page-link:hover {
    transform: none;
}

@media (max-width: 768px) {
    .reviews-pagination .page-link {
        min-width: 32px;
        height: 32px;
        padding: 5px 8px;
        font-size: 13px;
    }
    
    .reviews-pagination {
        margin-top: 20px;
    }
}

/* Yorum Ekleme Formu */
.add-review-section form button[type="submit"]:hover {
    background: #1e3d1a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
}

.star-rating i {
    transition: all 0.2s;
}

.star-rating i:hover {
    transform: scale(1.1);
}

.product-rating:hover {
    opacity: 0.8;
    transition: opacity 0.2s;
}

@media (max-width: 768px) {
    .add-review-section form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}
