/* Arigato Corporation — modern polish (2026-06) */

/* Softer, modern cards */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 30, 50, .16);
}
.product-card__image img,
.image--type--product img {
    border-radius: 8px;
}

/* Buttons */
.btn {
    border-radius: 8px;
    transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 30, 50, .18);
}

/* Form controls */
.form-control, select.form-control {
    border-radius: 8px;
}
.form-control:focus {
    border-color: #f08c28;
    box-shadow: 0 0 0 3px rgba(240, 140, 40, .18);
}

/* Stock table */
.table td, .table th { vertical-align: middle; }
.table tbody tr { transition: background-color .15s ease; }
.table tbody tr:hover { background-color: #f6f9fc; }
.table img { border-radius: 6px; }

/* Section headings */
.block-sale__title, .block-header__title {
    letter-spacing: .02em;
}

/* Status badges */
.status-badge__body { border-radius: 14px; }

/* Category strip headers in stock list */
.alert-primary {
    border-radius: 10px;
    background: linear-gradient(90deg, #16263d, #27425f);
    color: #fff;
    border: none;
    letter-spacing: .04em;
}

/* Smooth page feel */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* Slideshow: keep banner crisp on wide screens */
.block-slideshow__item-image--desktop { background-size: cover !important; background-position: center; }
