.product-page {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-gallery {
    flex: 1;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: var(--card-bg);
    padding: 1rem;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.thumbnail-container {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid rgba(0, 247, 255, 0.2);
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.product-details {
    flex: 1;
}

.product-title-large {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.product-price-large {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.option-select {
    width: 100%;
    padding: 0.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 247, 255, 0.2);
    color: var(--text);
    border-radius: 5px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--background);
}

.quantity-input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-description-long {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 247, 255, 0.2);
}

.product-description-long h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.product-description-long p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.product-description-long ul {
    margin-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .product-page {
        flex-direction: column;
    }
}