.brandseo-front {
    margin-bottom: 40px;
}

.brandseo-front-hero {
    min-height: 460px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 54px 28px;
}

.brandseo-front-hero-inner {
    max-width: 900px;
}

.brandseo-front-logo {
    max-width: 190px;
    max-height: 95px;
    object-fit: contain;
    margin-bottom: 22px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}

.brandseo-front-hero h1 {
    color: #fff;
    font-size: 46px;
    line-height: 1.12;
    margin: 0 0 16px;
}

.brandseo-front-hero p {
    font-size: 14px;
    line-height: 1.6;
    margin: 20px auto;
    max-width: 780px;
}

.brandseo-front-content {
    max-width: 980px;
    margin: 0 auto;
}

.brandseo-front-section {
    margin-bottom: 42px;
    font-size: 16px;
    line-height: 1.75;
}

.brandseo-front-section h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 16px;
}

.brandseo-front-section p {
    margin-bottom: 14px;
}

.brandseo-front-opinion {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 28px;
}

@media (max-width: 768px) {
    .brandseo-front-hero {
        min-height: 380px;
        border-radius: 12px;
        padding: 38px 20px;
    }

    .brandseo-front-hero h1 {
        font-size: 32px;
    }

    .brandseo-front-hero p {
        font-size: 16px;
    }

    .brandseo-front-section h2 {
        font-size: 25px;
    }
}


.brandseo-front-products{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(220px,1fr));
    gap:24px;
    margin-top:24px;
}

.brandseo-front-product{
    display:block;
    border:1px solid #e6e6e6;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    transition:.25s;
}

.brandseo-front-product:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.brandseo-front-product>a{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:18px;
    color:inherit;
    text-decoration:none;
}

.brandseo-front-product img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    margin-bottom:14px;
}

.brandseo-front-product h3{
    font-size:15px;
    line-height:1.4;
    margin:0 0 10px;
    flex:1;
}

.brandseo-front-product span{
    font-size:18px;
    font-weight:700;
}

@media (max-width:1200px){
    .brandseo-front-products{
        grid-template-columns:repeat(3,minmax(220px,1fr));
    }
}

@media (max-width:900px){
    .brandseo-front-products{
        grid-template-columns:repeat(2,minmax(180px,1fr));
    }
}

@media (max-width:600px){
    .brandseo-front-products{
        grid-template-columns:1fr;
    }
}


.brandseo-front-content{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.brandseo-front-section{
    padding:70px 0;
    border-bottom:1px solid #ececec;
    margin-bottom:0;
}

.brandseo-front-section:last-child{
    border-bottom:none;
}

.brandseo-front-section-header{
    max-width:760px;
    margin-bottom:40px;
}

.brandseo-front-section-header h2{
    font-size:38px;
    line-height:1.15;
    margin:0 0 18px;
}

.brandseo-front-section-body{
    width:100%;
}

@media(max-width:768px){

.brandseo-front-section{
    padding:45px 0;
}

.brandseo-front-section-header h2{
    font-size:30px;
}

}

.brandseo-front-highlights{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:26px;
    margin:34px 0;
}

.brandseo-front-highlights>div{
    min-width:120px;
}

.brandseo-front-highlights strong{
    display:block;
    font-size:30px;
    font-weight:700;
}

.brandseo-front-highlights span{
    opacity:.85;
    font-size:14px;
}

.brandseo-front-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    border-radius:40px;
    background:#fff;
    color:#263238;
    font-weight:700;
    text-decoration:none;
    transition:.2s;
}

.brandseo-front-cta:hover{
    transform:translateY(-2px);
    text-decoration:none;
}

@media(max-width:768px){

.brandseo-front-highlights{
gap:18px;
}

.brandseo-front-highlights strong{
font-size:24px;
}

}

.brandseo-front-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.brandseo-front-product-card {
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    transition: transform .18s ease, box-shadow .18s ease;
}

.brandseo-front-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.brandseo-front-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    padding: 18px;
    background: #fafafa;
    text-decoration: none;
}

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

.brandseo-front-product-image span {
    color: #90a4ae;
    font-weight: 700;
}

.brandseo-front-product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.brandseo-front-product-info h3 {
    font-size: 15px;
    line-height: 1.35;
    margin: 0 0 12px;
    flex: 1;
}

.brandseo-front-product-info h3 a {
    color: inherit;
    text-decoration: none;
}

.brandseo-front-product-price {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
}

