/* Chemical Products Plugin Styles v1.0.0 */

/* Product Info Block */
.chemical-product-info {
    /* margin-bottom: 2rem; */
}

.chemical-product-info .product-title {
    /* font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50; */
}

.chemical-product-info .product-description {
    /* line-height: 1.6;
    margin-bottom: 1rem; */
}

.chemical-product-info .featured-badge {
    /* display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px; */
}

/* Categories Block */
.chemical-categories {
    /* margin-bottom: 2rem; */
}

.chemical-categories h3 {
    /* font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem; */
}

.chemical-categories ul {
    /* list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; */
}

.chemical-categories li {
    /* background-color: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 2px solid #bdc3c7;
    transition: all 0.3s ease; */
}

.chemical-categories li:hover {
    /* background-color: #3498db;
    border-color: #2980b9; */
}

.chemical-categories li a {
    /* text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease; */
}

.chemical-categories li:hover a {
    /* color: white; */
}

/* Applications Block */
.chemical-applications {
    /* margin-bottom: 2rem; */
}

.chemical-applications h3 {
    /* font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 0.5rem; */
}

.applications-tags {
    /* display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; */
	padding: 10px;
}

.application-tag {
    /* background-color: #f39c12;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease; */
}

.application-tag:hover {
    /* background-color: #e67e22; */
}

.application-tag a {
    /* color: white;
    text-decoration: none; */
}

/* Producer Info Block */
.producer-info {
    /* background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem; */
    text-align: center;
	padding: 10px;
}

.producer-info h3 {
    /* font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 0.5rem; */
}

.producer-name {
    /* font-size: 1.25rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem; */
}

.producer-name a {
	text-decoration: none;
}

.producer-logo {
    /* margin-bottom: 1rem; */
}

.producer-logo img {
    /* max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
}

.producer-origin {
    /* font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-weight: 500; */
}

.producer-flag {
    /* display: inline-block; */
}

.producer-flag img {
    width: 80px;
    height: auto;
    /* border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2); */
}

/* Packing Types Block */
.packing-types {
    /* margin-bottom: 2rem; */
	padding: 10px;
}

.packing-types h3 {
    /* font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
    border-bottom: 2px solid #9b59b6;
    padding-bottom: 0.5rem; */
}

.packing-list {
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem; */
}

.packing-item {
    display: flex;
    flex-direction: row;
	column-gap: 5px;
    align-items: left;
    text-align: left;
	/* 
	line-height: 1rem;

	font-size: 0.9rem;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease; */
}

.packing-item:hover {
    /* border-color: #9b59b6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.2); */
}

.packing-icon {
    /* width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.5rem; */
}

.packing-item span,
.packing-item a {
    /* font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.875rem; */
}

.packing-item a:hover {
    /* color: #9b59b6; */
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .chemical-categories ul {
        flex-direction: column;
    }
    
    .applications-tags {
        flex-direction: column;
    }
    
    .packing-list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .producer-info {
        padding: 1rem;
    }
    
    .producer-logo img {
        max-width: 150px;
    } */
}

@media (max-width: 480px) {
    /* .chemical-product-info .product-title {
        font-size: 1.5rem;
    }
    
    .packing-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .packing-item {
        padding: 0.75rem;
    }
    
    .packing-icon {
        width: 36px;
        height: 36px;
    } */
}