/*
* STYLES DO SÓ PESCA
*/

/** VARIABLES **/
:root {
    --white: #fefefe;
    --blue: #0081cc;
    --dark-blue: #1d262b;
    --black: #111111;
    --dark-grey: #5a5a5a;
    --light-grey: #c8c8c8;
    --white-grey: #f3f3f3;
    --grey: #9c9c9c;
    --light-blue: #f0faff;
    --font-heading: "Oswald", sans-serif;
    --font-body: "Inter", sans-serif;
    --header-height: 0px;
}

/** GLOBAL **/
.container {
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
}

@media screen and (max-width: 769px) {
    .container {
        width: 90%;
    }
}

/* Storefront full-width cleanup */
.site-content {
    display: block;
}

.content-area {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
}

#secondary {
    display: none !important;
}

body {
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
}

/* TITLES */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
}
h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1.25rem;
}
h5 {
    font-size: 1.1rem;
}
h6 {
    font-size: 1rem;
}

/* PAGINATION */
/* PAGINATION WRAPPER */
.sopesca-pagination,
.woocommerce-pagination,
.navigation.pagination {
    margin: 3em 0;
    display: flex;
    justify-content: center;
    float: none !important;
}

/* REMOVE STOREFRONT FLOAT SYSTEM */
.sopesca-pagination ul,
.woocommerce-pagination ul.page-numbers,
.navigation.pagination .nav-links {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-pagination ul.page-numbers li {
    float: none !important;
    margin: 0 !important;
}

/* BASE STYLE */
.page-numbers {
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    border-radius: 6px;

    background: transparent !important;
    color: var(--dark-blue);
    padding: 5px;
    transition: all 0.2s ease;
}

.page-numbers li:hover {
    background-color: var(--blue);
    color: var(--white) !important;
    transform: scale(1.02);
    cursor: pointer;
    border-radius: 6px;
}

.page-numbers li .page-numbers:hover {
    background-color: var(--blue);
    color: var(--white) !important;
    transform: scale(1.02);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.page-numbers.current {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    color: white !important;
}

.page-numbers.prev,
.page-numbers.next {
    padding: 5px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

/* BUTTONS */
button,
.btn,
input[type="submit"] {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* PRICES */
.price,
.woocommerce-Price-amount {
    font-family: var(--font-heading);
    font-weight: 600;
}

.woocommerce-variation-price {
    display: none !important;
}

/* ICONS */
.icon {
    width: 25px;
    height: 25px;
    fill: currentColor;
    display: block;
    stroke: currentColor;
}

.icon-full {
    width: 25px;
    height: 25px;
    fill: var(--black);
    display: block;
    background-color: var(--white);
    border-radius: 50%;
    padding: 2.5px;
}

/* SOCIAL MEDIA ICONS */
.social-media-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-media-item {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    color: var(--black);

    border-radius: 50%;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.social-media-item svg,
.social-media-item img,
.social-media-item .dashicons {
    width: 22px;
    height: 22px;
    font-size: 22px;

    fill: currentColor;
    color: currentColor;

    display: block;
}

.social-media-item:hover {
    transform: scale(1.05);
}

.cart-icon {
    position: relative;
    display: inline-flex;
    color: var(--white);
}

/* COUNT BADGE */
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px;
}

/** HEADER **/
.header {
    background-color: var(--black);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 2000;
}

/* TOPBAR HEADER */
.header-topbar-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--dark-grey);
}

.social-media-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.social-media-topbar-item svg {
    padding: 2.5px 0;
}

.social-media-topbar-item:hover {
    transform: scale(1.05);
    transition: all ease-in-out 0.03s;
}

.shortcuts-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.shortcut-item {
    padding: 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    font-weight: bold;
}

.shortcut-item:hover {
    color: var(--blue);
    transition: all ease 0.2s;
}

.shortcut-item-full {
    background-color: var(--blue);
    color: var(--black);
}

.shortcut-item-full:hover {
    background-color: var(--blue);
    color: var(--white);
}

@media screen and (min-width: 769px) {
    .shortcut-item {
        font-size: 12px;
    }

    .icon {
        width: 30px;
        height: 30px;
    }
}

/* MAIN HEADER */
.header-main {
    display: grid;
    grid-template-columns: 0.4fr 1fr 0.4fr;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

.header-logo {
    width: 200px;
}

.header-logo:hover {
    transform: scale(1.05);
    transition: transform ease-in-out 0.3s;
}

.header-nav {
    position: relative;
    z-index: 10;
}

.header-nav .main-nav {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 20px;
}

.header-nav .main-nav li {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1px;
}

.header-nav .main-nav li:hover {
    color: var(--blue);
    transition: all ease 0.2s;
}

.header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* SEARCH */
.header-search {
    position: absolute;
    right: 0px;
    top: 0;
    height: 100%;

    display: flex;
    align-items: center;

    z-index: 50;
}

.header-search button {
    padding: 0;
    background: transparent;
}

.icon-search:hover {
    transform: scale(1.05);
    transition: transform ease 0.2s;
    color: var(--white);
}

.icon-close:hover {
    transform: scale(1.05);
    transition: transform ease 0.2s;
    color: var(--white);
}

.header-search button:hover,
.header-search button:focus,
.header-search button:active {
    padding: 0;
    background: transparent;
    outline: 0;
}

.header-search .search-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    background: none;
    border: 0;
    cursor: pointer;
    color: var(--white);

    display: inline-flex;
    align-items: center;
    z-index: 60;
}

.search-toggle .icon-close {
    display: none;
}

.header-search.is-open .icon-search {
    display: none;
}

.header-search.is-open .icon-close {
    display: inline-flex;
}

.header-search.is-open {
    z-index: 10000;
}

.header-search.is-open ~ .header-cart {
    opacity: 0;
    pointer-events: none;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        width 0.35s ease,
        opacity 0.2s ease;
}

.header-search.is-open .search-form {
    width: 70vw;
    opacity: 1;
    pointer-events: all;
    background: var(--black);
    padding-right: 40px;
}

button.search-submit {
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    padding: 10px 15px;
    text-transform: uppercase;
    cursor: pointer;
}

button.search-submit:hover,
button.search-submit:focus,
button.search-submit:active {
    padding: 10px 15px;
    transform: scale(1.01);
    transition: transform ease 0.3s;
}

input.search-input,
input.search-input:active,
input.search-input:hover,
input.search-input:focus {
    flex: 1;
    background: var(--black);
    border: none;
    border-bottom: 1px solid var(--white);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    padding-left: 5px;
    border-radius: 0;
}

input.search-input::placeholder {
    color: var(--grey);
    background: var(--black);
}

/* CART */
.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    z-index: 10;
    margin-right: 45px;
}

.header-cart:hover {
    transform: scale(1.05);
    transition: transform ease 0.2s;
}

/* HIDE IN MOBILE and TABLET */
@media screen and (max-width: 768px) {
    .header-main {
        display: none;
    }
}

/* MOBILE HEADER */
.header-mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header-logo-mobile {
    width: 125px;
    z-index: 9999;
}

.header-logo-mobile:hover {
    transform: scale(1.05);
    transition: transform ease 0.2s;
}

.header-mobile-actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.header-mobile-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    z-index: 9999;
}

