:root {
    --ps-bg: #f3e8d7;
    --ps-bg-light: #f9f3ea;
    --ps-dark: #15100f;
    --ps-accent: #c59a5a;
    --ps-accent-light: #e2c89b;
    --ps-accent-soft: #f0d8ab;
    --ps-text: #3c342f;
    --ps-text-soft: #7a6a5d;
    --ps-white: #f9f5ef;
    --ps-radius-xl: 32px;
    --ps-radius-lg: 24px;
    --ps-shadow: 0 24px 70px rgba(60, 52, 47, .10);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ps-bg);
    color: var(--ps-text);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.ps-container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.ps-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(243, 232, 215, .93);
    border-bottom: 1px solid rgba(60, 52, 47, .07);
    backdrop-filter: blur(14px);
}

.ps-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.ps-logo {
    margin-right: auto;
    display: flex;
    flex-direction: column;
    font-family: "Playfair Display", serif;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ps-logo__main {
    font-size: 18px;
    line-height: 1.1;
}

.ps-logo__sub {
    color: var(--ps-text-soft);
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    letter-spacing: .25em;
}

.ps-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.ps-nav a {
    position: relative;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ps-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: var(--ps-accent);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.ps-nav a:hover::after {
    transform: scaleX(1);
}

.ps-header__actions {
    display: flex;
    gap: 10px;
}

.ps-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid var(--ps-accent);
    border-radius: 999px;
    background: var(--ps-accent);
    color: var(--ps-white);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: .2s ease;
}

.ps-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(197, 154, 90, .22);
}

.ps-button--outline {
    background: transparent;
    color: var(--ps-accent);
}

.ps-menu-toggle {
    display: none;
}

.ps-hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 70px 0 90px;
}

.ps-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
    align-items: center;
    gap: 70px;
}

.ps-kicker {
    margin-bottom: 16px;
    color: var(--ps-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.ps-hero h1,
.ps-section h2,
.ps-contact h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.08;
}

.ps-hero h1 {
    max-width: 700px;
    font-size: clamp(54px, 6.5vw, 92px);
}

.ps-hero__content > p {
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--ps-text-soft);
    font-size: 17px;
}

.ps-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ps-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ps-hero__visual::before,
.ps-hero__visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.ps-hero__visual::before {
    width: 470px;
    height: 470px;
    background: var(--ps-accent-soft);
    transform: translate(45px, -35px);
}

.ps-hero__visual::after {
    width: 170px;
    height: 170px;
    right: -20px;
    bottom: -30px;
    border: 1px solid var(--ps-accent);
}

.ps-hero__circle {
    position: relative;
    z-index: 2;
    width: min(440px, 100%);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    background: var(--ps-bg-light);
    box-shadow: var(--ps-shadow);
}

.ps-hero__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ps-image-placeholder,
.ps-about__placeholder,
.ps-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--ps-text-soft);
}

.ps-image-placeholder span,
.ps-about__placeholder span {
    font-size: 90px;
}

.ps-section {
    padding: 100px 0;
}

.ps-section-heading {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.ps-section-heading h2,
.ps-about h2,
.ps-contact h2 {
    font-size: clamp(34px, 4vw, 54px);
}

.ps-section-heading p {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--ps-text-soft);
}

.ps-about {
    background: var(--ps-bg-light);
}

.ps-about__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.ps-about__media {
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--ps-radius-xl);
    background: var(--ps-accent-soft);
    box-shadow: var(--ps-shadow);
}

.ps-about__media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.ps-about__card {
    padding: 55px;
    border: 1px solid rgba(197, 154, 90, .25);
    border-radius: var(--ps-radius-xl);
    background: rgba(255, 255, 255, .35);
}

.ps-about__card > p {
    margin: 22px 0 0;
    color: var(--ps-text-soft);
    font-size: 16px;
}

.ps-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.ps-badge {
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    border-radius: 20px;
    background: var(--ps-bg);
    text-align: center;
    transition: .2s ease;
}