.brandseo-front-product-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    padding: 10px 16px;
    background: #263238;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .brandseo-front-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .brandseo-front-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    .brandseo-front-products-grid {
        grid-template-columns: 1fr !important;
    }
}

.brandseo-front-faq-list {
    max-width: 920px;
}

.brandseo-front-faq-item {
    border: 1px solid #e6e8eb;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 12px;
    overflow: hidden;
}

.brandseo-front-faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 800;
    color: #263238;
    list-style: none;
}

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

.brandseo-front-faq-item summary:after {
    content: "+";
    float: right;
    font-size: 22px;
    line-height: 1;
}

.brandseo-front-faq-item[open] summary:after {
    content: "–";
}

.brandseo-front-faq-answer {
    padding: 0 22px 20px;
    color: #455a64;
    line-height: 1.7;
}

.brandseo-front-faq-answer p:last-child {
    margin-bottom: 0;
}

.brandseo-front-opinion-section{
    padding-top:30px;
}

.brandseo-front-opinion-card{
    max-width:960px;
    margin:0 auto;
    background:#f7f8fa;
    border-left:6px solid #7b1e28;
    border-radius:14px;
    padding:42px;
}

.brandseo-front-opinion-label{
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:12px;
    font-weight:800;
    color:#7b1e28;
    margin-bottom:16px;
}

.brandseo-front-opinion-card blockquote{
    margin:0;
    padding:0;
    font-size:22px;
    line-height:1.7;
    color:#263238;
    font-style:normal;
}

.brandseo-front-opinion-card p:last-child{
    margin-bottom:0;
}

@media(max-width:768px){

.brandseo-front-opinion-card{
    padding:24px;
}

.brandseo-front-opinion-card blockquote{
    font-size:18px;
}

}

.brandseo-front-philosophy{
    max-width:900px;
    padding:36px;
    border-radius:16px;
    background:#fcfcfc;
    border:1px solid #ececec;
    font-size:18px;
    line-height:1.8;
}

.brandseo-front-philosophy p:last-child{
    margin-bottom:0;
}

.brandseo-front-hero{
    position:relative;
    min-height:560px;
    background-position:center;
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Tamaños */
.brandseo-front-hero--small  { min-height: 360px; }
.brandseo-front-hero--medium { min-height: 560px; }
.brandseo-front-hero--large  { min-height: 760px; }

/* Alineación */
.brandseo-front-hero--left   { justify-content: flex-start; text-align: left; }
.brandseo-front-hero--center { justify-content: center;     text-align: center; }
.brandseo-front-hero--right  { justify-content: flex-end;   text-align: right; }

.brandseo-front-hero--left   .brandseo-front-hero-inner { padding-left: 48px; }
.brandseo-front-hero--right  .brandseo-front-hero-inner { padding-right: 48px; }

.brandseo-front-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(20,27,34,.56);
}

.brandseo-front-hero-inner{
    position:relative;
    z-index:2;
    width:100%;
    max-width:980px;
    padding:80px 24px;
    text-align:center;
    color:#fff;
}

.brandseo-front-logo{
    max-height:120px;
    width:auto;
    margin:0 auto 34px;
    display:block;
}

.brandseo-front-hero h1{
    font-size:56px;
    line-height:1.1;
    margin:0;
    color:#fff;
}

.brandseo-front-hero-text{
    max-width:820px;
    margin:28px auto 0;
    font-size:20px;
    line-height:1.8;
    color:#fff;
    opacity:.96;
}

.brandseo-front-hero-stats{
    display:flex;
    justify-content:center;
    gap:48px;
    flex-wrap:wrap;
    margin:42px 0;
}

.brandseo-front-hero-stat{
    min-width:140px;
}

.brandseo-front-hero-stat strong{
    display:block;
    font-size:34px;
    font-weight:800;
    line-height:1;
}

.brandseo-front-hero-stat span{
    display:block;
    margin-top:8px;
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
    opacity:.85;
}

.brandseo-front-hero-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:999px;
    background:#fff;
    color:#263238!important;
    text-decoration:none!important;
    font-weight:800;
    transition:.2s;
}

.brandseo-front-hero-button:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){

.brandseo-front-hero{
    min-height:520px;
}

.brandseo-front-hero h1{
    font-size:38px;
}

.brandseo-front-hero-text{
    font-size:17px;
}

.brandseo-front-hero-stats{
    gap:22px;
}

.brandseo-front-hero-stat strong{
    font-size:26px;
}

}

.brandseo-front-cta-section{
    padding:70px 0 90px;
}

