.similar-product-image {
    height: 300px;
    object-fit: cover;
}

.image-zoom-hover {
    transition: transform .2s;
}

.image-zoom-hover:hover {
    transform: scale(1.15);
}

.product-grid .card-img-top {
  height: 330px; /* You can adjust this value as needed */
  object-fit: cover;
}

.trending-products-section .card-img-top {
  height: 413px; /* Increased by ~25% from 330px */
  object-fit: cover;
}

#mainImage {
    max-height: 480px;
    width: 100%;
    object-fit: cover;
}

.thumbnail-image {
    height: 100px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    #mainImage {
        max-height: 300px;
    }
}

/* Checkout Page Styles */

.payment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.payment-option-card {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.payment-option-card:hover {
    border-color: #000;
}

.payment-option-card.selected {
    border-color: #000;
    box-shadow: 0 0 0 2px #000;
}

.payment-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.payment-option-label {
    padding: 1.5rem;
    display: block;
    width: 100%;
    margin-bottom: 0;
}

.payment-option-content {
    display: flex;
    flex-direction: column;
}

.payment-option-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-option-title i {
    font-size: 1.5rem;
}

.payment-option-desc {
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.trust-signals {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-signal-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 0.85rem;
    color: #555;
}

.trust-signal-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.btn-ecomm-lg {
    padding: 0.9rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-ecomm-lg:hover {
    transform: translateY(-2px);
}

.order-summary-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    background-color: #f8f9fa;
}

.order-summary-card .h5 {
    font-weight: 600;
}

.order-summary-card hr {
    border-top: 1px solid #ccc;
}

.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Make space for sticky footer */
body {
    padding-bottom: 80px; /* Should be height of footer */
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding-bottom: 100px; /* Ensure content is not hidden by footer */
    }
}
