.brands-page .sp-page-content {
    padding-top: 0;
}

.about-brands-page .sp-section {
    padding: 15vh 0 5vh;
}

.brands-header {
    text-align: left;
    margin-bottom: 0;
}

.brands-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: #111;
    margin: 0 0 2rem;
    position: relative;
    z-index: 1;
}

.brands-accent,
.sp-accent-line {
    width: 80px;
    height: 3px;
    background: #c8a97e;
    margin-bottom: 4rem;
}

.brands-hero-img {
    width: 100%;
    margin-bottom: 3rem;
}

.brands-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.brands-description {
    max-width: 100%;
    margin-bottom: 4rem;
}

.brands-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.brands-description strong {
    font-weight: 700;
}

.flagship-header {
    text-align: center;
    margin-bottom: 4rem;
}

.flagship-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw + 1rem, 3rem);
    font-style: italic;
    color: #111;
    margin-bottom: 1rem;
}

.view-all-link {
    font-family: 'Archivo', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-decoration: underline;
    color: #111;
    text-transform: uppercase;
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 0;
    margin-bottom: 5rem;
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
}

.shop-card {
    background: #fff;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.shop-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.shop-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.shop-card__img-wrap {
    background: #f5f5f5;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: block;
}

.shop-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14%;
    display: block;
    transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.shop-card:hover .shop-card__img-wrap img {
    transform: scale(1.05);
}

.shop-card__quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 13px;
    background: #111;
    color: #fff;
    border: none;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 10;
    transform: translateY(100%);
    transition:
        transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.25s ease;
}

.shop-card:hover .shop-card__quick-add {
    transform: translateY(0);
}

.shop-card__quick-add:hover {
    background: #2a2a2a;
}

.shop-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
}

.shop-card__badge--new {
    background: #111;
    color: #fff;
}

.shop-card__badge--sale {
    background: #c8a98a;
    color: #fff;
}

.shop-card__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.shop-card__wishlist svg {
    width: 18px;
    height: 18px;
    stroke: #aaa;
    fill: none;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.shop-card__wishlist:hover svg {
    stroke: #555;
}

.shop-card__wishlist.active svg {
    fill: #111;
    stroke: #111;
}

.shop-card__info {
    padding: 14px 14px 20px;
}

.shop-card__name {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.45;
    color: #111;
    margin-bottom: 6px;
}

.shop-card__price {
    display: block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: #111;
}

:root {
    --sp-container-width: 1600px;
    --sp-accent: #c8a97e;
    --sp-bg-muted: #f9f8f6;
    --sp-text-muted: #666;
}

.sp-section {
    position: relative;
    padding: 15vh 0;
    background: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.2s ease,
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* rijesiti*/
.about-brands-page .sp-section {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
} 

.sp-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sp-section--muted {
    background: var(--sp-bg-muted);
}

.sp-container {
    max-width: var(--sp-container-width);
    margin: 0 auto;
    padding: 0 4vw;
}

.sp-section-num {
    position: absolute;
    top: 5vh;
    right: 4vw;
    z-index: 0;
    font-family: 'Archivo', sans-serif;
    font-size: 8rem;
    font-weight: 200;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

.sp-section-title {
    position: relative;
    z-index: 1;
    margin: 0 0 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: #111;
}

.sp-intro-text {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-bottom: 8vh;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: #333;
}

.sp-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.sp-value-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.5s ease;
}

.sp-value-item:hover {
    border-color: var(--sp-accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.sp-value-icon {
    width: 64px;
    height: 64px;
    color: var(--sp-accent);
}

.sp-value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--sp-accent);
}

.sp-value-text h3 {
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #111;
}

.sp-value-text p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--sp-text-muted);
}

.sp-equality-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.sp-equality-text p,
.sp-split-text p,
.sp-step-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.sp-score-box {
    padding: 4rem;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
}

.sp-score-val {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: #111;
}

.sp-score-label {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sp-accent);
}

.sp-split-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.sp-split-row--reverse {
    direction: ltr;
}

.sp-subsection-title {
    margin: 0 0 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #111;
}

.sp-split-img {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.sp-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-split-img:hover img {
    transform: scale(1.08);
}

.sp-climate-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 15vh 0;
    text-align: center;
}

.sp-climate-text p {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.8;
    color: #444;
    font-style: italic;
}

.sp-climate-text--left,
.sp-climate-text--right {
    text-align: center;
    padding: 0;
    border: none;
}

.sp-climate-visual {
    display: flex;
    justify-content: center;
    width: 100%;
}

.sp-climate-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.05));
    transition: transform 0.6s ease;
}

.sp-climate-visual:hover img {
    transform: scale(1.05);
}

.sp-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.sp-step-block {
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.sp-step-block h3 {
    margin: 0 0 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #111;
}

.sp-step-img {
    width: 100%;
    margin: 2rem auto 0;
    display: block;
}

/* //CSS*/

@media (min-width: 768px) {

    /*CSS*/
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    /* //CSS*/
}

@media (min-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sp-equality-content,
    .sp-split-row,
    .sp-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5vw;
    }

    .sp-split-row {
        gap: 8vw;
    }

    .sp-split-row--reverse {
        direction: rtl;
    }

    .sp-split-row--reverse>* {
        direction: ltr;
    }

    .sp-split-img {
        height: 70vh;
    }

    .sp-climate-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 1vw;
        align-items: center;
        text-align: left;
    }

    .sp-climate-text--left {
        text-align: right;
        padding-right: 2rem;
        border-right: 1px solid #eee;
    }

    .sp-climate-text--right {
        text-align: left;
        padding-left: 2rem;
        border-left: 1px solid #eee;
    }

    .sp-step-img {
        width: 70%;
        margin-top: 4rem;
    }

    /* //CSS*/
}

@media (min-width: 1280px) {
    :root {
        --sp-container-width: 1600px;
    }

    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sp-values-grid {
        gap: 6vh 10vw;
    }
}