.lamp-container {
    max-width: 1636px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.lamp-product-header {
    background-color: #faf9ee;
    border-bottom: 1px solid #D0D0D0;
    padding: 40px 0;
    text-align: center;
}

.lamp-brand-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: #2b2b2b;
    text-transform: uppercase;
}

.lamp-designer-credit {
    font-size: 0.9rem;
    color: #A0A0A0;
    line-height: 1.4;
}

.lamp-designer-name {
    font-weight: bold;
    color: #2b2b2b;
    letter-spacing: 0.1em;
}

/* Main Content */
.lamp-main-content {
    padding: 60px 0 80px;
}

/* Product Showcase */
.lamp-product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
    align-items: start;
}

.lamp-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lamp-main-image {
    width: 100%;
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
}

.lamp-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.lamp-main-image img:hover {
    transform: scale(1.02);
}

.lamp-thumbnail-gallery {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.lamp-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.lamp-thumbnail:hover {
    opacity: 1;
}

.lamp-thumbnail.lamp-thumbnail-active {
    border-color: #1ccce3;
    opacity: 1;
}

/* Product Details */
.lamp-product-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lamp-product-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #2b2b2b;
}

.lamp-product-description p {
    margin-bottom: 20px;
}

.lamp-product-description strong {
    color: #2b2b2b;
    font-weight: bold;
}

/* Specifications */
.lamp-specifications {
    margin-top: 20px;
}

.lamp-specifications h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #A0A0A0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lamp-spec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    margin-bottom: 30px;
}

.lamp-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.lamp-spec-item:last-child {
    border-bottom: none;
}

.lamp-spec-label {
    color: #A0A0A0;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.lamp-spec-value {
    color: #2b2b2b;
    font-weight: 400;
    text-align: right;
    flex-shrink: 0;
}

/* Improved responsive behavior for many specs */
@media (max-width: 768px) {
    .lamp-spec-list {
        grid-template-columns: 1fr;
    }
    
    .lamp-spec-item {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

/* Optional: Collapsible specifications for very long lists */
.lamp-spec-list.collapsed {
    max-height: 150px;
    overflow: hidden;
    position: relative;
}

.lamp-spec-list.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, #faf9ee);
    pointer-events: none;
}

.lamp-spec-toggle {
    background: none;
    border: none;
    color: #1ccce3;
    font-size: 0.8rem;
    cursor: pointer;
    margin-bottom: 20px;
    text-decoration: underline;
}

.lamp-spec-toggle:hover {
    color: #1daabc;
}

/* Buy Button */
.lamp-buy-button {
    background-color: #1ccce3;
    border: 2px solid #1ccce3;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.lamp-buy-button:hover {
    background-color: #1daabc;
    border-color: #1daabc;
    color: #ffffff;
}

/* About Collection Section */
.lamp-about-collection {
    padding: 80px 0;
    margin-top: 40px;
}

.lamp-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.lamp-about-image {
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
}

.lamp-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lamp-about-text h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #2b2b2b;
    letter-spacing: 0.05em;
}

.lamp-about-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.lamp-about-text strong {
    color: #2b2b2b;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1680px) {
    .lamp-container {
        padding: 0 50px;
    }
}

@media (max-width: 1024px) {
    .lamp-container {
        padding: 0 40px;
    }
    
    .lamp-product-showcase,
    .lamp-about-content {
        gap: 60px;
    }
    
    .lamp-brand-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .lamp-brand-title {
        font-size: 3.75rem;
    }
    
    .lamp-product-showcase,
    .lamp-about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lamp-product-showcase {
        margin-bottom: 60px;
    }
    
    .lamp-main-content {
        padding: 40px 0;
    }
    
    .lamp-product-header {
        padding: 40px 0;
    }
    
    .lamp-about-collection {
        padding: 60px 0;
        margin-top: 30px;
    }
    
    .lamp-spec-list {
        gap: 8px;
    }
    
    .lamp-thumbnail-gallery {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lamp-container {
        padding: 0 20px;
    }
    
    .lamp-brand-title {
        font-size: 3rem;
    }
    
    .lamp-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .lamp-buy-button {
        width: 100%;
        text-align: center;
    }
    
    .lamp-main-content {
        padding: 20px 0;
    }
    
    .lamp-product-header {
        padding: 20px 0;
    }
    
    .lamp-product-showcase {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .lamp-product-details {
        gap: 25px;
    }
    
    .lamp-about-collection {
        padding: 30px 0;
        margin-top: 20px;
    }
}

/* Shoptet Compatibility Styles */
.shoptet-product-wrapper {
    max-width: none;
}

.shoptet-product-gallery {
    margin-bottom: 0;
}

.shoptet-product-info {
    padding: 0;
}



/* Image loading placeholder */
.image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}