.home-store-page {
    --home-primary: var(--bs-primary, #81c408);
    --home-primary-dark: #5e9408;
    --home-primary-soft: #f1f8e7;
    --home-accent: var(--bs-secondary, #ffb524);
    --home-ink: #172033;
    --home-text: #4b586a;
    --home-muted: #778397;
    --home-line: #e5eaf0;
    --home-soft: #f6f8fa;
    --home-white: #fff;
    background: #fff;
    color: var(--home-text);
}

.home-store-page .footer {
    margin-top: 0 !important;
}

.home-store {
    overflow: hidden;
}

.home-store-container {
    max-width: 1320px;
}

.home-hero {
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 181, 36, .12), transparent 24%),
        radial-gradient(circle at 94% 20%, rgba(129, 196, 8, .12), transparent 27%),
        linear-gradient(180deg, #fbfcfd 0%, #fff 100%);
    padding: 1.5rem 0 3.25rem;
}

.home-hero-shell {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 1.4rem;
    box-shadow: 0 18px 55px rgba(23, 32, 51, .07);
    padding: clamp(1rem, 2.5vw, 2rem);
}

.home-eyebrow {
    align-items: center;
    background: var(--home-primary-soft);
    border: 1px solid rgba(129, 196, 8, .2);
    border-radius: 2rem;
    color: var(--home-primary-dark);
    display: inline-flex;
    font-size: .78rem;
    font-weight: 800;
    gap: .5rem;
    padding: .48rem .8rem;
}

.home-hero-content h1 {
    color: var(--home-ink);
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 900;
    line-height: 1.45;
    margin: 1rem 0;
}

.home-hero-content h1 span {
    color: var(--home-primary-dark);
    display: block;
}

.home-hero-content > p {
    color: var(--home-text);
    font-size: .96rem;
    line-height: 2.05;
    margin: 0 0 1.35rem;
    max-width: 37rem;
}

.home-hero-actions,
.home-about-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.home-primary-button,
.home-secondary-button {
    align-items: center;
    border-radius: .75rem;
    display: inline-flex;
    font-size: .84rem;
    font-weight: 800;
    gap: .55rem;
    justify-content: center;
    min-height: 48px;
    padding: .7rem 1.15rem;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.home-primary-button {
    background: var(--home-primary);
    border: 1px solid var(--home-primary);
    color: #fff;
}

.home-primary-button:hover {
    background: var(--home-primary-dark);
    border-color: var(--home-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.home-secondary-button {
    background: #fff;
    border: 1px solid #dbe1e7;
    color: var(--home-ink);
}

.home-secondary-button:hover {
    border-color: var(--home-primary);
    color: var(--home-primary-dark);
}

.home-hero-facts {
    align-items: center;
    border-top: 1px solid var(--home-line);
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.2rem;
    margin-top: 1.35rem;
    padding-top: 1rem;
}

.home-hero-facts span {
    color: var(--home-muted);
    font-size: .74rem;
}

.home-hero-facts strong {
    color: var(--home-ink);
    font-size: .9rem;
    margin-left: .2rem;
}

.home-hero-carousel {
    background: #f1f4f6;
    border-radius: 1rem;
    box-shadow: 0 10px 28px rgba(23, 32, 51, .08);
    overflow: hidden;
}

.home-hero-carousel picture {
    display: block;
}

.home-hero-carousel img {
    aspect-ratio: 1200 / 525;
    display: block;
    object-fit: cover;
    width: 100%;
}

.home-hero-carousel .carousel-control-prev,
.home-hero-carousel .carousel-control-next {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 50%;
    color: var(--home-ink);
    height: 42px;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
}

.home-hero-carousel .carousel-control-prev {
    right: .9rem;
}

.home-hero-carousel .carousel-control-next {
    left: .9rem;
}

.home-hero-carousel .carousel-control-prev:hover,
.home-hero-carousel .carousel-control-next:hover {
    background: var(--home-primary);
    color: #fff;
}

.home-hero-carousel .carousel-indicators {
    bottom: .65rem;
    gap: .25rem;
    margin-bottom: 0;
}

.home-hero-carousel .carousel-indicators button {
    border: 0;
    border-radius: 2rem;
    height: 7px;
    opacity: .65;
    width: 7px;
}

.home-hero-carousel .carousel-indicators button.active {
    background-color: var(--home-primary);
    opacity: 1;
    width: 24px;
}

.home-search {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 1rem;
    box-shadow: 0 14px 35px rgba(23, 32, 51, .1);
    margin: 1.5rem auto -4.25rem;
    max-width: 960px;
    padding: .7rem;
    position: relative;
    z-index: 4;
}

.home-search-main {
    align-items: center;
    display: flex;
    gap: .65rem;
}

.home-search-main > i {
    color: var(--home-muted);
    font-size: 1rem;
    margin-right: .45rem;
}

.home-search-main input {
    border: 0;
    color: var(--home-ink);
    flex: 1 1 auto;
    font-size: .87rem;
    min-height: 46px;
    min-width: 0;
    outline: 0;
}

.home-search-main input::placeholder {
    color: #98a2b1;
}

.home-search-main button {
    background: var(--home-primary);
    border: 0;
    border-radius: .7rem;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    min-height: 46px;
    min-width: 112px;
    padding: .65rem 1rem;
}

.home-search-main button:hover {
    background: var(--home-primary-dark);
}

.home-advanced-search {
    border-top: 1px solid var(--home-line);
    margin-top: .65rem;
    padding: .7rem .5rem 0;
}

.home-advanced-search summary {
    color: var(--home-muted);
    cursor: pointer;
    font-size: .76rem;
    font-weight: 700;
    list-style: none;
    width: max-content;
}

.home-advanced-search summary::-webkit-details-marker {
    display: none;
}

.home-advanced-search .form-label {
    color: var(--home-muted) !important;
    font-size: .72rem !important;
}

.home-advanced-search .form-select {
    border-color: #dce2e8 !important;
    border-radius: .6rem;
    font-size: .78rem;
}

.home-section {
    padding: clamp(2.6rem, 5vw, 4.5rem) 0;
}

.home-categories-section {
    padding-top: 5.3rem;
}

.home-soft-section,
.home-blog-section,
.home-testimonials-section {
    background: var(--home-soft);
}

.home-section-heading {
    align-items: flex-end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.65rem;
}

.home-section-heading > div > span {
    color: var(--home-primary-dark);
    display: block;
    font-size: .73rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.home-section-heading h2 {
    color: var(--home-ink);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 900;
    line-height: 1.55;
    margin: 0 0 .3rem;
}

.home-section-heading p {
    color: var(--home-muted);
    font-size: .8rem;
    line-height: 1.8;
    margin: 0;
}

.home-section-heading > a,
.home-text-link {
    align-items: center;
    color: var(--home-primary-dark);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .77rem;
    font-weight: 800;
    gap: .4rem;
}

.home-section-heading > a:hover,
.home-text-link:hover {
    color: var(--home-ink);
}

.home-category-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-category-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: .9rem;
    color: var(--home-text);
    display: flex;
    gap: .75rem;
    min-width: 0;
    padding: .9rem;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-category-card:hover {
    border-color: rgba(129, 196, 8, .55);
    box-shadow: 0 10px 25px rgba(23, 32, 51, .07);
    color: var(--home-text);
    transform: translateY(-3px);
}

.home-category-icon {
    align-items: center;
    background: var(--home-primary-soft);
    border-radius: .7rem;
    color: var(--home-primary-dark);
    display: flex;
    flex: 0 0 44px;
    height: 44px;
    justify-content: center;
}

.home-category-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

.home-category-content strong {
    color: var(--home-ink);
    font-size: .83rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-category-content small {
    color: var(--home-muted);
    font-size: .67rem;
    margin-top: .2rem;
}

.home-category-arrow {
    color: #b0b8c3;
    font-size: .72rem;
}

.home-trust-section {
    padding: 0 0 1rem;
}

.home-trust-grid {
    background: var(--home-ink);
    border-radius: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
}

.home-trust-item {
    align-items: center;
    color: rgba(255, 255, 255, .78);
    display: flex;
    gap: .7rem;
    padding: 1rem;
}

.home-trust-item:not(:last-child) {
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.home-trust-item:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff;
}

.home-trust-item > span {
    align-items: center;
    background: rgba(129, 196, 8, .16);
    border-radius: .65rem;
    color: var(--home-primary);
    display: flex;
    flex: 0 0 40px;
    height: 40px;
    justify-content: center;
}

.home-trust-item > div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.home-trust-item strong {
    color: #fff;
    font-size: .78rem;
}

.home-trust-item small {
    color: rgba(255, 255, 255, .58);
    font-size: .64rem;
    line-height: 1.6;
    margin-top: .16rem;
}

.home-product-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-store-card {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(23, 32, 51, .045);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home-store-card:hover {
    border-color: rgba(129, 196, 8, .45);
    box-shadow: 0 16px 34px rgba(23, 32, 51, .09);
    transform: translateY(-4px);
}

.home-store-card-media {
    aspect-ratio: 1 / 1;
    background: #f3f5f6;
    border-bottom: 1px solid var(--home-line);
    overflow: hidden;
    position: relative;
}

.home-store-card-image-link {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.home-store-card-image {
    display: block;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
    width: 100%;
}

.home-store-card:hover .home-store-card-image {
    transform: scale(1.025);
}

.home-store-card-image.is-fallback {
    max-height: 52%;
    max-width: 52%;
    opacity: .48;
}

.home-store-card-category,
.home-store-card-policy {
    backdrop-filter: blur(6px);
    border-radius: 2rem;
    font-size: .64rem;
    font-weight: 800;
    max-width: calc(100% - 5.3rem);
    overflow: hidden;
    padding: .38rem .62rem;
    position: absolute;
    text-overflow: ellipsis;
    top: .65rem;
    white-space: nowrap;
    z-index: 2;
}

.home-store-card-category {
    background: rgba(255, 255, 255, .92);
    color: var(--home-ink);
    left: .65rem;
}

.home-store-card-category:hover {
    color: var(--home-primary-dark);
}

.home-store-card-policy {
    bottom: .65rem;
    left: .65rem;
    top: auto;
}

.home-store-card-policy.is-discount {
    background: rgba(220, 53, 69, .92);
    color: #fff;
}

.home-store-card-policy.is-increase {
    background: rgba(23, 32, 51, .86);
    color: #fff;
}

.home-store-card-favorite {
    position: absolute;
    right: .65rem;
    top: .65rem;
    z-index: 3;
}

.home-store-card-favorite .favorite-heart-button {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(23, 32, 51, .08);
    box-shadow: 0 5px 16px rgba(23, 32, 51, .12);
    height: 38px;
    width: 38px;
}

.home-store-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1rem;
}

.home-store-card-meta {
    align-items: center;
    color: var(--home-muted);
    display: flex;
    font-size: .66rem;
    gap: .6rem;
    justify-content: space-between;
    min-height: 20px;
}

.home-store-card-meta > span {
    align-items: center;
    display: inline-flex;
    gap: .32rem;
}

.home-store-card-rating {
    color: var(--home-ink);
    direction: ltr;
}

.home-store-card-rating i {
    color: #f5a623;
}

.home-store-card-rating small {
    color: var(--home-muted);
}

.home-store-card-title {
    display: -webkit-box;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.75;
    margin: .65rem 0 1rem;
    min-height: 3.1rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-store-card-title a {
    color: var(--home-ink);
}

.home-store-card-title a:hover {
    color: var(--home-primary-dark);
}

.home-store-card-price {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: .28rem;
    margin-top: auto;
}

.home-store-card-price > span {
    color: var(--home-muted);
    flex-basis: 100%;
    font-size: .64rem;
}

.home-store-card-price strong {
    color: var(--home-ink);
    font-size: 1rem;
    font-weight: 900;
}

.home-store-card-price small {
    color: var(--home-muted);
    font-size: .65rem;
}

.home-store-card-actions {
    display: flex;
    gap: .5rem;
    margin-top: .85rem;
}

.home-store-card-actions form {
    display: flex;
    flex: 1 1 auto;
    margin: 0;
}

.home-store-card-primary-action,
.home-store-card-details {
    align-items: center;
    border: 0;
    border-radius: .65rem;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 800;
    gap: .4rem;
    justify-content: center;
    min-height: 42px;
}

.home-store-card-primary-action {
    background: var(--home-primary);
    color: #fff;
    flex: 1 1 auto;
    padding: .55rem .7rem;
    width: 100%;
}

.home-store-card-primary-action:hover {
    background: var(--home-primary-dark);
    color: #fff;
}

.home-store-card-details {
    background: #f2f4f6;
    color: var(--home-text);
    flex: 0 0 42px;
    width: 42px;
}

.home-store-card-details:hover {
    background: var(--home-ink);
    color: #fff;
}

.home-empty-state {
    align-items: center;
    background: var(--home-soft);
    border: 1px dashed #d8dee6;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
    padding: 2rem;
    text-align: center;
}

.home-empty-state i {
    color: #b9c1cc;
    font-size: 2.8rem;
    margin-bottom: .8rem;
}

.home-empty-state h3 {
    color: var(--home-ink);
    font-size: 1.05rem;
    font-weight: 800;
}

.home-empty-state p {
    color: var(--home-muted);
    font-size: .8rem;
    margin: 0;
}

.home-about-card {
    background:
        linear-gradient(120deg, rgba(129, 196, 8, .1), transparent 48%),
        var(--home-ink);
    border-radius: 1.15rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.home-about-content h2 {
    color: #fff;
    font-size: clamp(1.4rem, 2.7vw, 2.15rem);
    font-weight: 900;
    line-height: 1.7;
    margin: 1rem 0 .7rem;
}

.home-about-content > p {
    color: rgba(255, 255, 255, .67);
    font-size: .84rem;
    line-height: 2;
    margin-bottom: 1.25rem;
    max-width: 48rem;
}

.home-about-content .home-text-link {
    color: rgba(255, 255, 255, .8);
}

.home-about-points {
    display: grid;
    gap: .65rem;
}

.home-about-points > div {
    align-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: .8rem;
    display: flex;
    gap: .7rem;
    padding: .8rem;
}

.home-about-points > div > i {
    align-items: center;
    background: var(--home-primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: 0 0 28px;
    font-size: .65rem;
    height: 28px;
    justify-content: center;
}

.home-about-points span {
    display: flex;
    flex-direction: column;
}

.home-about-points strong {
    color: #fff;
    font-size: .78rem;
}

.home-about-points small {
    color: rgba(255, 255, 255, .55);
    font-size: .66rem;
    margin-top: .15rem;
}

.home-blog-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-blog-card {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 1rem;
    display: grid;
    grid-template-columns: 42% 58%;
    min-width: 0;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.home-blog-card:hover {
    box-shadow: 0 14px 30px rgba(23, 32, 51, .08);
    transform: translateY(-3px);
}

.home-blog-image {
    align-items: center;
    background: #edf1f3;
    display: flex;
    justify-content: center;
    min-height: 210px;
    overflow: hidden;
    position: relative;
}

.home-blog-image img {
    inset: 0;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: transform .35s ease;
    width: 100%;
}

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.04);
}

.home-blog-image > span {
    color: #b4bdc8;
    font-size: 2.6rem;
}

.home-blog-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 1rem;
}

.home-blog-content time {
    color: var(--home-muted);
    font-size: .64rem;
}

.home-blog-content h3 {
    display: -webkit-box;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.75;
    margin: .45rem 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-blog-content h3 a {
    color: var(--home-ink);
}

.home-blog-content p {
    color: var(--home-muted);
    display: -webkit-box;
    font-size: .7rem;
    line-height: 1.8;
    margin-bottom: .65rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-blog-content .home-text-link {
    margin-top: auto;
}

.home-license-section {
    padding-top: 3.25rem;
}

.home-license-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-license-card {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: .85rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: .55rem;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-license-card:hover {
    border-color: var(--home-accent);
    box-shadow: 0 10px 24px rgba(23, 32, 51, .08);
    transform: translateY(-3px);
}

.home-license-card img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.home-license-modal .modal-content {
    border: 0;
    border-radius: 1rem;
    overflow: hidden;
}

.home-license-modal .modal-title {
    color: var(--home-ink);
    font-size: 1rem;
    font-weight: 800;
}

.home-license-modal .modal-body {
    align-items: center;
    background: #f2f4f6;
    display: flex;
    justify-content: center;
    min-height: min(70vh, 650px);
    padding: 1.25rem;
}

.home-license-modal .modal-body img {
    max-height: 68vh;
    max-width: 100%;
    object-fit: contain;
}

.home-testimonial-list {
    display: grid;
    gap: 1rem;
    grid-auto-columns: minmax(300px, 31%);
    grid-auto-flow: column;
    overflow-x: auto;
    padding: .15rem .1rem .8rem;
    scroll-snap-type: x mandatory;
    scrollbar-color: #cbd2da transparent;
    scrollbar-width: thin;
}

.home-testimonial-card {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 1rem;
    padding: 1.1rem;
    scroll-snap-align: start;
}

.home-testimonial-top {
    align-items: center;
    display: flex;
    gap: .65rem;
}

.home-testimonial-avatar {
    align-items: center;
    background: var(--home-primary-soft);
    border-radius: 50%;
    color: var(--home-primary-dark);
    display: flex;
    flex: 0 0 42px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
}

.home-testimonial-top > div {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

.home-testimonial-top strong {
    color: var(--home-ink);
    font-size: .8rem;
}

.home-testimonial-top small {
    color: #198754;
    font-size: .62rem;
    margin-top: .2rem;
}

.home-testimonial-stars {
    color: #f5a623;
    direction: ltr;
    font-size: .68rem;
    white-space: nowrap;
}

.home-testimonial-card h3 {
    color: var(--home-ink);
    font-size: .85rem;
    font-weight: 800;
    margin: .9rem 0 .45rem;
}

.home-testimonial-card > p {
    color: var(--home-text);
    font-size: .75rem;
    line-height: 1.95;
    margin: .75rem 0;
}

.home-testimonial-card > a {
    color: var(--home-primary-dark);
    font-size: .68rem;
    font-weight: 800;
}

.home-faq-section {
    background: #fff;
}

.home-faq-layout {
    display: grid;
    gap: clamp(1.5rem, 4vw, 4rem);
    grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
}

.home-faq-intro h2 {
    color: var(--home-ink);
    font-size: clamp(1.45rem, 2.7vw, 2.15rem);
    font-weight: 900;
    margin: 1rem 0 .5rem;
}

.home-faq-intro > p {
    color: var(--home-muted);
    font-size: .8rem;
    line-height: 1.9;
    margin-bottom: 1.1rem;
}

.home-faq-list {
    display: grid;
    gap: .65rem;
}

.home-faq-item {
    border: 1px solid var(--home-line);
    border-radius: .8rem;
    overflow: hidden;
}

.home-faq-item[open] {
    border-color: rgba(129, 196, 8, .4);
}

.home-faq-item summary {
    align-items: center;
    color: var(--home-ink);
    cursor: pointer;
    display: flex;
    font-size: .82rem;
    font-weight: 800;
    gap: 1rem;
    justify-content: space-between;
    list-style: none;
    padding: 1rem;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-item summary i {
    color: var(--home-muted);
    font-size: .7rem;
    transition: transform .2s ease;
}

.home-faq-item[open] summary i {
    color: var(--home-primary-dark);
    transform: rotate(180deg);
}

.home-faq-item p {
    border-top: 1px solid var(--home-line);
    color: var(--home-text);
    font-size: .76rem;
    line-height: 2;
    margin: 0;
    padding: .85rem 1rem 1rem;
}

@media (min-width: 992px) {
    .home-store-page .featurs.is-empty-page-alert ~ .home-store {
        padding-top: 3rem;
    }
}

@media (max-width: 1199.98px) {
    .home-category-grid,
    .home-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-license-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-blog-card {
        grid-template-columns: 1fr;
    }

    .home-blog-image {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }
}

@media (max-width: 991.98px) {
    .home-hero-content {
        text-align: center;
    }

    .home-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-actions,
    .home-hero-facts {
        justify-content: center;
    }

    .home-hero-carousel {
        margin-top: .5rem;
    }

    .home-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-trust-item:nth-child(2) {
        border-left: 0;
    }

    .home-trust-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .home-about-card {
        grid-template-columns: 1fr;
    }

    .home-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-testimonial-list {
        grid-auto-columns: minmax(290px, 47%);
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        padding-top: .8rem;
    }

    .home-hero-shell {
        border-radius: 1rem;
        padding: .8rem;
    }

    .home-hero-content {
        padding: .6rem .45rem 0;
    }

    .home-hero-content h1 span {
        display: inline;
    }

    .home-hero-carousel img {
        aspect-ratio: 4 / 3;
    }

    .home-search {
        margin-bottom: -4rem;
    }

    .home-categories-section {
        padding-top: 5rem;
    }

    .home-section-heading {
        align-items: flex-start;
    }

    .home-section-heading p {
        max-width: 28rem;
    }

    .home-category-grid {
        display: flex;
        margin-left: -.75rem;
        margin-right: -.75rem;
        overflow-x: auto;
        padding: .15rem .75rem .7rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-category-grid::-webkit-scrollbar {
        display: none;
    }

    .home-category-card {
        flex: 0 0 min(78vw, 280px);
        scroll-snap-align: start;
    }

    .home-product-grid {
        gap: .75rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-store-card-content {
        padding: .75rem;
    }

    .home-store-card-title {
        font-size: .78rem;
        min-height: 2.8rem;
    }

    .home-store-card-primary-action {
        font-size: .66rem;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
    }

    .home-blog-card {
        grid-template-columns: 38% 62%;
    }

    .home-blog-image {
        aspect-ratio: auto;
        min-height: 190px;
    }

    .home-license-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-testimonial-list {
        grid-auto-columns: minmax(275px, 82%);
    }

    .home-faq-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .home-store-page {
        --back-to-top-bottom: 90px;
    }

    .home-hero-carousel .carousel-control-prev,
    .home-hero-carousel .carousel-control-next {
        height: 36px;
        width: 36px;
    }

    .home-search-main {
        gap: .35rem;
    }

    .home-search-main > i {
        display: none;
    }

    .home-search-main input {
        font-size: .74rem;
        padding: 0 .35rem;
    }

    .home-search-main button {
        font-size: .74rem;
        min-width: 78px;
        padding-left: .65rem;
        padding-right: .65rem;
    }

    .home-section {
        padding: 2.35rem 0;
    }

    .home-categories-section {
        padding-top: 4.75rem;
    }

    .home-section-heading {
        display: block;
        margin-bottom: 1.1rem;
    }

    .home-section-heading > a {
        margin-top: .65rem;
    }

    .home-trust-grid {
        grid-template-columns: 1fr;
    }

    .home-trust-item,
    .home-trust-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        border-left: 0;
    }

    .home-trust-item:last-child {
        border-bottom: 0;
    }

    .home-store-card-category {
        max-width: calc(100% - 4.4rem);
    }

    .home-store-card-category,
    .home-store-card-policy {
        font-size: .57rem;
        padding: .3rem .48rem;
    }

    .home-store-card-favorite .favorite-heart-button {
        height: 34px;
        width: 34px;
    }

    .home-store-card-meta {
        font-size: .59rem;
    }

    .home-store-card-price strong {
        font-size: .86rem;
    }

    .home-store-card-actions {
        gap: .35rem;
    }

    .home-store-card-primary-action,
    .home-store-card-details {
        min-height: 38px;
    }

    .home-store-card-details {
        flex-basis: 38px;
        width: 38px;
    }

    .home-about-card {
        border-radius: .9rem;
    }

    .home-blog-card {
        grid-template-columns: 1fr;
    }

    .home-blog-image {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .home-license-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-license-modal .modal-content {
        border-radius: 0;
    }
}

@media (max-width: 389.98px) {
    .home-store-card-actions {
        flex-wrap: wrap;
    }

    .home-store-card-actions form {
        flex-basis: 100%;
    }

    .home-store-card-details {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-store-page *,
    .home-store-page *::before,
    .home-store-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
