.elementor-123 .elementor-element.elementor-element-d0b5af5{--display:flex;--min-height:436px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-123 .elementor-element.elementor-element-d0b5af5:not(.elementor-motion-effects-element-type-background), .elementor-123 .elementor-element.elementor-element-d0b5af5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#B21F1F;}.elementor-123 .elementor-element.elementor-element-76737c5{--display:flex;}@media(min-width:768px){.elementor-123 .elementor-element.elementor-element-d0b5af5{--content-width:1060px;}}/* Start custom CSS for html, class: .elementor-element-7850f9c */.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    background: transparent;
}

.product-card {
    background: #1c1c1e;
    color: #f1f1f1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.8);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.product-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #d0d0d0;
}

.product-btn {
    background-color: #ff6b00;
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.product-btn:hover {
    background-color: #e65a00;
    color: #fff;
}/* End custom CSS */