/* Amenity Styles */
.bew-product-amenities {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.bew-product-amenities h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    min-height: 80px;
    justify-content: center;
}

.amenity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #7bc243;
}

.amenity-item img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 4px;
}

.amenity-item span {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Admin Panel Styles */
.amenity-admin-field {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.amenity-admin-field label {
    display: flex;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 4px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.amenity-admin-field label:hover {
    background: #f0f0f0;
}

.amenity-admin-field input[type="checkbox"] {
    margin-right: 10px;
}

/* Minimal ve turuncu amenity kutuları (ürün detay için) */
.bew-product-amenities-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0 0 0;
    align-items: center;
}

.amenity-minimal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border: 1.5px solid #dc332c;
    border-radius: 8px;
    padding: 5px 5px 5px 5px;
    min-width: 55px;
    min-height: 55px;
    box-shadow: 0 2px 8px rgba(220,51,44,0.06);
    transition: box-shadow 0.2s, border 0.2s;
}
.amenity-minimal-item:hover {
    box-shadow: 0 4px 16px rgba(220,51,44,0.13);
    border-color: #dc332c;
}
.amenity-minimal-item img {
    width: 55px !important;
    height: 55px !important;
    object-fit: contain;
    margin-bottom: 0;
    display: block;
}
.amenity-minimal-item span {
    font-size: 13px;
    color: #dc332c;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .amenity-item {
        padding: 8px;
        min-height: 70px;
    }
    
    .amenity-item img {
        width: 30px;
        height: 30px;
    }
    
    .amenity-item span {
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .bew-product-amenities-minimal {
        gap: 10px;
    }
    .amenity-minimal-item {
        min-width: 54px;
        min-height: 54px;
        padding: 7px 7px 4px 7px;
    }
    .amenity-minimal-item img {
        width: 40px;
        height: 40px;
    }
    .amenity-minimal-item span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bew-product-amenities {
        padding: 15px;
    }
}

/* Subtitle Styles */
.bew-product-subtitle {
    margin: 15px 0 20px 0;
}

.bew-product-subtitle .product-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

/* Subtitle in product loop (shop page) */
.bew-product-subtitle-loop {
    margin: 8px 0 12px 0;
}

.bew-product-subtitle-loop .product-subtitle-loop {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.3;
    font-style: italic;
    font-weight: 300;
}

/* Admin panel subtitle styles */
#product_subtitle {
    width: 100%;
    max-width: 500px;
}

/* Responsive subtitle styles */
@media (max-width: 768px) {
    .bew-product-subtitle .product-subtitle {
        font-size: 18px;
    }
    
    .bew-product-subtitle-loop .product-subtitle-loop {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .bew-product-subtitle .product-subtitle {
        font-size: 16px;
    }
    
    .bew-product-subtitle-loop .product-subtitle-loop {
        font-size: 12px;
    }
} 