.product-view {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

/* Gallery Section */
.product-gallery {
    position: relative;
    overflow: hidden;
    position: relative;
}

.product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Preview container */
.preview-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    margin-top: 20px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover, .thumbnail.active {
    border-color: #2C5530;
}

/* Product Info Section */
.product-info {
    padding: 20px 0;
}

.product-title {
    font-size: 2em;
    color: #2C5530;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.8em;
    color: #2C5530;
    font-weight: 600;
    margin: 20px 0;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-features {
    margin: 30px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #2C5530;
    margin-right: 10px;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
}

.quantity-btn {
    background: none;
    border: none;
    color: #2C5530;
    font-size: 1.2em;
    cursor: pointer;
    padding: 0 10px;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    background: none;
    font-size: 1.1em;
}

.add-to-cart {
    flex-grow: 1;
    padding: 15px 30px;
    background-color: #2C5530;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart:hover {
    background-color: #1e3c21;
}

.product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.meta-item i {
    color: #2C5530;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-image {
        height: 300px;
    }

    .product-actions {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }
} 