.product-container {
    padding: 0rem 2rem 2rem 2rem !important;
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg,
    #1a1500 0%,
    #221c00 25%,
    #2a2200 50%,
    #221c00 75%,
    #1a1500 100%
);
    font-family: 'Orbitron', sans-serif;
    color: white;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}
:root {
/* Ana renkler */
--color-primary: #FFD700;
--color-text: #ccc;
--color-background: rgba(0, 0, 0, 0.2);

/* Glow efektleri */
--glow-primary: 0 0 15px rgba(255, 215, 0, 0.2);
--glow-strong: 0 0 20px rgba(255, 215, 0, 0.4);
--glow-primary-strong: 0 0 20px rgba(255, 215, 0, 0.8);
--glow-button: 0 0 15px rgba(255, 215, 0, 0.2);
--glow-hover: 0 0 15px rgba(255, 215, 0, 0.3);

/* Border renkleri */
--border-light: rgba(255, 215, 0, 0.1);
--border-medium: rgba(255, 215, 0, 0.2);
--border-strong: rgba(255, 215, 0, 0.3);
--border-primary: rgba(255, 215, 0, 0.2);
--border-hover: rgba(255, 215, 0, 0.3);
--border-active: rgba(255, 215, 0, 0.4);

/* Background gradients */
--bg-overlay: rgba(0, 0, 0, 0.2);
--bg-blur: blur(10px);
--bg-gradient: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.3));
--bg-gradient-hover: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.4));

/* Opacity değerleri */
--opacity-light: 0.8;
--opacity-medium: 0.5;
--opacity-dark: 0.2;
}  