.brandseo-front-cta-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    background:#263238;
    color:#fff;
    border-radius:22px;
    padding:42px;
}

.brandseo-front-cta-card span{
    display:block;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:12px;
    font-weight:800;
    opacity:.75;
    margin-bottom:10px;
}

.brandseo-front-cta-card h2{
    color:#fff;
    font-size:32px;
    line-height:1.2;
    margin:0;
}

.brandseo-front-cta-card a{
    white-space:nowrap;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:999px;
    background:#fff;
    color:#263238!important;
    text-decoration:none!important;
    font-weight:800;
}

@media(max-width:768px){

.brandseo-front-cta-card{
    display:block;
    padding:28px;
}

.brandseo-front-cta-card h2{
    font-size:25px;
    margin-bottom:22px;
}

}

.brandseo-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brandseo-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8ddd6;
    color: #263238 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    transition: background .15s, transform .15s;
}

.brandseo-social-link:hover {
    background: #f0ebe6;
    transform: translateX(3px);
    text-decoration: none !important;
}

.brandseo-social-link .fa {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #7b1e28;
    flex-shrink: 0;
}

.brandseo-front-breadcrumb {
    max-width: 1200px;
    margin: 0 auto 18px;
    padding: 0 20px;
    font-size: 13px;
    color: #78909c;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.brandseo-front-breadcrumb a {
    color: #455a64;
    text-decoration: none;
    font-weight: 700;
}

.brandseo-front-breadcrumb a:hover {
    text-decoration: underline;
}

.brandseo-front-breadcrumb strong {
    color: #263238;
}

.brandseo-front-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.brandseo-front-related-card {
    display: block;
    padding: 22px;
    border: 1px solid #e6e8eb;
    border-radius: 16px;
    background: #fff;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease;
}

.brandseo-front-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.brandseo-front-related-card strong {
    display: block;
    color: #263238;
    font-size: 18px;
    margin-bottom: 8px;
}

.brandseo-front-related-card span {
    color: #78909c;
    font-weight: 700;
}

@media (max-width: 768px) {
    .brandseo-front-related-grid {
        grid-template-columns: 1fr;
    }
}

.brandseo-brands-page .brandseo-front-section-header h1 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 14px;
}

.brandseo-brands-page .brandseo-front-section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #607d8b;
}

.brandseo-front-related-card p {
    margin: 12px 0 0;
    color: #607d8b;
    line-height: 1.55;
}

.brandseo-front-empty-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 44px 28px;
}

.brandseo-front-empty-card h2 {
    font-size: 34px;
    margin: 0 0 12px;
}

.brandseo-front-empty-card p {
    color: #607d8b;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.brandseo-front-empty-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 999px;
    background: #263238;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}

.brandseo-preview-banner {
    max-width: 1200px;
    margin: 0 auto 16px;
    padding: 12px 18px;
    border-radius: 10px;
    background: #fff8e1;
    color: #795548;
    font-weight: 800;
    text-align: center;
}

.brandseo-front-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, .85fr);
    gap: 42px;
    align-items: start;
}

.brandseo-front-main,
.brandseo-front-sidebar {
    min-width: 0;
}

.brandseo-front-sidebar {
    position: sticky;
    top: 24px;
}

.brandseo-front-sidebar .brandseo-front-section {
    padding: 0 0 34px;
    border-bottom: none;
}

.brandseo-front-sidebar .brandseo-front-section-header {
    margin-bottom: 18px;
}

.brandseo-front-sidebar .brandseo-front-section-header h2 {
    font-size: 24px;
}

.brandseo-front-sidebar .brandseo-front-products-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
}

.brandseo-front-sidebar .brandseo-front-product-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
}

.brandseo-front-sidebar .brandseo-front-product-image {
    height: 150px;
    padding: 12px;
}

.brandseo-front-sidebar .brandseo-front-product-info {
    padding: 14px;
}

.brandseo-front-sidebar .brandseo-front-product-button {
    display: none;
}

.brandseo-front-sidebar .brandseo-front-related-grid {
    grid-template-columns: 1fr;
}

.brandseo-front-sidebar .brandseo-front-cta-section {
    padding: 0;
}

.brandseo-front-sidebar .brandseo-front-cta-card {
    display: block;
    padding: 26px;
}

.brandseo-front-sidebar .brandseo-front-cta-card h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

@media (max-width: 1100px) {
    .brandseo-front-layout {
        grid-template-columns: 1fr;
    }

    .brandseo-front-sidebar {
        position: static;
    }

    .brandseo-front-sidebar .brandseo-front-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .brandseo-front-sidebar .brandseo-front-product-card {
        display: flex;
    }
}