.header-mobile-cart:hover {
    transform: scale(1.05);
    transition: transform ease 0.2s;
}

/* MOBILE SEARCH */
.mobile-search {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search button {
    padding: 0;
    background: transparent;
}

.mobile-search button:hover,
.mobile-search button:focus,
.mobile-search button:active {
    padding: 0;
    background: transparent;
    outline: 0;
}

.mobile-search .search-toggle {
    position: relative;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--white);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-search .icon-close {
    display: none;
}

.mobile-search.is-open .icon-search {
    display: none;
}

.mobile-search.is-open .icon-close {
    display: inline-flex;
}

.mobile-search .icon {
    display: inline-block;
    vertical-align: middle;
}

.mobile-search .search-form {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    gap: 10px;

    width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;

    background: var(--black);

    transition:
        width 0.35s ease,
        opacity 0.2s ease;
    z-index: 9999;
    padding-left: 10px;
}

.mobile-search.is-open .search-form {
    width: calc(50vw + 95px);
    opacity: 1;
    pointer-events: all;
    padding-right: 5px;
    background: var(--black);
}

.mobile-search .search-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--white);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
}

.mobile-search button.search-submit {
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    padding: 10px 15px;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 90px;
}

.mobile-search button.search-submit:hover,
.mobile-search button.search-submit:focus,
.mobile-search button.search-submit:active {
    padding: 10px 15px;
    transform: scale(1.01);
    transition: transform ease 0.3s;
}

/* MOBILE MENU */
.hamburger-btn {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    z-index: 9999;
    width: 25px;
    height: 25px;
}

.hamburger-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hamburger-btn:hover {
    background: none;
    outline: none;
    transform: scale(1.1);
    transition: transform ease 0.2s;
}

.hamburger-btn:focus,
.hamburger-btn:active {
    outline: none;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}
.hamRotate.active {
    transform: rotate(45deg);
}
.hamRotate180.active {
    transform: rotate(180deg);
}
.line {
    fill: none;
    transition:
        stroke-dasharray 400ms,
        stroke-dashoffset 400ms;
    stroke: var(--white);
    stroke-width: 5.5;
    stroke-linecap: round;
}
.ham1 .top {
    stroke-dasharray: 40 139;
}
.ham1 .bottom {
    stroke-dasharray: 40 180;
}
.ham1.active .top {
    stroke-dashoffset: -98px;
}
.ham1.active .bottom {
    stroke-dashoffset: -138px;
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--black);
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobile-menu-inner {
    padding: 4rem 2rem;
    height: 100%;
    overflow-y: auto;
}

.menu-open .mobile-menu {
    transform: translateX(0);
}

body.menu-open {
    overflow: hidden;
}

.menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav li {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav a:hover {
    transform: scale(1.1);
    color: var(--blue);
    transition: all ease 0.3s;
}

/* HIDE IN DESKTOP */
@media screen and (min-width: 769px) {
    .header-mobile {
        display: none;
    }
}

/** HOMEPAGE **/
.home-title {
    color: var(--blue);
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: 30px;
}

/* HERO */
.hero-slogan {
    background-color: var(--dark-blue);
    padding: 15px 0;
}

.hero-slogan-content h2 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.2em;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .hero-slogan-content h2 {
        font-size: 14px;
    }
}

/* SLIDER */
.hero-slider {
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 65vh;
    max-height: 800px;
    position: relative;
    isolation: isolate;
}

@media (max-width: 1024px) {
    .hero-slider {
        height: 55vh;
    }
}

.hero-slides {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cta {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%) scale(0.95);

    opacity: 0;
    pointer-events: none;

    min-width: 220px;
    padding: 16px 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--blue);
    color: white;

    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
    z-index: 30;
}

