.page-header h1 {
        font-family: var(--font-heading);
        font-size: 3rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .breadcrumb a {
        color: var(--primary-color);
    }
    
    .item-content {
        padding: 60px 0;
    }
    
    .item-container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }
    
    .item-description {
        margin-bottom: 40px;
        background-color: #f9f9f9; /* Soft beige/cream background */
        border: 1px solid #f1eadb; /* Slightly darker border */
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }
    
    .item-description img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
    }
    
    .item-description h1,
    .item-description h2,
    .item-description h3 {
        color: var(--primary-color);
        font-family: var(--font-heading);
        border-bottom: 1px dotted #e6d9bc; /* Subtle dotted border under headings */
        padding-bottom: 8px;
    }
    
    .item-description p {
            font-size: 1em;
    }
    
    .item-description ul {
        padding-left: 20px;
        list-style-type: none;
    }
    
    .item-description ul li {
        position: relative;
        padding-left: 20px;
    }
    
    .item-description ul li:before {
        content: '•';
        color: var(--primary-color);
        position: absolute;
        left: 0;
        top: 0;
        font-size: 16px;
    }
    
    .item-description li {
        margin-bottom: 10px;
    }
    
    .item-order-cta {
        background: #f1e9d8; /* Slightly darker than the content background */
        padding: 30px;
        border-radius: 8px;
        margin-top: 40px;
        text-align: center;
    }
    
    .item-order-cta h3 {
        font-family: var(--font-heading);
        color: var(--primary-color);
        margin-bottom: 15px;
    }
    
    .item-order-cta p {
        margin-bottom: 20px;
    }
    
    .sidebar-section {
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    
    .sidebar-section h3 {
        font-family: var(--font-heading);
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    
    .contact-detail {
        display: flex;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        margin-right: 15px;
        font-size: 20px;
        color: var(--primary-color);
    }
    
    .contact-text {
        color: var(--gray-color);
    }
    
    .related-items {
        list-style: none;
    }
    
    .related-items li {
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }
    
    .related-items li:last-child {
        border-bottom: none;
    }
    
    .related-items a {
        color: var(--dark-color);
        display: block;
        transition: var(--transition);
    }
    
    .related-items a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }
    
    .order-section {
        background: var(--light-gray);
        padding: 50px;
        border-radius: 8px;
    }
    
    .order-section h2 {
        font-family: var(--font-heading);
        color: var(--primary-color);
        margin-bottom: 15px;
    }
    
    .order-section > p {
        margin-bottom: 30px;
    }
    
    .order-form {
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        flex: 1;
    }
    
    .form-group.full-width {
        flex: 100%;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: var(--font-body);
    }
    
    .form-group textarea {
        resize: vertical;
    }
    
    @media (max-width: 992px) {
        .item-container {
            grid-template-columns: 1fr;
        }
        
        .order-section {
            padding: 30px;
        }
    }
    
    @media (max-width: 768px) {
        .form-row {
            flex-direction: column;
        }
        
        .page-header h1 {
            font-size: 2.2rem;
        }
    }