@media (max-width: 560px) {
    .brandseo-front-sidebar .brandseo-front-products-grid {
        grid-template-columns: 1fr !important;
    }
}

/* BrandSEO v1 final landing layout */

.brandseo-front-content {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 22px !important;
}

.brandseo-brand-content-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr) !important;
    gap: 34px !important;
    align-items: start !important;
    margin: 48px 0 18px !important;
}

.brandseo-brand-content-grid .brandseo-front-section {
    padding: 0 !important;
    border-bottom: 0 !important;
    margin: 0 0 34px !important;
}

.brandseo-brand-content-grid .brandseo-front-section-header {
    margin-bottom: 20px !important;
}

.brandseo-brand-content-grid .brandseo-front-section-header h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
}

.brandseo-front-products-section {
    padding: 54px 0 !important;
    border-top: 1px solid #ececec !important;
    border-bottom: 1px solid #ececec !important;
    margin-top: 30px !important;
}

.brandseo-front-products-section .brandseo-front-section-header {
    max-width: 100% !important;
    margin-bottom: 26px !important;
}

.brandseo-front-products-section .brandseo-front-section-header h2 {
    font-size: 34px !important;
}

.brandseo-front-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.brandseo-front-product-card {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
}

.brandseo-front-product-image {
    height: 260px !important;
}

.brandseo-brand-bottom-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr) !important;
    gap: 34px !important;
    align-items: start !important;
}

.brandseo-brand-bottom-grid .brandseo-front-section {
    padding: 54px 0 0 !important;
    border-bottom: 0 !important;
}

.brandseo-brand-bottom-grid .brandseo-front-related-grid {
    grid-template-columns: 1fr !important;
}

.brandseo-front-cta-section {
    padding: 54px 0 84px !important;
}

@media (max-width: 1100px) {
    .brandseo-brand-content-grid,
    .brandseo-brand-bottom-grid {
        grid-template-columns: 1fr !important;
    }

    .brandseo-front-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 800px) {
    .brandseo-front-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    .brandseo-front-products-grid {
        grid-template-columns: 1fr !important;
    }

    .brandseo-brand-content-grid {
        margin-top: 34px !important;
    }
}

/* BrandSEO v2 professional brand landing */

.brandseo-v2-container {
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.brandseo-v2-main-grid {
    display: grid !important;
    grid-template-columns: 25% minmax(0, 75%) !important;
    gap: 28px !important;
    align-items: start !important;
    padding: 48px 0 32px !important;
}

.brandseo-v2-left,
.brandseo-v2-right {
    min-width: 0 !important;
}

.brandseo-side-card {
    background: #f7f3ee !important;
    border: 1px solid #eee4dc !important;
    border-radius: 8px !important;
    padding: 28px 24px !important;
    margin: 0 0 14px !important;
}

.brandseo-side-card h2 {
    font-size: 27px !important;
    line-height: 1.15 !important;
    margin: 0 0 22px !important;
    color: #1f1f1f !important;
}

.brandseo-side-card h2:after {
    content: "" !important;
    display: block !important;
    width: 32px !important;
    height: 2px !important;
    background: #b98245 !important;
    margin-top: 14px !important;
}

.brandseo-side-card div {
    font-size: 14px !important;
    line-height: 1.72 !important;
    color: #263238 !important;
}

.brandseo-side-card p:last-child {
    margin-bottom: 0 !important;
}

.brandseo-products-v2 {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

.brandseo-products-v2-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin-bottom: 22px !important;
}

.brandseo-products-v2-header h2 {
    font-size: 30px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    color: #1f1f1f !important;
}

.brandseo-products-v2-header a {
    color: #1f1f1f !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.brandseo-products-v2-header a:after {
    content: " →" !important;
    margin-left: 6px !important;
}

.brandseo-products-v2-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.brandseo-product-v2-card {
    background: #fff !important;
    border: 1px solid #eadfd6 !important;
    border-radius: 7px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    transition: box-shadow .18s ease, transform .18s ease !important;
}

.brandseo-product-v2-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.08) !important;
}

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

.brandseo-product-v2-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.brandseo-product-v2-body {
    padding: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.brandseo-product-v2-body h3 {
    margin: 0 0 10px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    min-height: 38px !important;
}

.brandseo-product-v2-body h3 a {
    color: #1f1f1f !important;
    text-decoration: none !important;
}

.brandseo-product-v2-price {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #1f1f1f !important;
    margin: auto 0 12px !important;
}

.brandseo-product-v2-actions {
    display: grid !important;
    grid-template-columns: 1fr 38px !important;
    gap: 8px !important;
    align-items: center !important;
}

.brandseo-product-v2-cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 38px !important;
    border-radius: 4px !important;
    background: #9e1426 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 0 10px !important;
}

