/* ====================================================================
   ZUBEHÖR DETAILSEITE - PROFESSIONELLES STYLING
   Farbschema: Fleischrot (#a43434), Gold (#d4af37), Neutral
   ==================================================================== */

/* ============================================================
   HERO SECTION - BILDERGALERIE & PRODUKTINFOS
   ============================================================ */

.accessory-hero-section {
    background: #ffffff;
}

/* Hauptbild Container */
.main-image-container {
    position: relative;
}

.main-image-wrapper {
    background: #f8f9fa;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Thumbnail Galerie */
.thumbnail-gallery {
    margin-top: 0.75rem;
}

.thumbnail-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.thumbnail-item:hover {
    opacity: 1;
    border-color: #dee2e6;
}

.thumbnail-item.active {
    opacity: 1;
    border-color: #a43434;
    box-shadow: 0 0 0 2px rgba(164, 52, 52, 0.2);
}

.thumbnail-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Preis-Anzeige */
.price-display {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #a43434;
}

/* USP-Icons */
.product-usps {
    padding: 1rem 0;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
}

.usp-item i {
    color: #d4af37;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Verfügbarkeitsstatus */
.availability-status {
    padding: 0.75rem 0;
}

.stock-available,
.stock-low,
.stock-unavailable {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.stock-available {
    color: #198754;
}

.stock-available i {
    color: #198754;
}

.stock-low {
    color: #fd7e14;
}

.stock-low i {
    color: #fd7e14;
}

.stock-unavailable {
    color: #dc3545;
}

.stock-unavailable i {
    color: #dc3545;
}

/* Warenkorb-Box */
.add-to-cart-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
}

.quantity-selector .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.quantity-selector .btn {
    border-color: #dee2e6;
}

.quantity-selector .form-control {
    border-color: #dee2e6;
}

/* Gesamtpreis */
.total-price-display {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a43434;
}

/* Add to Cart Button */
.btn-add-to-cart {
    background-color: #a43434;
    border-color: #a43434;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-add-to-cart:hover {
    background-color: #8b2525;
    border-color: #8b2525;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(164, 52, 52, 0.3);
}

.btn-add-to-cart.btn-success-state {
    background-color: #198754 !important;
    border-color: #198754 !important;
}

/* Versandinfo kompakt */
.shipping-info-compact {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.shipping-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.shipping-item i {
    color: #6c757d;
    width: 20px;
    text-align: center;
    margin-top: 2px;
}

/* ============================================================
   PRODUKTBESCHREIBUNG
   ============================================================ */

.product-description-section h2 {
    color: #1a1a1a;
}

.description-text {
    line-height: 1.8;
    color: #495057;
}

.description-text .lead {
    font-size: 1.1rem;
    color: #1a1a1a;
}

/* Text-Gold Klasse */
.text-gold {
    color: #d4af37 !important;
}

/* ============================================================
   LIEFERUMFANG KARTEN
   ============================================================ */

.included-items-section {
    background: #ffffff;
}

.included-item-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.included-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.included-item-card .item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a43434, #8b2525);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.included-item-card .item-icon i {
    color: white;
    font-size: 1.5rem;
}

.included-item-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

/* ============================================================
   TECHNISCHE SPEZIFIKATIONEN
   ============================================================ */

.specifications-section {
    background: #f8f9fa;
}

.spec-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.spec-card-header {
    background: linear-gradient(135deg, #a43434, #8b2525);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spec-card-header i {
    font-size: 1.25rem;
}

.spec-card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.spec-card-body {
    padding: 0;
}

.spec-table {
    width: 100%;
    margin: 0;
}

.spec-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

.spec-table td:first-child {
    color: #6c757d;
    width: 50%;
}

.spec-table td:last-child {
    color: #1a1a1a;
}

.total-weight-info {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
}

/* ============================================================
   QUALITÄTSMERKMALE
   ============================================================ */

.quality-features-section {
    background: #ffffff;
}

.quality-feature {
    text-align: center;
    padding: 1.5rem 1rem;
}

.quality-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.quality-feature .feature-icon i {
    font-size: 1.75rem;
    color: #a43434;
}

.quality-feature:hover .feature-icon {
    background: linear-gradient(135deg, #a43434, #8b2525);
    transform: scale(1.1);
}

.quality-feature:hover .feature-icon i {
    color: white;
}

.quality-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.quality-feature p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   2-IN-1 FEATURE HIGHLIGHT
   ============================================================ */

.feature-highlight-section {
    background: #f8f9fa;
}

.feature-highlight-image img {
    border-radius: 12px;
}

.feature-highlight-content {
    padding: 1rem 0;
}

.feature-label {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #c9a634);
    color: #1a1a1a;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-highlight-content h2 {
    color: #1a1a1a;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.feature-list li i {
    color: #198754;
    margin-top: 3px;
}

/* ============================================================
   GESCHENK-TIPP BOX
   ============================================================ */

.gift-tip-section {
    background: #ffffff;
}

.gift-tip-box {
    background: linear-gradient(135deg, #fdf8f8, #fff5f5);
    border: 2px solid #a43434;
    border-radius: 16px;
    padding: 2rem;
}

.gift-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a43434, #8b2525);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.gift-icon i {
    font-size: 2rem;
    color: white;
}

.gift-tip-box h3 {
    color: #1a1a1a;
}

/* ============================================================
   PFLEGEHINWEISE
   ============================================================ */

.care-instructions-section {
    background: #f8f9fa;
}

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

.care-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.care-item i {
    color: #a43434;
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.care-item strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.care-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

/* ============================================================
   WEITERE PRODUKTE
   ============================================================ */

.related-products-section {
    background: #ffffff;
}

/* ============================================================
   RESPONSIVE ANPASSUNGEN
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
    .current-price {
        font-size: 1.75rem;
    }
    
    .spec-card-header {
        padding: 0.875rem 1rem;
    }
    
    .spec-table td {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .gift-tip-box {
        padding: 1.5rem;
    }
    
    .gift-icon {
        width: 60px;
        height: 60px;
    }
    
    .gift-icon i {
        font-size: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .main-image-wrapper {
        aspect-ratio: 1 / 1;
    }
    
    .thumbnail-item img {
        aspect-ratio: 1 / 1;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .total-price {
        font-size: 1.25rem;
    }
    
    .usp-item {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
    
    .usp-item i {
        font-size: 0.9rem;
    }
    
    .add-to-cart-box {
        padding: 1rem;
    }
    
    .included-item-card {
        padding: 1.25rem 1rem;
    }
    
    .included-item-card .item-icon {
        width: 50px;
        height: 50px;
    }
    
    .included-item-card .item-icon i {
        font-size: 1.25rem;
    }
    
    .included-item-card h3 {
        font-size: 1rem;
    }
    
    .spec-card-header {
        padding: 0.75rem 1rem;
    }
    
    .spec-card-header h3 {
        font-size: 0.9rem;
    }
    
    .spec-table td {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .quality-feature {
        padding: 1rem 0.5rem;
    }
    
    .quality-feature .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .quality-feature .feature-icon i {
        font-size: 1.4rem;
    }
    
    .quality-feature h4 {
        font-size: 0.9rem;
    }
    
    .quality-feature p {
        font-size: 0.8rem;
    }
    
    .care-grid {
        grid-template-columns: 1fr;
    }
    
    .care-item {
        padding: 0.875rem;
    }
    
    .gift-tip-box {
        padding: 1.25rem;
        text-align: center;
    }
    
    .gift-tip-box h3 {
        font-size: 1rem;
    }
    
    .gift-tip-box p {
        font-size: 0.85rem;
    }
    
    .feature-highlight-content {
        padding: 0;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 575px) {
    .thumbnail-gallery .col-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .usp-item {
        font-size: 0.75rem;
    }
    
    .shipping-item {
        font-size: 0.8rem;
    }
    
    .btn-add-to-cart {
        font-size: 0.95rem;
        padding: 0.65rem 1rem;
    }
}

/* ============================================================
   ANIMATIONEN
   ============================================================ */

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

.spec-card,
.included-item-card,
.quality-feature {
    animation: fadeIn 0.5s ease-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .spec-card,
    .included-item-card,
    .quality-feature,
    .main-product-image {
        animation: none;
        transition: none;
    }
    
    .thumbnail-item,
    .btn-add-to-cart,
    .quality-feature .feature-icon {
        transition: none;
    }
}