.product-details {
gap: 20px; /* Grid elementleri arası boşluk */
display: grid;
grid-template-columns: 1fr 350px;
gap: 20px;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

.product-details-left {
display: flex;
flex-direction: column;
gap: 1rem;
}

.product-details-right {
display: flex;
flex-direction: column;
}
.warranty-container {
margin-top: 0; /* Üstteki boşluğu sıfırla */
z-index: 1000; /* Yüksek bir z-index değeri */

height: fit-content;
position: sticky;
top: 20px;
}
.warranty-header-left {
display: flex;
align-items: center;
gap: 20px;
}
.warranty-header {
border-radius: 12px;
display: flex;
align-items: center;
justify-content: space-between; /* İçeriği iki yana yayar */
padding: 15px;
transition: all 0.3s ease;
background: var(--color-background);
margin: 0;
border: none;
border-top-left-radius: 12px;
bottom: 0px;
border-top-right-radius: 12px;
border: 1px solid rgba(255, 215, 0, 0.1);
cursor: pointer;
position: relative;
z-index: 101; /* En üstte olması için */
}

.warranty-content {
max-height: 0;
opacity: 0;
overflow: hidden;
transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
pointer-events: none; /* Animasyon sırasında tıklamayı engelle */
position: relative;
z-index: 100;

}

.warranty-content.active {
max-height: 1000px;
opacity: 1;
pointer-events: auto;
z-index: 100;
}

/* İkonlar ve metinler için stiller */
.warranty-icon {
width: 24px;
height: 24px;
fill: #FFD700;
filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}
/* Text container için ek stil */
.warranty-text {
flex: 1;
display: flex;
flex-direction: column;
}

.warranty-text h3 {
color: #FFD700;
font-size: 15px;
margin: 0 0 6px 0;
font-weight: 600;
}

.warranty-text p {
color: #e0e0e0;
font-size: 13px;
line-height: 1.5;
opacity: 0.9;
margin: 0;
}

/* Son item'ın altındaki boşluğu kaldırmak için */
.warranty-item:last-child {
background-color: var(--color-background);
border-bottom: 1px solid rgba(255, 215, 0, 0.1);
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
padding-bottom: 15px;
margin-bottom: 0;
}
/* Hover efektleri */


/* Tüm default spacing'leri sıfırlıyoruz */
.warranty-container * {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Content içindeki elementler için spacing kontrolü */
.warranty-content > * {
border-top: 1px solid rgba(255, 215, 0, 0.05);
}

.warranty-content > *:first-child {
border-top: none;
}

/* Mobil görünüm */
@media screen and (max-width: 768px) {
.product-details {
    grid-template-columns: 1fr;
}
}

/* Product info için ek düzenlemeler */
.product-info {
    margin-bottom: 65px;
    width: 100%;
    max-width: 400px;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* Mobil görünüm için media query */
@media screen and (max-width: 768px) {
    .product-container {
        padding: 0rem 1rem 1rem 1rem !important;
    }
    .product-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-image,
    .product-info {
        max-width: 100%;
width: 100%;
border-radius: 12px;
    }
    
    .product-image {
        margin-bottom: 1rem;
    }
}
ccc {
    display: contents;
}

ccc.ccc--converted {
    animation: ccc 0.7s ease-in-out;
}

@-webkit-keyframes ccc {
    from {
        background-color: yellow;
    }

    to {
        background-color: rgba(255, 255, 255, 0);
    }
}

/* Site background */
body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.site-background {
    position: fixed;
    top: 0;
    left: 0;
width: 100%;
    height: 100vh;
    background: linear-gradient(135deg,
        #1a1500 0%,
        #221c00 25%,
        #2a2200 50%,
        #221c00 75%,
        #1a1500 100%
    );
    z-index: -1;
}

/* Container ve ürün detayları için */
.container {
    position: relative;
    z-index: 1;
}

.product-details:hover {
    border-color: var(--border-active);
}

/* Buy Now butonu */
.buy-button {
    background: var(--bg-gradient);
    color: var(--color-primary);
    border: 1px solid var(--border-primary);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: var(--bg-gradient-hover);
    box-shadow: var(--glow-button);
    transform: translateY(-2px);
}

/* Footer butonları */
.custom-btn {
    background: var(--bg-gradient);
    color: var(--color-primary);
    border: 1px solid var(--border-primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discord-btn:hover, .custom-btn:hover {
    background: var(--bg-gradient-hover);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.quantity-control button:hover {
    background: var(--bg-gradient-hover);
    box-shadow: var(--glow-button);
}

/* Price ve total renkleri */
.price span, .total-price {
    color: var(--color-primary);
}
.arrow-icon {
width: 25px;
height: 15px;
transition: transform 0.3s ease;
fill: #FFD700;
}

.warranty-header.active .arrow-icon {
transform: rotate(180deg);
}
/* Stock rengi */
.stock {
    color: var(--color-primary);
}

/* Chrome için input number ok butonlarının stilini kaldırma */
.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox için input number ok butonlarının stilini kaldırma */
.quantity-control input[type=number] {
    -moz-appearance: textfield;
}

/* Focus durumunda çerçeveyi kaldırma */
.quantity-control input:focus {
    outline: none;
}

/* Feedback Section Styles */
.feedback-section {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 15px;
    box-sizing: border-box;
}


.feedback-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
}

/* Tek kalan son box için özel stil */
.feedback-wrapper .feedback-box:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    margin: 0 auto;
    max-width: 550px;
}

.feedback-box {
    width: 100%;
    max-width: 550px;
    background: linear-gradient(145deg, 
        rgba(82, 52, 0, 0.98) 0%,
        rgba(64, 38, 0, 0.98) 100%
    ) !important;
    border: 1px solid var(--border-light);
    padding: 2rem;
border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.feedback-box:hover {
    transform: translateY(-8px);
    border-color: var(--border-active);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
                var(--glow-primary);
}

/* Logo hover efektleri */
.feedback-box:hover .profile-picture {
    border-color: var(--border-active);
    box-shadow: var(--glow-primary);
    transform: scale(1.05);
    background: var(--bg-gradient);
}

.feedback-box:hover .initial-avatar {
    color: var(--color-primary);
    transform: scale(1.1);
    text-shadow: var(--glow-primary-strong);
}

/* Diğer hover efektleri */
.feedback-box:hover .customer-mail {
    color: var(--color-primary);
}

.feedback-box:hover .feedback-stars .star {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.feedback-content {
display: flex;
flex-direction: column;
    flex: 1;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-picture {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    transition: all 0.3s ease;
}

.profile-picture:hover {
    border-color: var(--border-active);
    box-shadow: var(--glow-primary);
    transform: scale(1.05);
}

.initial-avatar {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: var(--glow-primary);
    transition: all 0.3s ease;
}

.profile-picture:hover .initial-avatar {
    transform: scale(1.1);
    text-shadow: var(--glow-primary-strong);
    color: #FFF;
}

.customer-mail {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-style: italic;
    opacity: var(--opacity-light);
    text-align: center;
}

.feedback-stars {
    display: flex;
    gap: 0.2rem;
}

.feedback-text {
    text-align: center;
    margin: 1rem 0;
    padding: 0 1rem;
    flex: 1;
}

.date {
    text-align: center;
    color: var(--color-text);
    font-size: 0.85rem;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid var(--border-light);
}

/* Responsive tasarım */
@media (max-width: 1024px) {
    .feedback-section {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .feedback-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .feedback-box {
        max-width: 100%;
    }

    .feedback-wrapper .feedback-box:last-child:nth-child(odd) {
        grid-column: 1;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .feedback-section {
        padding: 0 10px;
    }

    .feedback-wrapper {
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .feedback-box {
        padding: 1.5rem;
    }
}

/* Hover Effects */
.feedback-box:hover .star {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.feedback-box:hover .customer-mail {
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.product-info {
    padding: 2rem;
border-radius: 12px;
    background: var(--color-background);
    backdrop-filter: var(--bg-blur);
}

.product-title {
font-size: 28px;
font-weight: 600;
color: #333;
margin-bottom: 16px;
position: relative;
text-align: center; /* Metni ortalar */
}

.product-title:after {
content: '';
position: absolute;
bottom: -6px;
left: 50%; /* Sol kenardan %50 uzaklık */
transform: translateX(-50%); /* Tam ortaya konumlandırma */
width: 40px;
height: 2px;
background-color: var(--color-primary);
filter: drop-shadow(0px 0px 5px rgba(255, 215, 0, 1));
}
.price-container, .total-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.price-label, .total-label {
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value, .total-value {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 600;
}

.stock-info {
    color: var(--color-text);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-primary);
    background: var(--bg-gradient);
    color: var(--color-primary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--bg-gradient-hover);
    transform: translateY(-2px);
}

#quantity {
    height: 40px;
    background: var(--color-background);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    color: var(--color-primary);
    text-align: center;
    font-size: 1.1rem;
}

.purchase-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: var(--bg-gradient);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.purchase-btn:hover {
    background: var(--bg-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-button);
}
.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #666!important;
    border: 2px solid #444!important;
    color: #ccc!important;
    
}
.price-container {
    display: flex;
    align-items: center;
    min-width: 200px;
}

.price-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-label::before {
    content: "⬤";
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: bold;
    text-shadow: var(--glow-primary);
    animation: pulse 2s infinite;
}

.price-spacer {
    flex: 1;
}

.product-info-box {
    background: var(--color-background);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1rem auto;
    box-shadow: 0 4px 12px var(--color-background);
    backdrop-filter: var(--bg-blur);
    max-width: 250px;
    width: 90%;
}

.available-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.quantity-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0.6rem 0;
}

.quantity-selector button {
    background: var(--bg-gradient);
    border: 1px solid var(--border-primary);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    background: var(--bg-gradient-hover);
    transform: translateY(-2px);
}

.quantity-selector input {
    background: var(--color-background);
    border: 1px solid var(--border-primary);
    color: var(--color-primary);
    width: calc(100% - 100px);
    height: 40px;
    text-align: center;
    font-size: 1.1rem;
    border-radius: 8px;
    outline: none;
}

.total-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    color: var(--color-primary);
    font-size: 1.1rem;
}

.price-info {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: var(--color-background);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 0.4rem;
}

.available-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: var(--color-background);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.available-label {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 500;
}

.available-value {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: var(--glow-primary);
    position: relative;
    padding: 0.3rem 0.8rem;
    background: var(--bg-gradient);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.available-value::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: var(--glow-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Sayı formatını düzenleme */
.available-value {
    font-family: 'Consolas', monospace;
    letter-spacing: 0.5px;
}

/* Hover efekti */
.available-value:hover {
    background: var(--bg-gradient-hover);
    border-color: var(--border-hover);
    transform: translateY(-1px);
    box-shadow: var(--glow-hover);
    transition: all 0.3s ease;
}

.stock-row {
    display: flex;
    justify-content: space-between;
    border-radius: 12px;
}

.stock-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stock-label::before {
    content: "⬤";
    color: var(--color-primary);
    font-size: 0.8rem;
    text-shadow: var(--glow-primary);
    animation: pulse 2s infinite;
}

.stock-value, .price-value {
    color: var(--color-primary);
    font-size: 1.1rem !important;
    font-weight: 600;
    font-family: 'Consolas', monospace;
    text-shadow: var(--glow-primary);
    background: var(--bg-gradient);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

@keyframes glow {
    0% {
        text-shadow: var(--glow-primary);
    }
    50% {
        text-shadow: var(--glow-strong);
    }
    100% {
        text-shadow: var(--glow-primary);
    }
}

/* Mobil için responsive ayarlar */
@media (max-width: 480px) {
    .product-info-box {
        padding: 1rem;
        width: 85%;
        max-width: 230px;
    }
}
.product-description {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.product-description h3 {
    color: #FFD700;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.product-description p {
color: var(--color-text);
margin-bottom: 1rem;
line-height: 1.6;
font-size: 1rem;
}

.product-description ul {
list-style: none;
padding: 0;
margin: 1rem 0;
}

.product-description ul li {
color: var(--color-text);
margin: 0.8rem 0;
padding-left: 1.5rem;
position: relative;
line-height: 1.4;
font-size: 1rem;
}

.product-description ul li:before {
content: "•";
color: var(--color-primary);
position: absolute;
left: 0;
top: 0;
font-size: 1.2rem;
}

/* Mobil görünüm için */
@media screen and (max-width: 768px) {
.product-description h3 {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}
.product-description {
    margin-top: 0.5rem;
    padding: 0.8rem;
}
}

.all-feedback-container {
text-align: center;
margin: 2rem 0;
padding: 1rem;
}

.view-all-btn {
display: inline-flex;
align-items: center;
gap: 1rem;
padding: 0.8rem 2rem;
background: var(--bg-gradient);
border: 1px solid var(--border-primary);
border-radius: 50px;
color: var(--color-primary);
text-decoration: none;
font-size: 1rem;
font-weight: 500;
letter-spacing: 0.5px;
transition: all 0.3s ease;
backdrop-filter: var(--bg-blur);
}

.view-all-btn:hover {
background: var(--bg-gradient-hover);
border-color: var(--border-hover);
transform: translateY(-2px);
}

/* Yeni ok animasyonu */
.arrow-animation {
display: flex;
align-items: center;
gap: 4px;
}

.arrow-animation span {
width: 8px;
height: 2px;
background: var(--color-primary);
border-radius: 1px;
transition: all 0.3s ease;
}

.arrow-animation span:last-child {
width: 8px;
height: 8px;
border-right: 2px solid var(--color-primary);
border-top: 2px solid var(--color-primary);
transform: rotate(45deg);
background: transparent;
}

/* Hover efekti */
.view-all-btn:hover .arrow-animation span:not(:last-child) {
width: 12px;
background: var(--color-primary);
opacity: var(--opacity-light);
}

.view-all-btn:hover .arrow-animation span:last-child {
    transform: rotate(45deg) scale(1.2);
}




/* Last Feedbacks için yeni stiller */
.last-feedbacks {
    position: sticky;
    top: 100px; /* Navbar'ın altında kalacak şekilde ayarlayın */
    margin-top: 2rem;
    position: relative;
    z-index: 1; /* Daha düşük bir z-index değeri */
}


.warranty-btn {
    width: 100%;
    font-family: 'Orbitron', sans-serif;
}


.warranty-header .warranty-icon {
    width: 24px;
    height: 24px;
    fill: #FFD700;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.warranty-header-text {
    display: flex;
    flex-direction: column;
}

.warranty-header-title {
    color: #FFD700;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.warranty-header-subtitle {
    color: #e0e0e0;
    font-size: 12px;
    opacity: 0.8;
}



.warranty-icon {
    width: 24px;
    height: 24px;
    fill: #FFD700;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.warranty-text h3 {
    color: #FFD700;
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 600;
}

.warranty-text p {
    color: #e0e0e0;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
}
.warranty-header.active{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#warrantyContent {
    background: transparent;
    border: none;
    box-shadow: none;
}


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

/* Başlık stili */
.product-title {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Liste stilleri */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-list li {
    color: #e0e0e0;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warranty-item {
    padding: 15px;
    border-bottom: none;
    border-left: 1px solid rgba(255, 215, 0, 0.1);
    border-right: 1px solid rgba(255, 215, 0, 0.1);
    background: var(--color-background);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-out;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.warranty-content.active .warranty-item {
    opacity: 1;
    transform: translateY(0);
}

/* Transition delay'ler aynı kalacak */
.warranty-content.active .warranty-item:nth-child(1) { transition-delay: 0.2s; }
.warranty-content.active .warranty-item:nth-child(2) { transition-delay: 0.3s; }
.warranty-content.active .warranty-item:nth-child(3) { transition-delay: 0.4s; }
.warranty-content.active .warranty-item:nth-child(4) { transition-delay: 0.5s; }

/* Kapanırken gecikme olmasın */
.warranty-content .warranty-item {
    transition-delay: 0s !important;
    display: flex;
    align-items: center;
    gap: 20px;
}
.warranty-icon-container {
flex-shrink: 0;
width: 24px;
height: 24px;
margin-top: 2px; /* İkonu metinle hizalamak için */
}


/* Header için stil */
.warranty-header {
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Feedback Section Styles */
.feedback-section {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.feedback-title {
    text-align: center;
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: var(--glow-primary);
    font-weight: 600;
}

.feedback-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1rem;
}

/* Tek kalan son card için özel stil */
.feedback-container .feedback-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    margin: 0 auto;
    max-width: 550px;
}

.feedback-card {
    width: 100%;
    max-width: 550px;
    background: linear-gradient(145deg, 
        rgba(82, 52, 0, 0.98) 0%,
        rgba(64, 38, 0, 0.98) 100%
    ) !important;
    border: 1px solid var(--border-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.feedback-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-active);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
                var(--glow-primary);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.user-initial {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: var(--glow-primary);
    transition: all 0.3s ease;
}

.feedback-card:hover .user-initial {
    border-color: var(--border-active);
    box-shadow: var(--glow-primary);
    transform: scale(1.05);
}

.user-email {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-style: italic;
    opacity: var(--opacity-light);
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.feedback-content {
    text-align: center;
    margin: 1rem 0;
    padding: 0 1rem;
    flex: 1;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback-date {
    text-align: center;
    color: var(--color-text);
    font-size: 0.85rem;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid var(--border-light);
}

/* Hover Effects */
.feedback-card:hover .star {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.feedback-card:hover .user-email {
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

/* Responsive tasarım */
@media (max-width: 1024px) {
    .feedback-section {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .feedback-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .feedback-card {
        max-width: 100%;
    }

    .feedback-container .feedback-card:last-child:nth-child(odd) {
        grid-column: 1;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .feedback-section {
        padding: 0 10px;
    }

    .feedback-container {
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .feedback-card {
        padding: 1.5rem;
    }
} 

/* Product Details Responsive */
@media screen and (max-width: 768px) {
    .product-details {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 15px;
    }

    .product-details-left,
    .product-details-right {
        width: 100%;
    }

    .product-info {
        min-width: unset;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .warranty-container {
        position: relative;
        top: 0;
        margin-top: 20px;
    }
}

/* Feedback Section Responsive */
@media screen and (max-width: 768px) {
    .feedback-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }

    .feedback-card {
        padding: 1.5rem;
        min-height: 120px;
    }

    .feedback-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .customer-mail {
        font-size: 0.7rem;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .user-initial {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .user-email {
        font-size: 0.7rem;
    }

    .rating {
        top: 1.5rem;
        right: 1.5rem;
    }

    .feedback-content {
        margin: 0.5rem 0;
        padding: 0;
        font-size: 0.9rem;
    }

    .feedback-date {
        font-size: 0.8rem;
    }
}

/* Warranty Section Responsive */
@media screen and (max-width: 768px) {
    .warranty-header {
        padding: 12px;
    }

    .warranty-text h3 {
        font-size: 14px;
    }

    .warranty-text p {
        font-size: 12px;
    }

    .warranty-item {
        padding: 12px;
        gap: 10px;
    }

    .warranty-icon {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
    .product-container {
        padding: 0.5rem !important;
    }

    .product-details {
        padding: 5px;
        gap: 10px;
    }

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

    .feedback-card {
        padding: 1rem;
    }

    .warranty-text h3 {
        font-size: 13px;
    }

    .warranty-text p {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Container Max Width Control */
@media screen and (min-width: 1200px) {
    .product-container,
    .feedback-section {
        max-width: 1200px;
        margin: 0 auto;
    }
} 
/* Tablet ve küçük ekranlar */
@media screen and (max-width: 768px) {
    .product-container {
        padding: 0rem 1rem 1rem 1rem !important;
    }
    .product-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-image,
    .product-info {
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
    }
    
    .product-image {
        margin-bottom: 1rem;
    }
}

/* Mobil ekranlar */
@media screen and (max-width: 480px) {
    .product-container {
        padding: 0.5rem !important;
    }

    .product-details {
        padding: 5px;
        gap: 10px;
    }

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

    .feedback-card {
        padding: 1rem;
    }

    .warranty-text h3 {
        font-size: 13px;
    }

    .warranty-text p {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Geniş ekranlar */
@media screen and (min-width: 1200px) {
    .product-container,
    .feedback-section {
        max-width: 1200px;
        margin: 0 auto;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem 2rem;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2));
}

.product-info h1 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin: 1rem 0;
    padding: 0.75rem;
    background-color: var(--background-color);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Quantity controls */
.quantity-control input {
    background-color: transparent;
    border: none;
    color: var(--text-color);
    text-align: center;
    width: 100%;
    font-size: 1rem;
    padding: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

/* Hide number input arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Buy button */
.buy-button {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.buy-button:hover {
    box-shadow: var(--button-glow);
    transform: translateY(-2px);
}

/* Mobile Navigation */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    
    .hamburger-btn {
        display: block;
    }

    .container {
        padding: 5rem 1rem 1rem;
    }

    .product-details {
        grid-template-columns: 1fr;
    }

    .product-info h1 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .quantity-control button {
        width: 2rem;
        height: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-buttons {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 4rem 0.5rem 0.5rem;
    }
}

.product-info-text {
    background: linear-gradient(45deg, rgba(255,215,0,0.1), rgba(255,165,0,0.2));
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,215,0,0.3);
    margin-bottom: 15px;
}
.product-info-text a {
    text-decoration: none;
}
.product-info-text p {
    color: #FFD700;
    font-size: 1.1em;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
    transition: all 0.3s ease;
}
.product-info-text:hover {
    background: linear-gradient(45deg, rgba(255,215,0,0.2), rgba(255,165,0,0.3));
    box-shadow: 0 0 15px rgba(255,215,0,0.2);
}
.product-info-text:hover p {
    text-shadow: 0 0 15px rgba(255,215,0,0.5);
    transform: scale(1.02);
}

.order-amount {
    position: relative;
    color: #FFD700;
    font-size: 0.85em;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(255, 215, 0, 0.1);
    white-space: nowrap;
    line-height: 1.2;
    width: fit-content;
    display: inline-block;
    margin: 0 auto 12px auto;
}

@media (max-width: 768px) {
    .order-amount {
        font-size: 0.8em;
        padding: 1px 5px;
    }
}
.user-name-section {
    text-align: center;
    margin: 8px 0;
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}
.nitro, .format, .legal, .usage, .guarantee, .quality, .security, .access, .method, .verification {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    letter-spacing: 0.5px;
    font-family: 'Courier New', monospace;
}

.nitro { color: #5865F2; }
.format { color: #2196F3; }
.legal { color: #4CAF50; }
.usage { color: #9C27B0; }
.guarantee { color: #FF5722; }
.quality { color: #3F51B5; }
.security { color: #FF5722; }
.access { color: #3F51B5; }
.method { color: #2196F3; }
.verification { color: #4CAF50; }

.nitro svg, .format svg, .legal svg, .usage svg, .guarantee svg, .quality svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.label {
    white-space: nowrap;
    margin-right: 10px;
}

.content {
    flex: 1;
}

/* Hover efektleri */
.nitro:hover, .format:hover, .legal:hover, .usage:hover, .guarantee:hover, .quality:hover, .security:hover, .access:hover, .method:hover, .verification:hover {
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nitro, .format, .legal, .usage, .guarantee, .quality, .security, .access, .method, .verification {
        padding: 8px 12px;
        font-size: 0.9em;
        gap: 8px;
    }
    
    .nitro svg, .format svg, .legal svg, .usage svg, .guarantee svg, .quality svg, .security svg, .access svg, .method svg, .verification svg    {
        width: 20px;
        height: 20px;
    }
}

/* Box stilleri */
.info-boxes {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin: 20px auto;
    max-width: 800px;
}

.info-box {
    background: rgba(20, 20, 20, 0.4);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(30, 30, 30, 0.5);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* İkon stili */
.icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* İçerik stili */
.info-content {
    flex-grow: 1;
}

.info-content label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Box tipleri için özel stiller */
.quality .icon-wrapper { 
    background: rgba(63, 81, 181, 0.15);
    border-color: rgba(63, 81, 181, 0.3);
}
.quality .icon { color: #3F51B5; }
.quality .info-content label { 
    color: #3F51B5;
    text-shadow: 0 0 10px rgba(63, 81, 181, 0.3);
}
.quality .info-content { color: #3F51B5; }
.security .icon-wrapper { 
    background: rgba(255, 87, 34, 0.15);
    border-color: rgba(255, 87, 34, 0.3);
}
.security .icon { color: #FF5722; }
.security .info-content label { 
    color: #FF5722;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}
.security .info-content { color: #FF5722; }
.access .icon-wrapper { 
    background: rgba(63, 81, 181, 0.15);
    border-color: rgba(63, 81, 181, 0.3);
}   
.access .icon { color: #3F51B5; }
.access .info-content label { 
    color: #3F51B5;
    text-shadow: 0 0 10px rgba(63, 81, 181, 0.3);
}
.access .info-content { color: #3F51B5; }
.method .icon-wrapper { 
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
}
.method .icon { color: #2196F3; }
.method .info-content label { 
    color: #2196F3;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
}
.method .info-content { color: #2196F3; }
.verification .icon-wrapper { 
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}
.verification .icon { color: #4CAF50; }
.verification .info-content label { 
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}
.verification .info-content { color: #4CAF50; }

.nitro .icon-wrapper { 
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.3);
}
.nitro .icon { color: #5865F2; }
.nitro .info-content label { 
    color: #5865F2;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.3);
}
.nitro .info-content { color: #5865F2; }

.format .icon-wrapper { 
    background: rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.3);
}
.format .icon { color: #2196F3; }
.format .info-content label { 
    color: #2196F3;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
}
.format .info-content { color: #2196F3; }

.legal .icon-wrapper { 
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}
.legal .icon { color: #4CAF50; }
.legal .info-content label { 
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}
.legal .info-content { color: #4CAF50; }

.usage .icon-wrapper { 
    background: rgba(156, 39, 176, 0.15);
    border-color: rgba(156, 39, 176, 0.3);
}
.usage .icon { color: #9C27B0; }
.usage .info-content label { 
    color: #9C27B0;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
}
.usage .info-content { color: #9C27B0; }

.guarantee .icon-wrapper { 
    background: rgba(255, 87, 34, 0.15);
    border-color: rgba(255, 87, 34, 0.3);
}
.guarantee .icon { color: #FF5722; }
.guarantee .info-content label { 
    color: #FF5722;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}
.guarantee .info-content { color: #FF5722; }

.warning .icon-wrapper { 
    background: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}
.warning .icon { color: #FFC107; }
.warning .info-content label { 
    color: #FFC107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}
.warning .info-content { color: #FFC107; }


/* Hover animasyonları */
.info-box:hover .icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.info-box:hover .icon {
    animation: iconPulse 1.5s ease infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .info-boxes {
        gap: 12px;
    }
    
    .info-box {
        padding: 15px;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .info-content label {
        font-size: 16px;
    }
    
    .info-content {
        font-size: 0.9em;
    }
}

/* Mail Access liste stilleri */
.access ul {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.access li {
    display: block;
    margin: 8px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access li:last-child {
    border-bottom: none;
}

.access a {
    color: inherit;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.access a:hover {
    opacity: 1;
    border-bottom-color: currentColor;
    text-shadow: 0 0 10px currentColor;
}

/* Mail provider etiketi için stil */
.access li::before {
    content: attr(data-provider);
    font-weight: 500;
    margin-right: 8px;
    opacity: 0.8;
}

/* Link container */
.access .link-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Link ikonu */
.access .link-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.access a:hover .link-icon {
    opacity: 1;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .access li {
        padding: 6px 0;
        font-size: 0.9em;
    }
    
    .access .link-icon {
        width: 14px;
        height: 14px;
    }
}