main.item-page-main {
    min-height: 100vh;
}

.item-hero-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .item-hero-section {
        padding: 5rem 1rem 4rem;
    }
}

.item-hero-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .item-hero-container {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 3.5rem;
    }
}

.item-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.item-hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin: 0;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .item-hero-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .item-hero-title {
        font-size: 2.25rem;
    }
}

.item-hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 36rem;
}

.item-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.item-hero-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
}

.item-hero-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background-color: #eef2ff;
    color: #4f46e5;
    font-size: 0.75rem;
    font-weight: 600;
}

.item-hero-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.item-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.item-content-section {
    padding: 2.5rem 1rem 3.5rem;
    background-color: #ffffff;
}

@media (min-width: 1024px) {
    .item-content-section {
        padding: 3rem 1rem 4.5rem;
    }
}

.item-content-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 60rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .item-content-container {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 3rem;
    }
}

.item-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.item-paragraph {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-list li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    color: #374151;
    display: flex;
    gap: 0.5rem;
}

.item-list li::before {
    content: '•';
    color: #4f46e5;
}

.item-meta-card {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.item-meta-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
}

.item-back-link {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.item-back-link a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.item-back-link a:hover {
    text-decoration: underline;
}
