/* =======================
   Basis Layout / Desktop
   ======================= */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 1.3rem; /* 18px Grundtext */
}

.product-main {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.product-image-large {
    position: relative;
    max-width: 550px;
    width: 100%;
}

.product-image-large img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #690A2E;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 6px 10px;
    border-radius: 4px;
}

.product-info-large {
    flex: 1;
}

.product-title {
    font-size: 2.7rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-sku,
.product-brand,
.product-ean,
.product-advertiser,
.product-variants {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 10px;
}

.product-variants span {
    margin-right: 15px;
}

.product-price {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #000;
}

.price-old {
    font-size: 2.8rem; /* gleiche Größe wie normaler Preis */
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-value.special {
    color: #c00; /* rot hervorheben für Sonderpreis */
	font-size: 2.8rem;
}


.price-note {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 20px;
}

.delivery-time {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
}

.cta-button {
    display: block;
    width: 100%;
    background-color: #690A2E;
    color: #fff !important;
    font-size: 2rem;
    padding: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus,
.cta-button:active {
    background-color: #8b123f;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.product-shortdesc {
    margin-top: 30px;
    padding: 15px;
    background: #fff3e8;
    border: 1px solid #f0d4c5;
    border-radius: 8px;
    font-size: 1.6rem;
    line-height: 1.8;
    font-style: italic;
}

.product-description {
    margin-top: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    line-height: 1.8;
    font-size: 1.6rem;
}

.product-rating {
    margin: 8px 0;
    font-size: 1.5rem; /* gleiche Größe wie Marke, SKU, EAN */
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
}

.product-rating .rating-label {
    font-weight: 500;
    margin-right: 6px;
}

.product-rating .stars {
    display: inline-flex;
    margin-right: 6px;
}

.product-rating .star {
    font-size: 1.6rem; /* etwas größer, damit die Sterne sich harmonisch einfügen */
    color: #ccc; /* Standard leer */
    margin-right: 2px;
    line-height: 1;
}

.product-rating .star.full {
    color: #f5b301; /* Gold */
}

.product-rating .star.half {
    color: #f5b301;
    position: relative;
    display: inline-block;
}
.product-rating .star.half::after {
    content: '☆';
    color: #ccc;
    position: absolute;
    left: 50%;
    width: 50%;
    overflow: hidden;
}

.product-rating .rating-value {
    font-weight: bold;
    color: #222;
    margin-left: 4px;
}


/* =======================
   Responsives Layout
   ======================= */
@media (max-width: 1024px) {
    .product-title { font-size: 2.6rem; }
    .product-price { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .product-main { flex-direction: column; }
    .product-title { font-size: 2.2rem; }
    .product-price { font-size: 2rem; }
    .cta-button { font-size: 1.3rem; padding: 16px; }
    .product-description,
    .product-shortdesc { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .product-title { font-size: 1.8rem; }
    .product-price { font-size: 1.6rem; }
    .cta-button { font-size: 1.2rem; padding: 14px; }
    .product-description,
    .product-shortdesc { font-size: 1.1rem; }
}
