﻿/*////showProduct*/

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #f0f8ff;
    color: #333;
    line-height: 1.8;
}

.product-container {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}

.product-header img {
    width: 100%;
    border-radius: 12px;
}

.product-info {
    margin-top: 20px;
}

.product-price {
    font-size: 18px;
    color: #27ae60;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-right: 10px;
    cursor: pointer;
}

    .add-to-cart-btn:hover {
        background: #2980b9;
    }

.product-description {
    font-size: 16px;
    margin-top: 15px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

    .gallery img {
        width: 100px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

        .gallery img:hover {
            transform: scale(1.05);
        }

.tags-layer {
    background: #eaf6ff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}

    .tags-layer a {
        display: inline-block;
        background: #d1ecf1;
        color: #0c5460;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
        margin: 3px;
        text-decoration: none;
    }

        .tags-layer a:hover {
            background: #b3e0e9;
        }