.hero-slider:hover .hero-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.hero-slider:hover .hero-cta:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.hero-slider:hover .hero-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(0.5px);
    opacity: 0;

    transition: opacity 0.35s ease;
    z-index: 8;
    pointer-events: none;
}

.hero-slider:hover::before {
    opacity: 1;
}

.hero-slider:hover .hero-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 0px 30px;

    z-index: 10;
    margin: 0 auto;
}

.hero-arrow {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 25px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-1px);
    line-height: 1;
}

.hero-arrow:hover {
    color: white;
    transform: scale(1.15);
    background: none;
    outline: none;
    margin: 0;
    padding: 0;
}

.hero-arrow:active,
.hero-arrow:focus {
    color: white;
    background: none;
    outline: none;
    margin: 0;
    padding: 0;
}

.hero-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow:
        rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
        rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.hero-dot:hover,
.hero-dot:active,
.hero-dot:focus {
    outline: none;
}

.hero-dot.is-active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto;
    }

    .hero-slide {
        position: relative;
    }

    .hero-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        min-width: 120px;
        font-size: 0.75rem;
        padding: 15px 20px;
    }

    .hero-bottom {
        gap: 16px;
        padding: 14px 0;
    }

    .hero-arrow {
        font-size: 16px;
    }
}

/** BRANDS **/
.brands-section {
    background-color: var(--white);
    padding: 3em 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;

    padding: 12px;
    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 5px;
}

.brand-item:hover {
    transform: scale(1.04);
    opacity: 1;
}

.brand-logo {
    max-width: 100%;
    max-height: 45px;

    width: auto;
    height: auto;

    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;

    transition: all 0.25s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark-grey);
    text-align: center;
    opacity: 0.75;
}

.brand-item:hover .brand-name {
    opacity: 1;
    color: var(--black);
}

@media (max-width: 768px) {
    .brands-grid {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    }

    .brand-item {
        height: 70px;
    }

    .brand-logo {
        max-height: 36px;
    }
}

/** PRODUCTS SECTIONS **/
.products-section {
    background-color: var(--light-blue);
    padding: 4em 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: var(--white);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 0px solid transparent;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.product-card:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.product-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.product-brand-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.product-brand-banner img {
    height: 25px;
    max-width: 90%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
        hue-rotate(288deg) brightness(102%) contrast(102%);
}

.product-brand-banner span {
    color: white;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    height: 25px;
    vertical-align: middle;
}

.product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* PRODUCT BADGE */
.product-free-shipping {
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 15px;
    z-index: 5;
    margin: 0 auto 10px;
    text-align: center;
}

.product-card-attributes {
    margin-top: 5px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.product-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey);
    margin: 0;
    text-align: center;
}

.product-attributes {
    font-size: 0.7rem;
    color: var(--dark-grey);
    opacity: 0.8;
    margin-top: 6px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 6px 0 0;
    text-align: center;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-stock-badge {
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.04em;
    z-index: 3;
    text-align: center;
}

/* In Stock */
.product-stock-badge.in {
    color: rgba(0, 170, 90, 0.9);
}

/* Low Stock */
.product-stock-badge.low {
    color: rgba(255, 165, 0, 0.95);
}

/* Out of Stock */
.product-stock-badge.out {
    color: rgba(220, 20, 20, 0.95);
}

.product-meta {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.from-price-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.price-from-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--grey);
    margin-bottom: 4px;
    font-weight: 300;
}

.price-from-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.2em;
    font-weight: 700;
    color: var(--blue);
}

.product-cta {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.6;
    transition: all 0.25s ease;
    position: relative;
    align-self: flex-end;
}

.product-cta::after {
    content: "→";
    margin-left: 6px;
    transition: transform 0.25s ease;
}

.product-card:hover .product-cta {
    opacity: 1;
    color: var(--blue);
}

.product-card:hover .product-cta::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .products-grid {
        gap: 20px;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1rem;
    }
}

/** CATEGORIES SECTION **/
.categories-section {
    background-color: var(--white);
    padding: 3em 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;

    grid-template-areas:
        "cat1 cat1 cat1 cat2 cat2 cat2"
        "cat3 cat3 cat4 cat4 cat5 cat5";
}

.category-card,
.category-page-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    max-height: 300px;
    width: 100%;
    cursor: pointer;
}

.category-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.5s ease;
    z-index: 0;
    will-change: transform;
}

.category-card:hover .category-bg,
.category-page-card:hover .category-bg {
    transform: scale(1.1);
}

.category-card:nth-child(1) {
    grid-area: cat1;
}
.category-card:nth-child(2) {
    grid-area: cat2;
}
.category-card:nth-child(3) {
    grid-area: cat3;
}
.category-card:nth-child(4) {
    grid-area: cat4;
}
.category-card:nth-child(5) {
    grid-area: cat5;
}

.category-card-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card h3,
.category-page-card h3 {
    color: var(--white-grey);
    text-align: center;
    font-size: 2em;
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }

    .category-card {
        grid-area: auto !important;
        aspect-ratio: 16 / 9;
    }
}

/** INSTAGRAM FEED **/
.cta-section {
    margin: 3em 0 5em;
}

/** FOOTER **/
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3em 0;
}

.footer-columns {
    margin-bottom: 30px;
}

.footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5em;
}

.footer-column .footer-logo {
    width: 200px;
    margin-bottom: 30px;
}