a.ps-badge:hover {
    transform: translateY(-3px);
}

.ps-badge span {
    font-size: 28px;
}

.ps-badge strong {
    font-size: 12px;
}

.ps-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ps-product-card {
    overflow: hidden;
    border: 1px solid rgba(60, 52, 47, .08);
    border-radius: var(--ps-radius-lg);
    background: var(--ps-bg-light);
    transition: .2s ease;
}

.ps-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ps-shadow);
}

.ps-product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
}

.ps-product-card__image img {
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    transition: transform .3s ease;
}

.ps-product-card:hover img {
    transform: scale(1.04);
}

.ps-product-card__placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 55px;
}

.ps-product-card__body {
    padding: 20px;
}

.ps-product-card h3 {
    min-height: 48px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    line-height: 1.35;
}

.ps-product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.ps-price {
    color: var(--ps-accent);
    font-size: 14px;
    font-weight: 700;
}

.ps-cart-button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--ps-accent);
    color: white;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.ps-center {
    margin-top: 44px;
    text-align: center;
}

.ps-empty {
    padding: 35px;
    border-radius: var(--ps-radius-lg);
    background: var(--ps-bg-light);
    text-align: center;
}

.ps-care {
    background: var(--ps-dark);
    color: var(--ps-white);
}

.ps-care .ps-section-heading p {
    color: rgba(249, 245, 239, .66);
}

.ps-care__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ps-care__main-image {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--ps-radius-lg);
}

.ps-care__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ps-care-card {
    min-height: 200px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(226, 200, 155, .20);
    border-radius: var(--ps-radius-lg);
    background: rgba(255, 255, 255, .04);
    transition: .2s ease;
}

a.ps-care-card:hover {
    transform: translateY(-4px);
    border-color: var(--ps-accent);
}

.ps-care-card span {
    color: var(--ps-accent);
    font-size: 11px;
    letter-spacing: .15em;
}

.ps-care-card h3 {
    margin: 40px 0 0;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.25;
}

.ps-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 46px;
}

.ps-gallery__item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
}

.ps-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.ps-gallery__item:hover img {
    transform: scale(1.06);
}

.ps-contact {
    background: var(--ps-bg-light);
}

.ps-contact__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
    gap: 30px;
}

.ps-contact__video {
    min-height: 500px;
    overflow: hidden;
    border-radius: var(--ps-radius-xl);
    background: var(--ps-dark);
    color: var(--ps-white);
}

.ps-contact__video iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}

.ps-video-placeholder span {
    color: var(--ps-accent);
    font-size: 70px;
}

.ps-contact__card {
    padding: 60px;
    border-radius: var(--ps-radius-xl);
    background: var(--ps-bg);
}

.ps-contact__card > p {
    color: var(--ps-text-soft);
}

.ps-contact__details {
    display: grid;
    gap: 12px;
    margin-top: 35px;
}

.ps-contact__details > * {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(60, 52, 47, .12);
}

.ps-contact__details span {
    color: var(--ps-text-soft);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ps-footer {
    padding: 70px 0 25px;
    background: var(--ps-dark);
    color: var(--ps-white);
}

.ps-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
}

.ps-footer h3 {
    margin: 0 0 18px;
    color: var(--ps-accent-light);
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.ps-footer p,
.ps-footer a {
    display: block;
    margin: 7px 0;
    color: rgba(249, 245, 239, .66);
}

.ps-footer__bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(249, 245, 239, .48);
    font-size: 12px;
}

