/* Genel Sıfırlamalar */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Oswald', sans-serif; background-color: #f5f5f5; color: #333; }
a { text-decoration: none; }

/* SAYAÇ ALANI */
.countdown-banner {
    background-color: #1a273b; 
    color: #fff;
    text-align: center;
    padding: 20px 15px;
    border-bottom: 3px solid #c9a66b; 
}
.countdown-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.timer-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timer-numbers {
    background-color: #fff;
    color: #111;
    font-size: 32px;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 2px;
    line-height: 1.2;
    letter-spacing: 2px;
}
.timer-label {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 400;
}

/* ÜRÜN KARTLARI */
.product-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 15px;
}
.product-card {
    display: flex;
    background-color: #fff;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative; /* Linki kapsamak için */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    
    /* İsteğin olan arkaplan deseni */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='544' height='272' viewBox='0 0 160 80'%3E%3Cg fill='%23ededed' fill-opacity='0.3'%3E%3Cpolygon points='0 10 0 0 10 0'/%3E%3Cpolygon points='0 40 0 30 10 30'/%3E%3Cpolygon points='0 30 0 20 10 20'/%3E%3Cpolygon points='0 70 0 60 10 60'/%3E%3Cpolygon points='0 80 0 70 10 70'/%3E%3Cpolygon points='50 80 50 70 60 70'/%3E%3Cpolygon points='10 20 10 10 20 10'/%3E%3Cpolygon points='10 40 10 30 20 30'/%3E%3Cpolygon points='20 10 20 0 30 0'/%3E%3Cpolygon points='10 10 10 0 20 0'/%3E%3Cpolygon points='30 20 30 10 40 10'/%3E%3Cpolygon points='20 20 20 40 40 20'/%3E%3Cpolygon points='40 10 40 0 50 0'/%3E%3Cpolygon points='40 20 40 10 50 10'/%3E%3Cpolygon points='40 40 40 30 50 30'/%3E%3Cpolygon points='30 40 30 30 40 30'/%3E%3Cpolygon points='40 60 40 50 50 50'/%3E%3Cpolygon points='50 30 50 20 60 20'/%3E%3Cpolygon points='40 60 40 80 60 60'/%3E%3Cpolygon points='50 40 50 60 70 40'/%3E%3Cpolygon points='60 0 60 20 80 0'/%3E%3Cpolygon points='70 30 70 20 80 20'/%3E%3Cpolygon points='70 40 70 30 80 30'/%3E%3Cpolygon points='60 60 60 80 80 60'/%3E%3Cpolygon points='80 10 80 0 90 0'/%3E%3Cpolygon points='70 40 70 60 90 40'/%3E%3Cpolygon points='80 60 80 50 90 50'/%3E%3Cpolygon points='60 30 60 20 70 20'/%3E%3Cpolygon points='80 70 80 80 90 80 100 70'/%3E%3Cpolygon points='80 10 80 40 110 10'/%3E%3Cpolygon points='110 40 110 30 120 30'/%3E%3Cpolygon points='90 40 90 70 120 40'/%3E%3Cpolygon points='10 50 10 80 40 50'/%3E%3Cpolygon points='110 60 110 50 120 50'/%3E%3Cpolygon points='100 60 100 80 120 60'/%3E%3Cpolygon points='110 0 110 20 130 0'/%3E%3Cpolygon points='120 30 120 20 130 20'/%3E%3Cpolygon points='130 10 130 0 140 0'/%3E%3Cpolygon points='130 30 130 20 140 20'/%3E%3Cpolygon points='120 40 120 30 130 30'/%3E%3Cpolygon points='130 50 130 40 140 40'/%3E%3Cpolygon points='120 50 120 70 140 50'/%3E%3Cpolygon points='110 70 110 80 130 80 140 70'/%3E%3Cpolygon points='140 10 140 0 150 0'/%3E%3Cpolygon points='140 20 140 10 150 10'/%3E%3Cpolygon points='140 40 140 30 150 30'/%3E%3Cpolygon points='140 50 140 40 150 40'/%3E%3Cpolygon points='140 70 140 60 150 60'/%3E%3Cpolygon points='150 20 150 40 160 30 160 20'/%3E%3Cpolygon points='150 60 150 50 160 50'/%3E%3Cpolygon points='140 70 140 80 150 80 160 70'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
}
.product-card:hover { transform: scale(1.02); }
.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
/* Sol Görsel */
.product-image-wrap {
    flex: 0 0 50%;
    max-width: 50%;
}
.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sağ İçerik */
.product-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
}
.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.product-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Fiyatlandırma */
.price-wrap {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}
.new-price {
    font-size: 52px;
    font-weight: 700;
    color: #28a745; 
    line-height: 1;
}
.old-price {
    font-size: 22px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
}

/* Kargo Metni */
.benefits-text {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #c9a66b; 
    margin-bottom: 30px;
}

/* Buton */
.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    padding: 16px 20px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}
.btn-buy:hover {
    background-color: #333;
}

/* Sabit WhatsApp */
.wa-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}
.wa-sticky a {
    display: block;
    background-color: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50px;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.wa-sticky a:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}
.wa-sticky img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}
.wa-sticky:hover img {
    transform: scale(1.05);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
    }
    .product-image-wrap, .product-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .product-content {
        padding: 25px 20px;
    }
    .new-price {
        font-size: 42px;
    }
    .btn-buy {
        font-size: 16px;
    }
    .wa-sticky img {
        width: 120px;
    }
}

/* Ürün Sayfası Footer */
.product-footer {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    padding: 40px 20px;
    margin-top: 50px;
}
.product-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.p-footer-item {
    text-align: center;
}
.p-footer-item i {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    display: block;
}
.p-footer-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.p-footer-item p {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .product-footer-grid { grid-template-columns: repeat(2, 1fr); }
}