.footer-column .footer-logo:hover {
    transform: scale(1.05);
    transition: all ease 0.3s;
}

.footer-column h4 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-column a:hover {
    color: var(--blue);
    transition: all ease 0.2s;
}

.footer-bottom {
    margin-top: 50px;
}

.footer-copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-copyright-nav {
    position: relative;
    z-index: 10;
}

.footer-copyright-nav .idioma-nav {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: row-reverse;
}

.footer-copyright-nav .idioma-nav li {
    margin: 0;
    line-height: 1;
    transform: rotate(-90deg);
    font-size: 20px;
}

.footer-copyright-nav .idioma-nav li.menu-item-gtranslate {
    transform: rotate(0deg);
}

.footer-copyright-nav .idioma-nav li.menu-item-gtranslate div {
    position: relative !important;
}

.gt_float_switcher {
    font-size: 14px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 5px 7.5px !important;
}

.gt_float_switcher img {
  width: 20px!important;
}

.footer-payment {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.payment-icon {
    height: 26px;
    width: auto;
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3em;
        text-align: center;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .footer-payment {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 2em;
        align-items: center;
        justify-content: center;
    }
}

/** CATEGORY PAGE **/
/* CATEGORY HERO */
.category-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.65)
    );
    z-index: 1;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding-bottom: 2em;
}

/* Breadcrumbs */
.category-breadcrumbs {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    opacity: 0.8;
    margin-bottom: 12px;
}

.category-breadcrumbs a,
.category-breadcrumbs .woocommerce-breadcrumb a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
}

.category-breadcrumbs a:hover,
.category-breadcrumbs .woocommerce-breadcrumb a:hover,
.category-breadcrumbs .woocommerce-breadcrumb a:active {
    opacity: 1;
}

/* Title */
.category-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--white);
}

.category-parent {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 10px;
}

.category-subnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.subcategory-chip {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: white;
    transition: all 0.25s ease;
    background: none;
    backdrop-filter: blur(6px);
}

.subcategory-chip:hover {
    background: white;
    color: var(--blue);
    border-color: white;
}

.subcategory-chip.is-active {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .category-hero {
        min-height: 35vh;
    }

    .category-subnav {
        gap: 10px;
    }

    .subcategory-chip {
        padding: 8px 14px;
        font-size: 0.6rem;
    }
}

/* CATEGORY PRODUCTS LIST */
.category-products {
    padding: 4em 0;
}

.category-products .product-card {
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

/* CATEGORY PAGE LIST */
.categories-page-section {
    margin: 4em 0;
}

.categories-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* PRODUCT PAGE */
.product-item-page {
    max-width: 1440px;
    width: 95%;
    margin: 0 auto;
    padding: 2em 0;
}

.product-item-content {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5em;
}

@media (max-width: 768px) {
    .product-item-content {
        grid-template-columns: 1fr;
    }
}

.product-item-gallery {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.product-item-gallery-main {
    width: 100%;
    border-radius: 12px;
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    aspect-ratio: 1/1;
    max-height: 550px;
    overflow: hidden;
}

.product-item-gallery-main img {
    width: 100%;

    border-radius: 12px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

#product-main-image {
    transition: opacity 0.2s ease;
}

.product-item-gallery-thumbs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.product-item-thumb {
    padding: 7.5px;
    border: 1px solid var(--white-grey);
    border-radius: 12px;
    width: 100px;
    height: 100px;
    cursor: pointer;
    object-fit: cover;
    transition: all 0.25s ease;
}

.product-item-thumb img {
    width: 100%;
    height: 100%;
}

.product-item-thumb:hover {
    transform: scale(1.05);
}

.product-item-thumb.active {
    border-color: var(--blue);
    border-width: 2px;
}

.sopesca-breadcrumb {
    font-size: 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.sopesca-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.sopesca-breadcrumb a:hover {
    color: var(--blue);
}

.sopesca-breadcrumb .sep {
    margin: 0 10px;
    opacity: 0.6;
}

.sopesca-breadcrumb .current {
    color: var(--blue);
    font-weight: 600;
}

.product-item-info h1 {
    margin-bottom: 10px;
    font-size: 2.2em;
}

.product-item-price {
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.price-current {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--blue);
}

.price-old {
    font-size: 1rem;
    color: var(--grey);
    text-decoration: line-through;
    opacity: 0.6;
    font-weight: 200 !important;
}

.price-old .woocommerce-Price-amount {
    font-size: 1rem;
    color: var(--grey);
    text-decoration: line-through;
    opacity: 0.6;
    font-weight: 300;
}

.product-item-short-description {
    margin: 1.5em 0;
    border-bottom: 1px solid var(--light-blue);
    padding-bottom: 20px;
    color: var(--dark-grey);
}

/* VARIATIONS PRODUCT STYLE */
.hidden-select {
    display: none;
}

.sopesca-variation-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.5em;
}

.sopesca-variation-btn {
    padding: 10px 20px;
    border-radius: 7px;
    border: 1px solid var(--light-grey);
    background: white;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.25s ease;
    font-size: 0.9em;
}

.sopesca-variation-btn:hover {
    border-color: var(--blue);
    background-color: var(--blue);
    color: var(--white);
}

.sopesca-variation-btn.active {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.variation-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.custom-cart-btn {
    background: var(--blue);
    color: white;
    border-radius: 8px;
    padding: 14px 20px;
    width: 100%;
    font-weight: 600;
}

.custom-cart-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.woocommerce-variation-availability {
    margin-bottom: 15px;
}

/* QUANTITY CUSTOM */
.sopesca-qty-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.sopesca-qty-wrapper input.qty {
    width: 60px;
    height: 45px;
    text-align: center;
    border: none;
    border-color: var(--white);
    font-size: 0.9em;
    font-family: var(--font-body);
    outline: none;
    border-radius: 0;
    background: var(--white);
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.qty-minus,
.qty-plus {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease;
}

.qty-minus:hover,
.qty-plus:hover {
    background: var(--blue);
    color: white;
}

.custom-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-item-variations .variation-label {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.8em;
}

.product-item-badges-container {
    margin-top: 1.5em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.product-item-badge-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.product-item-badge-img svg {
    width: 25px;
    height: 25px;
    color: var(--blue);
}

.product-item-badge-txt-title {
    font-weight: bold;
    font-size: 0.8em;
}

.product-item-badge-txt {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    justify-content: flex-start;
}

.product-item-badge-txt-subtitle {
    font-size: 0.7em;
    color: var(--grey);
}

/* PRODUCT ITEM PAGE TABS */
.product-item-tabs {
    margin: 4em 0;
    border-bottom: 1px solid var(--white-grey);
    padding: 3em 0;
}

.sopesca-tabs-nav-product {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--white-grey);
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.sopesca-tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--grey);
    padding-bottom: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}

.sopesca-tab-btn:hover {
    color: var(--blue);
    background: none;
}

.sopesca-tab-btn.active {
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
    border-radius: 0;
}

.sopesca-tab-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--blue);
}

.sopesca-tab-panel {
    display: none;
    animation: fadeIn 0.25s ease;
}

.sopesca-tab-panel.active {
    display: block;
    padding: 1em 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PRODUCT PAGE REVIEWS */
.woocommerce-Reviews {
    margin-top: 1rem;
}

.woocommerce-Reviews ol.commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-Reviews .comment {
    border-bottom: 1px solid var(--white-grey);
    padding: 25px 0;
}

.woocommerce-Reviews .comment:last-child {
    border-bottom: none;
}

.woocommerce-Reviews .comment-text {
    margin-left: 0;
}

.woocommerce-Reviews .meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey);
    margin-bottom: 8px;
}

