/* 
 * eSIM Category Product Styles
 * Custom CSS for eSIM product display in category/listing pages
 */

/* Grid layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Card styling */
.esim-product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.3s;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.esim-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Product image */
.esim-product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.esim-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.esim-product-card:hover .esim-product-image img {
    transform: scale(1.05);
}

/* Product details */
.esim-product-details {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.esim-product-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 2.8em;
}

/* Price styling */
.esim-product-price {
    margin-top: auto;
}

.esim-price-current {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.esim-price-discount {
    background-color: #e53935;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 5px;
    display: inline-block;
}

.esim-price-original {
    display: block;
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-top: 3px;
}

/* View details button */
.esim-view-details {
    text-align: center;
    margin-top: 12px;
}

.esim-view-details a {
    display: inline-block;
    padding: 6px 15px;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.esim-view-details a:hover {
    background-color: #3d8b40;
}

/* Styling specific to the Local eSIM Plans page */
.local-esim-plans-container {
    padding: 30px 0;
}

.local-esim-header {
    margin-bottom: 30px;
}

.local-esim-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.local-esim-header p {
    color: #666;
}

/* Specific styling for the price display in Turkey, Albania examples */
.esim-destination-product .view-details-link {
    margin-top: 0;
    margin-bottom: 10px;
}

.esim-destination-product .product-price-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.esim-destination-product .product-current-price {
    font-weight: 700;
    color: #333;
    margin-right: 5px;
}

.esim-destination-product .product-discount {
    color: #e53935;
    font-weight: 600;
    margin-right: 5px;
}

.esim-destination-product .product-old-price {
    color: #999;
    text-decoration: line-through;
}