.brandseo-product-v2-more {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    border-radius: 4px !important;
    border: 1px solid #d9c8c8 !important;
    color: #9e1426 !important;
    background: #fff !important;
    text-decoration: none !important;
    font-size: 18px !important;
}

.brandseo-v2 .brandseo-front-opinion-section {
    padding: 28px 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

.brandseo-v2 .brandseo-front-opinion-card {
    max-width: 100% !important;
    background: #f7f3ee !important;
    border-left: 0 !important;
    border-radius: 8px !important;
    padding: 34px 42px !important;
}

.brandseo-v2-bottom-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) !important;
    gap: 34px !important;
    align-items: start !important;
    padding: 24px 0 28px !important;
}

.brandseo-v2-bottom-grid .brandseo-front-section {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

.brandseo-v2-bottom-grid .brandseo-front-section-header h2 {
    font-size: 26px !important;
}

.brandseo-v2-bottom-grid .brandseo-front-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.brandseo-v2 .brandseo-front-cta-section {
    padding: 24px 0 80px !important;
}

@media (max-width: 1180px) {
    .brandseo-products-v2-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .brandseo-product-v2-image {
        height: 220px !important;
    }
}

@media (max-width: 980px) {
    .brandseo-v2-main-grid,
    .brandseo-v2-bottom-grid {
        grid-template-columns: 1fr !important;
    }

    .brandseo-products-v2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    .brandseo-v2-container {
        padding: 0 16px !important;
    }

    .brandseo-v2-main-grid {
        padding-top: 30px !important;
    }

    .brandseo-products-v2-header {
        display: block !important;
    }

    .brandseo-products-v2-header h2 {
        margin-bottom: 10px !important;
    }

    .brandseo-products-v2-grid,
    .brandseo-v2-bottom-grid .brandseo-front-related-grid {
        grid-template-columns: 1fr !important;
    }

    .brandseo-product-v2-image {
        height: 240px !important;
    }
}

.brandseo-prestashop-products {
    display: block !important;
}

.brandseo-prestashop-products .products.row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -11px !important;
    margin-right: -11px !important;
}

.brandseo-prestashop-products .js-product-miniature-wrapper {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
    padding-left: 11px !important;
    padding-right: 11px !important;
    margin-bottom: 22px !important;
}

.brandseo-prestashop-products article.product-miniature {
    width: 100% !important;
    max-width: none !important;
}

@media (max-width: 1180px) {
    .brandseo-prestashop-products .js-product-miniature-wrapper {
        width: 33.333% !important;
        max-width: 33.333% !important;
        flex: 0 0 33.333% !important;
    }
}

@media (max-width: 800px) {
    .brandseo-prestashop-products .js-product-miniature-wrapper {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
}

@media (max-width: 560px) {
    .brandseo-prestashop-products .js-product-miniature-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

.brandseo-prestashop-products.products {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
}

.brandseo-prestashop-products.products .js-product,
.brandseo-prestashop-products.products .product-miniature {
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-bottom: 22px !important;
    width: 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

@media (max-width: 1180px) {
    .brandseo-prestashop-products.products .js-product,
    .brandseo-prestashop-products.products .product-miniature {
        width: 33.333% !important;
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
    }
}

@media (max-width: 800px) {
    .brandseo-prestashop-products.products .js-product,
    .brandseo-prestashop-products.products .product-miniature {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 560px) {
    .brandseo-prestashop-products.products .js-product,
    .brandseo-prestashop-products.products .product-miniature {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.brandseo-native-product-listing .products {
    display: flex !important;
    flex-wrap: wrap !important;
}

.brandseo-native-product-listing .products .js-product,
.brandseo-native-product-listing .products article.product-miniature {
    width: 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

@media (max-width: 1180px) {
    .brandseo-native-product-listing .products .js-product,
    .brandseo-native-product-listing .products article.product-miniature {
        width: 33.333% !important;
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
    }
}

@media (max-width: 800px) {
    .brandseo-native-product-listing .products .js-product,
    .brandseo-native-product-listing .products article.product-miniature {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 560px) {
    .brandseo-native-product-listing .products .js-product,
    .brandseo-native-product-listing .products article.product-miniature {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