.woocommerce-Reviews .meta strong {
    color: var(--black);
    font-weight: 600;
}

.woocommerce-Reviews .star-rating span {
    color: var(--blue);
}

.woocommerce .star-rating::before {
    color: var(--light-grey);
}

.woocommerce-Reviews .description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-blue);
}

p.stars a::before {
    color: var(--blue) !important;
    transition: color 0.2s ease;
}

p.stars:hover a::before {
    color: var(--blue) !important;
}

p.stars a:hover ~ a::before {
    color: var(--light-grey) !important;
}

p.stars a:hover::before,
p.stars a:hover ~ a::before {
    color: var(--blue) !important;
}

#review_form {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--white-grey);
}

#review_form input,
#review_form textarea {
    width: 100%;
    border: 1px solid var(--white-grey);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.25s ease;
    margin-top: 20px;
}

#review_form input:focus,
#review_form textarea:focus {
    border-color: var(--blue);
    outline: none;
}

#review_form .submit {
    background: var(--blue);
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 20px;
}

#review_form .submit:hover {
    opacity: 0.9;
}

.comment-form-rating {
    margin-bottom: 20px;
}

.comment-form-rating label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* PRDUCT ITEM RELATED PRODUCTS */
.product-item-related .related > h2:first-child {
    color: var(--blue);
    font-size: 1.4em;
    margin-bottom: 2em;
}

.product-item-related ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.product-item-related ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.product-item-related ul.products::before,
.product-item-related ul.products::after {
    display: none !important;
    content: none !important;
}

/** MATCHBAITS PAGE **/
.matchbaits-hero-content {
    text-align: center;
    margin: 0 auto;
    width: 90%;
    padding: 4em 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.matchbaits-logo {
    max-width: 100%;
    width: auto;
    object-fit: contain;
    height: 70px;
    justify-self: center;
    margin-bottom: 1.5em;
}

.matchbaits-logo img {
    height: 100%;
}

.matchbaits-subtitle {
    font-size: 1.5em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-image-container {
    width: 100%;
    max-height: 500px;
    height: auto;
    object-fit: cover;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* STORY SECTION */
.matchbaits-story {
    margin: 4em 0;
    background: var(--white);
    text-align: center;
    display: flex;
}

.matchbaits-story-text {
    max-width: 80%;
    text-align: center;
    margin: 0 auto;
    justify-items: center;
}

.matchbaits-story-text p {
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--dark-grey);
}

/* PRODUCT GRID PREMIUM */
.matchbaits-products {
    padding: 4em 0 6em;
    background: var(--light-blue);
}

.matchbaits-category-subnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.matchbaits-subcategory-chip {
    padding: 10px 20px;
    border: 1px solid var(--light-grey);
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--light-grey);
    transition: all 0.25s ease;
    background: none;
    backdrop-filter: blur(6px);
}

.matchbaits-subcategory-chip:hover {
    background: white;
    color: var(--blue);
    border-color: var(--blue);
}

.matchbaits-subcategory-chip.is-active {
    background: var(--white);
    color: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
}

.matchbaits-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 40px;
}

.matchbaits-pagination {
    margin-top: 4em;
}

