/* =================================================================== */
/* 1. TAKILAR SAYFASI (takilar.html) STİLLERİ */
/* =================================================================== */

.jewelry-page {
    background: rgba(255, 255, 255, 0.9);
}

.jewelry-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.jewelry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.jewelry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.jewelry-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.jewelry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.jewelry-card:hover .jewelry-image img {
    transform: scale(1.08);
}

.jewelry-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.jewelry-content h3 {
    font-size: 1.2rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.jewelry-content p {
    font-size: 0.9rem;
    color: #666;
    flex-grow: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.jewelry-price {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
}

/* =================================================================== */
/* 2. TAKILAR SAYFASI RESPONSIVE */
/* =================================================================== */

@media (max-width: 768px) {
    .jewelry-grid-full {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .jewelry-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    
    .jewelry-image {
        height: 250px;
    }
    
    .jewelry-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .jewelry-content h3 {
        font-size: 1.2rem;
    }
    
    .jewelry-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .jewelry-price {
        text-align: center;
        font-size: 1.1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .jewelry-content {
        padding: 1rem;
    }
}