/* LilBud custom fixes (2026-09-04) */
.cms-porto_home_4 .page-title-wrapper .page-title,
.cms-index-index .page-title-wrapper .page-title {
    text-align: center;
    width: 100%;
}
.order-attributes {
    border: 2px solid #e02b27;
    border-radius: 6px;
    padding: 14px 16px;
    margin: 4px 0 20px;
    background: #fff8f8;
}
.order-attributes-form .field .control input,
.order-attributes-form .field .control select,
.order-attributes-form .field .control textarea {
    border-color: #e02b27 !important;
}
.order-attributes-form .field > .label {
    color: #b00000;
    font-weight: 600;
}


/* Hardening 2026-09-11: hide the unused "upload from URL" control (backend endpoints disabled) */
.externalupload, #popup-modal-external { display: none !important; }

/* Product cards -> match category tile card look (2026-09-26) */
.products-grid .product-item .product-item-info {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    transition: border-color .26s ease, box-shadow .26s ease, transform .26s ease;
}
.products-grid .product-item .product-item-info:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(15,30,61,.10);
    transform: translateY(-3px);
}
.products-grid .product-item .product-item-photo {
    border-radius: 8px;
    overflow: hidden;
}
.products-grid .product-item .product-item-info:hover .product-item-photo,
.products-grid .product-item .product-item-photo:hover {
    box-shadow: none;
}

/* Product grid -> same auto-fill grid as category tiles (2026-09-26) */
.products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.products-grid .product-items .product-item {
    float: none;
    width: auto;
    margin: 0;
}