/** ONLY TEXT PAGES **/
.sopesca-page-template {
    padding: 4em 0;
}

.sopesca-page-template-header {
    margin-bottom: 2em;
}

.sopesca-page-template-title {
    font-size: clamp(1.5em, 2vw, 2em);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue);
}

.sopesca-page-template-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-grey);
}

.sopesca-page-template-content h2,
.sopesca-page-template-content h3 {
    margin-top: 2.5em;
    margin-bottom: 1em;
}

/** WOOCOMMERCE PAGES LAYOUT **/
.sopesca-woocommerce-template {
    padding: 5em 0;
    background: var(--white-grey);
    height: auto;
}

.sopesca-woocommerce-box {
    padding: 3em;
    border-radius: 12px;
}

.sopesca-woocommerce-template h1 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 2rem;
}

.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3em;
}

.sopesca-woocommerce-box .wc-block-grid {
    margin-top: 4em;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--white-grey);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--dark-blue);
    transition: all 0.25s ease;
}

.woocommerce-MyAccount-navigation a:hover {
    background: var(--blue);
    color: white;
}

.woocommerce-MyAccount-navigation .is-active a {
    background: var(--blue);
    color: white;
}

.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
    background: var(--blue);
    color: white;
    border-radius: 8px;
    padding: 14px 22px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
    opacity: 0.9;
}

.woocommerce table.shop_table {
    border: none;
}

.woocommerce table.shop_table th {
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--grey);
}

.woocommerce table.shop_table td {
    border-top: 1px solid var(--white-grey);
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
    }
}

/** EVENTS PAGES **/
.events-archive {
    padding: 4em 0;
}

.events-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 2em;
    color: var(--blue);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    position: relative;
    height: 300px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
    color: white;
}

.event-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.2)
    );
    display: flex;
    align-items: flex-start;
    padding: 30px;
    flex-direction: column;
    text-align: left;
    justify-content: flex-end;
}

.event-card-date {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--white);
    opacity: 0.85;
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.event-card:hover .event-card-image {
    transform: scale(1.1);
}

/* SINGLE EVENT */
.event-single {
    padding: 4em 0;
}

.event-date {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.event-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--blue);
}

.event-entry {
    margin-bottom: 40px;
    color: var(--dark-grey);
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.event-gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 12px;
}

.event-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.event-gallery-item:hover img {
    transform: scale(1.05);
}

.event-thumb {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.event-thumb:hover {
    transform: scale(1.04);
}

/* LIGHTBOX */

.event-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.event-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 20px;
}

.lightbox-prev {
    left: 30px;
}
.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
    color: var(--blue);
}

/* 404 PAGE */
/* 404 PAGE */
.sopesca-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-grey);
    text-align: center;
    padding: 4em 0;
}

.sopesca-404-inner {
    max-width: 700px;
}

.sopesca-404-code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 8rem);
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.05em;
    display: block;
    line-height: 1;
}

.sopesca-404-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin: 1rem 0;
    letter-spacing: 0.08em;
}

.sopesca-404-text {
    font-size: 1rem;
    color: var(--dark-grey);
    margin-bottom: 2.5rem;
}

.sopesca-404-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
    background: var(--blue);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: var(--dark-blue);
}

.btn-secondary {
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 12px 26px;
    border-radius: 8px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: var(--blue);
    color: white;
}

/** ABOUT PAGE **/

/* HERO */
.about-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: var(--blue);
    color: white;
    text-align: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.65)
    );
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
}

.about-subtitle {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--light-grey);
}

/* STORY */
.about-story-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
}

/* VALUES */
.about-values {
    padding: 6em 0;
}

.section-title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--blue);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 2em;
    background: white;
    border-radius: 10px;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.05) 0 5px 15px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.12) 0 12px 30px;
}

.value-card h3 {
    color: var(--blue);
    margin-bottom: 10px;
}

/* WHY SECTION */
.about-why {
    background: var(--light-blue);
    padding: 6em 0;
}

.about-why-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-why-text ul {
    list-style: disc;
    padding: 0;
    margin-top: 40px;
    list-style-position: inside;
}

.about-why-text li {
    margin-bottom: 12px;
    font-weight: 500;
}

.about-why-highlight {
    text-align: center;
    background: var(--blue);
    color: white;
    padding: 3em 2em;
    border-radius: 12px;
}

.about-why-highlight span {
    font-size: 3rem;
    font-family: var(--font-heading);
}

.about-why-highlight p {
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA */
.about-cta {
    text-align: center;
    background: var(--dark-blue);
    color: white;
    padding: 6em 0;
}

.about-cta h2 {
    color: var(--white);
}

.about-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 14px 28px;
    background: var(--blue);
    color: white;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    transform: scale(1.05);
    background: var(--dark-blue);
}

/* MOBILE */
@media (max-width: 768px) {
    .about-why-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT PAGE */

.sopesca-contact-page section {
    padding: 6em 0;
}

/* HERO */
.contact-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: var(--blue);
    color: white;
    text-align: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.65)
    );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
}

.contact-subtitle {
    margin-top: 1rem;
    color: var(--light-grey);
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

/* INFO CARDS */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 2em;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 5px 15px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.12) 0 12px 30px;
}

.contact-card h3 {
    color: var(--blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* MAP */
.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.08) 0 10px 25px;
    height: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/** FAQ PAGE **/
.faq-section {
    padding: 4em 0;
    background: var(--white);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--white-grey);
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    color: var(--dark-blue);
}

