.afsen-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .afsen-detail-container {
        grid-template-columns: 1fr;
    }
}

.afsen-detail-gallery {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.afsen-detail-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.afsen-detail-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    color: #999;
    border-radius: 12px;
    font-size: 18px;
}

.afsen-detail-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.afsen-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.afsen-detail-price-section {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.afsen-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
}

.afsen-detail-unit {
    font-size: 18px;
    color: #666;
}

.afsen-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.afsen-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.afsen-meta-item:last-child {
    border-bottom: none;
}

.afsen-meta-item strong {
    color: #333;
    font-weight: 600;
}

.afsen-meta-item span {
    color: #666;
}

.afsen-detail-description {
    padding-top: 20px;
}

.afsen-detail-description h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
}

.afsen-detail-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.afsen-detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.afsen-btn-primary {
    flex: 1;
    background: #27ae60;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.afsen-btn-primary:hover {
    background: #229954;
}

.afsen-btn-secondary {
    flex: 1;
    background: white;
    color: #27ae60;
    border: 2px solid #27ae60;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.afsen-btn-secondary:hover {
    background: #27ae60;
    color: white;
}

.afsen-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.afsen-back-link:hover {
    color: #27ae60;
}