/* Pharma Product Styles - All classes prefixed with pharma- to avoid conflicts */
.pharma-product {
    max-width: 1200px;
    margin: 0 auto;
}

.pharma-brand-flag-inline {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}

.pharma-main-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pharma-images-section .pharma-main-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.pharma-images-section .pharma-main-image img {
    width: 100%;
    display: block;
}

.pharma-thumbnail-gallery {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
}

.pharma-thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.pharma-thumbnail-gallery::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.pharma-thumbnail {
    min-width: 80px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.pharma-thumbnail:hover,
.pharma-thumbnail.active {
    border-color: #1250dc;
    transform: scale(1.05);
}

.pharma-info-panel {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.pharma-product-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.pharma-short-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-left: 3px solid #1250dc;
    border-radius: 4px;
}

.pharma-short-description p {
    margin: 0;
}

.pharma-price-section {
    margin: 20px 0 10px 0;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.pharma-price {
    font-size: 32px;
    font-weight: 700;
    color: #1250dc;
}

.pharma-unit {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.pharma-details-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.pharma-details-table td {
    padding: 12px 4px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    vertical-align: top;
}

.pharma-details-table td:first-child {
    color: #666;
    width: 25%;
    font-weight: 700;
}

.pharma-tabs-section {
    margin-top: 40px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.pharma-nav-tabs {
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #f8f9fa;
}

.pharma-nav-item {
    margin: 0;
}

.pharma-nav-link {
    display: block;
    padding: 15px 20px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.pharma-nav-link:hover {
    color: #1250dc;
    background: #fff;
}

.pharma-nav-link.active {
    color: #1250dc;
    border-bottom-color: #1250dc;
    background: #fff;
}

.pharma-tab-content {
    padding: 30px 20px;
}

.pharma-tab-pane {
    display: none;
}

.pharma-tab-pane.active {
    display: block;
}

.pharma-tab-pane h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.pharma-ingredients-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.pharma-ingredients-table th,
.pharma-ingredients-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.pharma-ingredients-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.pharma-ingredients-table tbody tr:hover {
    background: #f8f9fa;
}

.pharma-description-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.pharma-description-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .pharma-main-grid {
        grid-template-columns: 1fr;
    }

    .pharma-thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .pharma-price {
        font-size: 24px;
    }

    .pharma-nav-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .pharma-nav-link {
        padding: 12px 15px;
        font-size: 13px;
        white-space: nowrap;
    }
}