.faq-question:hover {
    color: var(--blue);
    background: none;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--dark-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/** LOGIN/ SIGNUP **/
.sopesca-woocommerce-template:not(.logged-in) {
    padding: 1em 0 4em;
    height: min-content;
}

body.woocommerce-account:not(.logged-in) .woocommerce,
body.woocommerce-lost-password .woocommerce {
    max-width: 90%;
    margin: 0em auto;
    display: flex;
    flex-direction: column;
}

.sopesca-woocommerce-template:not(.logged-in) h2 {
    margin-bottom: 20px;
    font-size: 1em;
}

/* Card */
body.woocommerce-account:not(.logged-in) form.login,
body.woocommerce-account:not(.logged-in) form.register,
body.woocommerce-lost-password form.lost_reset_password {
    width: 100%;
    background: var(--white);
    padding: 3em;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--white-grey);
}

/* Titles */
body.woocommerce-account:not(.logged-in) form h2,
body.woocommerce-lost-password form h2,
.sopesca-woocommerce-template:not(.logged-in) h2 {
    text-align: center;
    color: var(--blue);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Inputs */
body.woocommerce-account:not(.logged-in) input.input-text,
body.woocommerce-lost-password input.input-text {
    border-radius: 10px;
    padding: 14px;
    margin: 10px 0;
}

body.woocommerce-account:not(.logged-in) input.input-text:focus,
body.woocommerce-lost-password input.input-text:focus {
    outline: none;
}

/* Button */
body.woocommerce-account:not(.logged-in) button.button,
body.woocommerce-lost-password button.button {
    width: 100%;
    background: var(--blue);
    border-radius: 10px;
    margin: 10px 0;
}

body.woocommerce-account:not(.logged-in) .show-password-input {
    height: 54px;
    bottom: 10px;
    top: auto;
}

.woocommerce-account .lost_password a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
}

.woocommerce-account .lost_password a:hover {
    text-decoration: underline;
}

/* CART CROSS SELLS */
.sopesca-cross-sells {
    margin-top: 5em;
}

.sopesca-cross-sells .sopesca-section-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 2em;
}

.sopesca-cross-sells .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

/* AUTH PAGE */
.sopesca-account-wrapper {
    display: flex;
    justify-content: center;
}

.sopesca-account-card {
    max-width: 600px;
    width: 90%;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sopesca-tabs-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.sopesca-tab-link {
    flex: 1;
    background: none;
    border: none;
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #777;
    transition: 0.3s;
}

.sopesca-tab-link.active {
    color: var(--blue);
}

.sopesca-tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--blue);
    transition: 0.3s ease;
}

.sopesca-tab-content {
    display: none;
}

.sopesca-tab-content.active {
    display: block;
}

.sopesca-tab-content h2 {
    margin-bottom: 10px;
    color: var(--dark-blue) !important;
}

.sopesca-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    text-align: center;
}

.sopesca-account-card input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    transition: 0.3s;
}

.sopesca-account-card input:focus {
    border-color: var(--blue);
    outline: none;
}

.sopesca-btn {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.sopesca-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.sopesca-register-notice {
    background: var(--white);
    border-left: 4px solid var(--blue);
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 6px;
    color: var(--black);
    width: 100%;
    margin: 25px auto 0;
}

/** FILTERS BAR **/
.sopesca-advanced-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-blue);
    flex-wrap: wrap;
}

.toolbar-left {
    display: flex;
    flex-direction: row;
    gap: 1em;
    align-items: center;
}

.add-filter-btn {
    background: none;
    color: var(--light-grey);
    padding: 12px 20px;
    border-radius: 28px;
    border: 1px solid var(--light-grey);
    font-family: var(--font-body);
    font-size: 0.6em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.add-filter-btn:hover,
.add-filter-btn:focus,
.add-filter-btn:active {
    background: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}

.filter-dropdown {
    display: none;
    position: absolute;
    top: 115%;
    left: 0;
    width: 300px;

    background: var(--white);
    border-radius: 14px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--light-grey);

    z-index: 9999;
    overflow: hidden;
}

.filter-dropdown.active {
    display: block;
    animation: fadeDropdown 0.2s ease forwards;
}

@keyframes fadeDropdown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .sopesca-advanced-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .toolbar-left {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .add-filter-btn {
        width: 100%;
        text-align: center;
        font-size: 0.75em;
        padding: 14px;
    }

    .active-filters {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 5px;
        scrollbar-width: none;
    }

    .active-filters::-webkit-scrollbar {
        display: none;
    }

    .toolbar-right {
        width: 100%;
    }

    .toolbar-right select {
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        font-size: 0.85em;
    }

    .filter-dropdown {
        width: 100%;
    }
}

.filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-list li {
    padding: 15px 22px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.filter-list li:hover {
    background: var(--light-blue);
    font-weight: bold;
}

.filter-panel {
    padding: 20px;
}

.filter-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-panel-header h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.filter-back {
    background: none;
    border: none;
    font-size: 1em;
    cursor: pointer;
    color: var(--grey);
    transition: all 0.2s ease;
    padding: 0;
}

.filter-back:hover {
    color: var(--blue);
    background: none;
}

.filter-panel input {
    width: 100%;
    border: 1px solid var(--white-grey);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.filter-panel input:focus {
    border-color: var(--blue);
    outline: none;
}

.filter-actions {
    margin-top: 10px;
}

.filter-actions button {
    width: 100%;
    background: var(--blue);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;

    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-actions button:hover {
    background: var(--dark-blue);
}

.sopesca-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    user-select: none;
    transition: 0.2s ease;
}

.sopesca-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom box */
.sopesca-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d6dbe1;
    border-radius: 4px;
    background: #fff;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover */
.sopesca-checkbox:hover .checkmark {
    border-color: #0081cc;
    box-shadow: 0 0 0 3px rgba(0, 129, 204, 0.08);
}

/* Checked state */
.sopesca-checkbox input:checked + .checkmark {
    background: #0081cc;
    border-color: #0081cc;
}

/* Check icon */
.sopesca-checkbox .checkmark::after {
    content: "";
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: 0.2s ease;
}

.sopesca-checkbox input:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
}

/* Slight active animation */
.sopesca-checkbox:active .checkmark {
    transform: scale(0.95);
}

.sopesca-radio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    user-select: none;
    transition: 0.2s ease;
}

.sopesca-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Outer circle */
.sopesca-radio .radiomark {
    width: 18px;
    height: 18px;
    border: 2px solid #d6dbe1;
    border-radius: 50%;
    background: #fff;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect */
.sopesca-radio:hover .radiomark {
    border-color: #0081cc;
    box-shadow: 0 0 0 3px rgba(0, 129, 204, 0.08);
}

/* Checked state */
.sopesca-radio input:checked + .radiomark {
    border-color: #0081cc;
}

/* Inner dot */
.sopesca-radio .radiomark::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #0081cc;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.2s ease;
}

.sopesca-radio input:checked + .radiomark::after {
    transform: scale(1);
}

/* Slight click animation */
.sopesca-radio:active .radiomark {
    transform: scale(0.95);
}

.sopesca-brand {
    position: relative;
    display: inline-block;
    margin: 6px 6px 0 0;
    cursor: pointer;
}

.sopesca-brand input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.brand-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1.5px solid #d6dbe1;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* Hover */
.sopesca-brand:hover .brand-pill {
    border-color: #0081cc;
    box-shadow: 0 3px 8px rgba(0, 129, 204, 0.12);
}

/* Active */
.sopesca-brand input:checked + .brand-pill {
    background: #0081cc;
    border-color: #0081cc;
    color: #fff;
}

/* Click animation */
.sopesca-brand:active .brand-pill {
    transform: scale(0.96);
}

.add-filter-wrapper {
    position: relative;
    display: inline-block;
}

.active-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--light-blue);
    border: 1px solid rgba(0, 129, 204, 0.15);

    padding: 8px 16px;
    border-radius: 999px;

    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    color: var(--black);
}

.filter-pill:hover {
    background: var(--blue);
    color: white;
}

.filter-remove {
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 16px;
    padding: 0;
    line-height: 1;
}

.filter-remove:hover {
    color: var(--dark-blue);
}

.filter-value {
    color: var(--dark-blue);
    font-weight: 600;
}

.filter-pill .filter-remove:hover {
    color: white;
}

.clear-filters-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--grey);
    cursor: pointer;
    margin-left: 10px;
    display: none;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(-3px);
    transition: all 0.25s ease;
}

.clear-filters-btn:hover {
    color: var(--blue);
    background: none;
}

.clear-filters-btn.show {
    opacity: 1;
    transform: translateY(0);
}

/* SORTING */
#global-sort {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: 1px solid var(--light-grey);
    padding: 10px 20px;
    border-radius: 28px;

    font-family: var(--font-body);
    font-size: 0.6em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--light-grey);
    cursor: pointer;
    transition: all 0.25s ease;
}

#global-sort:hover {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
}

#global-sort:focus {
    border-color: var(--blue);
    outline: none;
}

.sort-wrapper {
    position: relative;
    display: inline-block;
}

.sort-wrapper::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 45%;
    width: 5px;
    height: 5px;

    border-right: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);

    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.sort-wrapper:hover::after {
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}

@media (max-width: 768px) {
    .sort-wrapper {
        width: 100%;
    }

    #global-sort {
        width: 100%;
        padding: 14px 18px;
        font-size: 0.85em;
        border-radius: 12px;
        text-transform: none;
        letter-spacing: 0.02em;
        background: #fff;
        color: var(--dark-grey);
        border-radius: 25px;
    }
}

.sopesca-results-count {
    color: var(--dark-blue);
    font-size: 0.8em;
    margin-bottom: 20px;
}

/* LOAD STATE */
.products-wrapper-wrapper {
    position: relative;
}

.sopesca-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 20;
}

.sopesca-loader.active {
    opacity: 1;
    pointer-events: all;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--light-grey);
    border-top: 3px solid var(--blue);
    animation: sopesca-spin 0.8s linear infinite;
}

@keyframes sopesca-spin {
    to {
        transform: rotate(360deg);
    }
}

/* INFO CART */
.sopesca-free-block {
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.sopesca-free-block.progress {
    background: #eaf6ff;
    color: #0073aa;
}

.sopesca-free-block.success {
    background: #e7f8ee;
    color: #0a7a43;
}

.sopesca-free-block.blocked {
    background: #fff4e5;
    color: #b26a00;
}

.sopesca-disabled-gateway {
    opacity: 0.4;
    pointer-events: none;
    transition: all 0.3s ease;
}

.sopesca-free-warning {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.8;
    color: #f00;
}

.sopesca-cod-notice {
    background: #fff4e5;
    color: #b26a00;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}