@media (max-width: 1000px) {
    .ps-header__actions {
        display: none;
    }

    .ps-menu-toggle {
        width: 42px;
        height: 42px;
        display: block;
        border: 0;
        background: transparent;
    }

    .ps-menu-toggle span,
    .ps-menu-toggle span::before,
    .ps-menu-toggle span::after {
        position: relative;
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ps-text);
    }

    .ps-menu-toggle span::before,
    .ps-menu-toggle span::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .ps-menu-toggle span::before {
        top: -7px;
    }

    .ps-menu-toggle span::after {
        top: 7px;
    }

    .ps-nav {
        position: absolute;
        top: 82px;
        right: 24px;
        left: 24px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 18px;
        border-radius: 20px;
        background: var(--ps-bg-light);
        box-shadow: var(--ps-shadow);
    }

    .ps-nav.is-open {
        display: flex;
    }

    .ps-hero__inner,
    .ps-about__grid,
    .ps-contact__grid {
        grid-template-columns: 1fr;
    }

    .ps-hero__content {
        text-align: center;
    }

    .ps-hero__content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .ps-actions {
        justify-content: center;
    }

    .ps-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-care__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 620px) {
    .ps-container {
        width: min(100% - 30px, 1200px);
    }

    .ps-header__inner {
        min-height: 70px;
    }

    .ps-nav {
        top: 70px;
        right: 15px;
        left: 15px;
    }

    .ps-logo__main {
        font-size: 15px;
    }

    .ps-hero {
        min-height: auto;
        padding: 65px 0 75px;
    }

    .ps-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ps-hero h1 {
        font-size: 48px;
    }

    .ps-hero__visual::before {
        width: 320px;
        height: 320px;
    }

    .ps-section {
        padding: 70px 0;
    }

    .ps-about__media,
    .ps-about__media img {
        min-height: 380px;
        height: 380px;
    }

    .ps-about__card,
    .ps-contact__card {
        padding: 32px 24px;
    }

    .ps-badges,
    .ps-product-grid,
    .ps-care__grid {
        grid-template-columns: 1fr;
    }

    .ps-care__main-image {
        grid-column: span 1;
        min-height: 320px;
    }

    .ps-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-contact__video,
    .ps-contact__video iframe {
        min-height: 330px;
    }

    .ps-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================================================
   PETSHOP BLOK SHOP
   ========================================================= */

.ps-shop-page,
.ps-product-page {
    padding: 54px 20px 80px;
    background: #f5ead7;
    color: #3f352e;
}

.ps-shop-shell {
    width: min(1320px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.ps-shop-sidebar {
    position: sticky;
    top: 24px;
    padding: 26px;
    border-radius: 24px;
    background: #24221f;
    color: #fffaf2;
    box-shadow: 0 18px 50px rgba(64, 44, 25, .15);
}

.ps-filter-heading {
    margin-bottom: 24px;
}

.ps-filter-heading span {
    display: block;
    font-size: 25px;
    font-weight: 800;
}

.ps-filter-heading small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 250, 242, .65);
}

.ps-filter-field {
    margin-bottom: 18px;
}

.ps-filter-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
}

.ps-filter-field input,
.ps-filter-field select {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 13px;
    outline: none;
    background: #151513;
    color: #fff;
}

.ps-filter-field input:focus,
.ps-filter-field select:focus {
    border-color: #d3aa70;
    box-shadow: 0 0 0 3px rgba(211, 170, 112, .16);
}

.ps-price-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.ps-filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 23px;
}

