.pd-wrap {
    background: var(--bg-light);
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 4rem;
}
.pd-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 0.65rem 0;
}
.pd-breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.pd-breadcrumb nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.pd-breadcrumb nav a:hover {
    color: var(--primary-color);
}
.pd-breadcrumb nav .sep {
    opacity: 0.4;
    font-size: 0.7rem;
}
.pd-breadcrumb nav span:last-child {
    color: var(--text-dark);
    font-weight: 500;
    max-width: 260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pd-hero {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-top: 0;
}
.pd-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .pd-hero-inner { grid-template-columns: 1fr; }
}
.pd-img-col {
    position: relative;
    background: linear-gradient(145deg, #f8fbff 0%, #eef6f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    min-height: 460px;
    border-right: 1px solid rgba(0,0,0,0.05);
}
@media (max-width: 991px) {
    .pd-img-col {
        min-height: 300px;
        padding: 2rem 1.5rem;
        border-right: 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
}
.pd-img-wrap {
    position: relative;
    display: inline-block;
}
.pd-img-wrap img {
    max-height: 380px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
    transition: transform 0.4s ease;
}
@media (max-width: 991px) {
    .pd-img-wrap img { max-height: 240px; }
}
.pd-img-wrap:hover img {
    transform: scale(1.03);
}
.pd-badge-kasse {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(24,131,41,0.35);
    white-space: nowrap;
}
.pd-info-col {
    padding: 2.75rem 2.5rem 2.75rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
@media (max-width: 1199px) {
    .pd-info-col { padding: 2.5rem 2rem; }
}

@media (max-width: 991px) {
    .pd-info-col { padding: 2rem 1.5rem; }
}
.pd-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.pd-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
}
.pd-stock.instock {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}
.pd-stock.outofstock {
    background: #fff1f2;
    color: #be123c;
    border: 1px solid #fecdd3;
}
.pd-sku {
    font-size: 0.77rem;
    color: var(--text-muted);
}
.pd-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.pd-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(to right, #f0fdf4, #fafffe);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 0.75rem 0.75rem 0;
}
.pd-price {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    line-height: 1;
}
.pd-price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.pd-short-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.pd-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}
.pd-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    white-space: nowrap;
}
.pd-feature-pill i {
    font-size: 0.7rem;
    color: var(--primary-color);
}
.pd-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.pd-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.pd-form-group {
    flex: 1;
    min-width: 140px;
}
.pd-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.pd-form-group label span.req {
    color: #dc2626;
    margin-left: 0.15rem;
}
.pd-select {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: #f8fafc;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.5rem;
}
.pd-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(24,131,41,0.1);
    background-color: #fff;
}
.pd-qty-stepper {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f8fafc;
    width: fit-content;
}
.pd-qty-btn {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pd-qty-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
.pd-qty-input {
    width: 60px;
    height: 44px;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    -moz-appearance: textfield;
}
.pd-qty-input::-webkit-outer-spin-button,
.pd-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pd-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: 0;
    border-radius: 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 6px 20px rgba(24,131,41,0.3);
    position: relative;
    overflow: hidden;
}
.pd-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.pd-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(24,131,41,0.4);
    background: linear-gradient(135deg, #1a9430 0%, var(--primary-dark) 100%);
}
.pd-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(24,131,41,0.25);
}
.pd-cta-btn i { font-size: 1rem; }
.pd-trust-bar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #f8fbfe;
    border: 1px solid #e2ecf5;
    border-radius: 1rem;
}
.pd-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}
.pd-trust-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 0.85rem;
    border: 1px solid #a7f3d0;
}
.pd-trust-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}
.pd-trust-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.pd-desc-section {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}
.pd-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 0;
}
.pd-tab-btn {
    padding: 0.85rem 1.75rem;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    font-family: var(--font-body);
}
.pd-tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.pd-tab-btn:hover:not(.active) {
    color: var(--text-dark);
}
.pd-tab-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 0;
    border-radius: 0 0 1rem 1rem;
    padding: 2rem 2.5rem;
    display: none;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.95rem;
}
.pd-tab-panel.active { display: block; }
@media (max-width: 767px) {
    .pd-tab-panel { padding: 1.5rem 1.25rem; }
}
.pd-related-section {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding: 0 1rem;
}
.pd-related-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}
.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 991px) {
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
.pd-related-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}
.pd-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    color: inherit;
}
.pd-related-img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, #f0fdf4, #eef6f0);
}
.pd-related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pd-related-card:hover .pd-related-img-wrap img {
    transform: scale(1.05);
}
.pd-related-body {
    padding: 1rem;
}
.pd-related-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pd-related-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
}
@media (max-width: 767px) {
    .pd-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #fff;
        border-top: 1px solid #e2e8f0;
        padding: 0.875rem 1.25rem;
        box-shadow: 0 -6px 24px rgba(0,0,0,0.10);
        display: none;
    }
    .pd-sticky-bar.visible { display: block; }
}
@media (min-width: 576px) and (max-width: 991px) {
    .pd-trust-bar {
        flex-direction: row;
        gap: 0.75rem;
        padding: 1rem;
    }
    .pd-trust-item {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .pd-trust-icon { margin-bottom: 0.25rem; }
}
@media (max-width: 767.98px) {
    .pd-tabs-nav {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .pd-tabs-nav::-webkit-scrollbar { display: none; }
    .pd-tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.87rem;
        white-space: nowrap;
    }
}
@media (max-width: 575.98px) {
    .pd-info-col { padding: 1.25rem 1rem; }
    .pd-title {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
    .pd-price-block {
        padding: 0.75rem 1rem;
        margin-bottom: 1.25rem;
    }
    .pd-price       { font-size: 1.75rem; }
    .pd-short-desc  { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .pd-features    { margin-bottom: 1.25rem; }
    .pd-feature-pill { font-size: 0.73rem; padding: 0.25rem 0.6rem; }
    .pd-form-row    { flex-direction: column; gap: 0.5rem; }
    .pd-form-group  { min-width: 0; flex: none; width: 100%; }
    .pd-qty-stepper { width: 100%; justify-content: center; }
    .pd-cta-btn     { font-size: 0.95rem; padding: 0.875rem 1.5rem; }
    .pd-trust-bar   { padding: 1rem; gap: 0.625rem; }
    .pd-trust-icon  { width: 30px; height: 30px; font-size: 0.75rem; }
    .pd-desc-section,
    .pd-related-section { padding: 0 0.75rem; }
    .pd-related-section h2 { font-size: 1.15rem; }
}
@media (max-width: 379.98px) {
    .pd-info-col { padding: 1rem 0.875rem; }
    .pd-price    { font-size: 1.55rem; }
    .pd-tab-btn  { padding: 0.65rem 1rem; font-size: 0.82rem; }
}
@media (prefers-reduced-motion: reduce) {
    .pd-img-wrap img,
    .pd-cta-btn,
    .pd-related-card { transition: none; }
    .pd-related-card:hover { transform: none; }
}
