/* Product Page Styles */
.products-page {
    padding: 40px 0;
    background-color: #f8f8f8;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}
.product {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.product img {
    max-width: 100px;
    height: 100px;
    margin-bottom: 10px;
    background: #e0e0e0;
    padding: 10px;
    border-radius: 50%;
}
.product .button{
    margin-top: 10px;
}
/* Product Detail Page Styles */
.product-hero {
    text-align: center;
    margin-bottom: 30px;
}
.product-hero img {
    max-width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.product-hero .product-tagline {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}
.product-overview,
.product-features,
.product-usage,
.product-option,
.product-caution {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product-features ul {
    list-style-type: disc;
    margin-left: 40px;
}
.product-features li {
    margin-bottom: 10px;
}
.product-usage ol {
  list-style-type: decimal;
  margin-left: 40px;
}
.product-usage li{
  margin-bottom: 10px;
}
.product-cta{
  text-align: center;
}
.product-cta .button{
    margin: 10px;
}
/* Price Section Styles */
.product-price {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}
.price-caption {
    font-size: 1.1rem;
    color: #000000;
    font-weight: bold;
    margin-bottom: 10px;
}
.price-plan {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}
.per-month {
    font-size: 0.8rem;
    font-weight: normal;
}
.plan-description{
  margin-bottom: 5px;
}
/* product Caution Section Styles */
.product-caution {
    background-color: #fff0f0; /* Light red background */
    border: 1px solid #fdd; /* Red border */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.caution-list {
    list-style: none;
    padding: 0;
}
.caution-list li{
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
}
.caution-icon {
    font-size: 1.2rem;
    text-align: center;
    
}
.caution-text em {
    font-weight: bold;
    color: red;
}
.product-option, .product-caution{
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* Media Queries */
@media (max-width: 768px) {
    .price-plan{
        margin: 0 10px;
    }
}