.ps-filter-actions button,
.ps-filter-actions a {
    min-height: 43px;
    padding: 0 17px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.ps-filter-actions button {
    background: #d3aa70;
    color: #272019;
}

.ps-filter-actions a {
    border: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: #fff;
}

.ps-shop-content {
    min-width: 0;
}

.ps-shop-header {
    margin-bottom: 20px;
    padding: 28px 30px;
    border: 1px solid #dec49c;
    border-radius: 24px;
    background: rgba(255, 250, 242, .76);
}

.ps-shop-kicker {
    color: #9a7040;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ps-shop-header h1 {
    margin: 5px 0 2px;
    font-size: clamp(32px, 4vw, 49px);
    line-height: 1;
}

.ps-shop-header p {
    margin: 8px 0 0;
    color: #75665b;
    font-weight: 700;
}

.ps-category-pills {
    margin-bottom: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ps-category-pills a {
    padding: 10px 16px;
    border: 1px solid #ddccb4;
    border-radius: 999px;
    background: rgba(255, 250, 242, .7);
    color: #51463e;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.ps-category-pills a:hover,
.ps-category-pills a.active {
    border-color: #2d2925;
    background: #2d2925;
    color: #fff;
}

.ps-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ps-product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(139, 104, 67, .16);
    border-radius: 22px;
    background: #fffaf2;
    box-shadow: 0 10px 32px rgba(75, 50, 27, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.ps-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(75, 50, 27, .13);
}

.ps-product-image {
    height: 230px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-decoration: none;
}

.ps-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ps-product-placeholder {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f2eadf;
    color: #998b7d;
}

.ps-product-body {
    padding: 18px;
}

.ps-product-title {
    min-height: 44px;
    display: block;
    color: #342d27;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
    text-decoration: none;
}

.ps-product-sku {
    margin-top: 8px;
    color: #9a8a7b;
    font-size: 11px;
}

.ps-product-bottom {
    margin-top: 17px;
    display: grid;
    gap: 13px;
}

.ps-product-price {
    color: #322a24;
    font-size: 20px;
    font-weight: 900;
}

.ps-add-cart {
    width: 100%;
    min-height: 43px;
    border: 0;
    border-radius: 999px;
    background: #2d2925;
    color: #fff;
    font-weight: 850;
    cursor: pointer;
}

.ps-add-cart:hover {
    background: #a77a45;
}

.ps-shop-empty {
    min-height: 260px;
    padding: 35px;
    border: 1px dashed #d4b98f;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 250, 242, .7);
    text-align: center;
}

.ps-shop-empty strong {
    font-size: 20px;
}

.ps-shop-empty span {
    margin-top: 7px;
    color: #7e7064;
}

.ps-shop-empty a {
    margin-top: 19px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #2d2925;
    color: #fff;
    text-decoration: none;
}

.ps-shop-pagination {
    margin-top: 30px;
}

/* Product detail */

.ps-product-detail,
.ps-related-products {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.ps-product-detail {
    padding: 34px;
    border: 1px solid #dfc7a3;
    border-radius: 28px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 42px;
    background: #fffaf2;
}

.ps-detail-image {
    min-height: 480px;
    padding: 28px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.ps-detail-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
}

.ps-detail-placeholder {
    color: #9b8c7e;
}

.ps-back-shop {
    color: #967048;
    font-weight: 800;
    text-decoration: none;
}

.ps-detail-content h1 {
    margin: 18px 0 10px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
}

.ps-detail-sku {
    color: #938275;
    font-size: 13px;
}

.ps-detail-price {
    margin: 24px 0;
    color: #2d2925;
    font-size: 32px;
    font-weight: 950;
}

.ps-detail-excerpt {
    color: #665950;
    line-height: 1.7;
}

.ps-detail-cart {
    margin-top: 26px;
    display: flex;
    align-items: end;
    gap: 12px;
}

.ps-detail-cart label {
    display: grid;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
}

.ps-detail-cart input {
    width: 90px;
    height: 48px;
    padding: 0 12px;
    border: 1px solid #d8c6ae;
    border-radius: 13px;
}

.ps-detail-cart button {
    min-height: 48px;
    padding: 0 25px;
    border: 0;
    border-radius: 999px;
    background: #2d2925;
    color: #fff;
    font-weight: 850;
    cursor: pointer;
}

.ps-detail-description {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e7d9c7;
    line-height: 1.75;
}

.ps-related-products {
    margin-top: 50px;
}

.ps-related-products h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

@media (max-width: 1100px) {
    .ps-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .ps-shop-shell,
    .ps-product-detail {
        grid-template-columns: 1fr;
    }

    .ps-shop-sidebar {
        position: static;
    }

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

    .ps-detail-image {
        min-height: 340px;
    }
}

@media (max-width: 560px) {
    .ps-shop-page,
    .ps-product-page {
        padding: 28px 12px 55px;
    }

    .ps-products-grid {
        grid-template-columns: 1fr;
    }

    .ps-product-image {
        height: 280px;
    }

    .ps-product-detail {
        padding: 18px;
    }

    .ps-detail-cart {
        align-items: stretch;
        flex-direction: column;
    }

    .ps-detail-cart input,
    .ps-detail-cart button {
        width: 100%;
    }
}

/* =========================================================
   PETSHOP PAGINATION FIX
   ========================================================= */

.ps-shop-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.ps-shop-pagination nav {
    width: auto;
}

.ps-shop-pagination nav > div:first-child {
    display: none;
}

.ps-shop-pagination nav > div:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-shop-pagination nav span,
.ps-shop-pagination nav a {
    text-decoration: none;
}

.ps-shop-pagination nav .relative {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ps-shop-pagination nav a,
.ps-shop-pagination nav span[aria-current="page"] span,
.ps-shop-pagination nav span[aria-disabled="true"] span {
    min-width: 38px;
    height: 38px;
    padding: 0 11px !important;
    border: 1px solid #d7c3a6 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #fffaf2 !important;
    color: #4a3e34 !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: none !important;
}

.ps-shop-pagination nav span[aria-current="page"] span {
    border-color: #2d2925 !important;
    background: #2d2925 !important;
    color: #fff !important;
}

.ps-shop-pagination nav span[aria-disabled="true"] span {
    opacity: .38;
    cursor: default;
}

.ps-shop-pagination nav a:hover {
    border-color: #b98b51 !important;
    background: #d8ad70 !important;
    color: #2d2925 !important;
}

.ps-shop-pagination svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    display: block !important;
}

@media (max-width: 560px) {
    .ps-shop-pagination nav a,
    .ps-shop-pagination nav span[aria-current="page"] span,
    .ps-shop-pagination nav span[aria-disabled="true"] span {
        min-width: 34px;
        height: 34px;
        padding: 0 9px !important;
        font-size: 13px;
    }

    .ps-shop-pagination svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* Custom pagination bez Laravel SVG strelica */

.ps-custom-pagination {
    margin: 34px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.ps-custom-pagination a,
.ps-custom-pagination span {
    box-sizing: border-box;
    text-decoration: none;
}

.ps-page-number,
.ps-page-arrow {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #d8c4a6;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fffaf2;
    color: #473b32;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.ps-page-arrow {
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 400;
    padding-bottom: 3px;
}

.ps-page-number:hover,
.ps-page-arrow:hover {
    border-color: #c59457;
    background: #ddb477;
    color: #2d2925;
}

.ps-page-number.active {
    border-color: #2d2925;
    background: #2d2925;
    color: #fff;
}

.ps-page-arrow.disabled {
    opacity: .35;
    cursor: default;
}

.ps-page-dots {
    width: 28px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #77695d;
    font-weight: 800;
}

.ps-custom-pagination svg {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

@media (max-width: 560px) {
    .ps-page-number,
    .ps-page-arrow {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .ps-page-arrow {
        font-size: 22px;
    }
}

/* =========================================================
   PETSHOP HEADER LOGO
   ========================================================= */

.ps-logo {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.ps-logo__image {
    width: min(var(--ps-logo-width, 300px), 100%);
    height: var(--ps-logo-height, 100px);
    max-width: 300px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.ps-logo__text {
    display: flex;
    flex-direction: column;
}

.ps-logo__main {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 760px) {
    .ps-logo__image {
        width: var(--ps-logo-mobile-width, auto);
        height: var(--ps-logo-mobile-height, 56px);
        max-width: 190px;
    }

    .ps-logo__main {
        font-size: 19px;
    }
}
