:root {
    --blud-black: #050505;
    --blud-dark: #111111;
    --blud-concrete: #2b2b2b;
    --blud-gray: #9a9a9a;
    --blud-light: #f4f4f4;
    --blud-white: #ffffff;
    --blud-border: rgba(255,255,255,.14);
    --blud-font-title: 'Antonio', Impact, sans-serif;
    --blud-font-body: 'Montserrat', Arial, sans-serif;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    background: var(--blud-black);
    color: var(--blud-white);
    font-family: var(--blud-font-body);
    font-size: 15px;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.blud-topbar {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.blud-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(5,5,5,.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--blud-border);
}
.blud-nav-wrap {
    min-height: 76px;
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 36px;
}
.blud-logo-text, .custom-logo-link {
    font-family: var(--blud-font-title);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1;
    color: #fff;
}
.custom-logo { max-height: 58px; width: auto; }
.blud-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.blud-nav a {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .92;
}
.blud-nav a:hover { opacity: 1; }
.blud-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.blud-hero {
    position: relative;
    min-height: 690px;
    background: linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.25) 100%), url('../images/hero-blud.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.blud-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(transparent, #050505);
}
.blud-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 36px;
}
.blud-kicker {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #d6d6d6;
}
.blud-hero h1, .blud-section h2, .blud-lookbook h2, .blud-about-strip h2, .blud-content h1 {
    font-family: var(--blud-font-title);
    text-transform: uppercase;
    letter-spacing: -.02em;
    line-height: .94;
}
.blud-hero h1 {
    margin: 0;
    font-size: clamp(62px, 8vw, 132px);
}
.blud-hero p:not(.blud-kicker) {
    max-width: 500px;
    color: #dfdfdf;
    font-size: 18px;
    margin: 22px 0 28px;
}
.blud-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.blud-btn, .button, button, input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid #fff;
    background: #fff;
    color: #050505;
    font-family: var(--blud-font-body);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s ease;
}
.blud-btn:hover, .button:hover, button:hover, input[type="submit"]:hover { transform: translateY(-1px); }
.blud-btn-outline {
    background: transparent;
    color: #fff;
}
.blud-btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #041006;
}

.blud-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 36px;
    border-top: 1px solid var(--blud-border);
    border-bottom: 1px solid var(--blud-border);
    background: #080808;
}
.blud-benefits div {
    padding: 10px 28px;
    border-right: 1px solid var(--blud-border);
}
.blud-benefits div:last-child { border-right: 0; }
.blud-benefits strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}
.blud-benefits span { color: #bdbdbd; font-size: 13px; }

.blud-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 76px 36px;
}
.blud-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
}
.blud-section-head h2 {
    margin: 0;
    font-size: clamp(42px, 4vw, 74px);
}
.blud-section-head p { margin: 0; color: #bdbdbd; }
.blud-section-head a {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.blud-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.blud-category-card {
    min-height: 340px;
    display: flex;
    align-items: end;
    padding: 28px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.8)), #1b1b1b;
    border: 1px solid var(--blud-border);
}
.blud-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.14), transparent 35%);
    opacity: .9;
}
.blud-category-card span {
    position: relative;
    z-index: 2;
    font-family: var(--blud-font-title);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

.blud-products-section {
    background: #f5f5f5;
    color: #050505;
    max-width: none;
    padding-left: max(36px, calc((100vw - 1440px) / 2 + 36px));
    padding-right: max(36px, calc((100vw - 1440px) / 2 + 36px));
}
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
}
.woocommerce ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    list-style: none;
}
.woocommerce ul.products li.product img {
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #e7e7e7;
    border-radius: 0;
    margin: 0 0 16px;
}
.woocommerce-loop-product__title {
    font-family: var(--blud-font-body);
    font-size: 14px !important;
    font-weight: 900;
    text-transform: uppercase;
    color: #050505;
    padding: 0 !important;
    margin: 0 0 10px !important;
}
.woocommerce ul.products li.product .button {
    width: 100%;
    border-color: #050505;
    background: #050505;
    color: #fff;
    margin-top: 12px;
}

.blud-lookbook {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.75) 45%, rgba(0,0,0,.3) 100%), url('../images/lookbook-blud.jpg');
    background-size: cover;
    background-position: center;
    padding: 90px max(36px, calc((100vw - 1440px) / 2 + 36px));
}
.blud-lookbook div { max-width: 540px; }
.blud-lookbook h2, .blud-about-strip h2 { font-size: clamp(46px, 5vw, 92px); margin: 0 0 18px; }
.blud-lookbook p:not(.blud-kicker), .blud-about-strip p { color: #d0d0d0; margin-bottom: 28px; }

.blud-about-strip {
    display: grid;
    grid-template-columns: 1fr;
    background: #080808;
    padding: 88px max(36px, calc((100vw - 1440px) / 2 + 36px));
    border-top: 1px solid var(--blud-border);
}
.blud-about-strip div { max-width: 680px; }

.blud-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 90px 36px;
}
.blud-content {
    background: #0d0d0d;
    border: 1px solid var(--blud-border);
    padding: clamp(28px, 5vw, 70px);
}
.blud-content h1 { font-size: clamp(48px, 6vw, 88px); margin-top: 0; }

.blud-whatsapp-box {
    margin: 34px 0;
    padding: 28px;
    background: #08110b;
    border: 1px solid rgba(37,211,102,.45);
    color: #fff;
}
.blud-whatsapp-box h3 {
    margin-top: 0;
    font-family: var(--blud-font-title);
    font-size: 36px;
    text-transform: uppercase;
}

.blud-footer {
    background: #050505;
    border-top: 1px solid var(--blud-border);
    padding: 68px max(36px, calc((100vw - 1440px) / 2 + 36px)) 24px;
}
.blud-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 44px;
}
.blud-footer h4 {
    margin: 0 0 14px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.blud-footer p, .blud-footer a, .blud-footer li {
    color: #c9c9c9;
    font-size: 13px;
}
.blud-footer ul { list-style: none; margin: 0; padding: 0; }
.blud-copy {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--blud-border);
    color: #9a9a9a;
    font-size: 12px;
}

/* WooCommerce pages */
.woocommerce div.product {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 36px;
}
.woocommerce div.product .product_title {
    font-family: var(--blud-font-title);
    font-size: clamp(44px, 5vw, 84px);
    text-transform: uppercase;
    line-height: .95;
}
.woocommerce div.product form.cart .button {
    background: #fff;
    color: #050505;
    border-color: #fff;
}
.woocommerce-cart .woocommerce {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 36px;
}
.woocommerce table.shop_table {
    border-color: var(--blud-border);
    background: #0b0b0b;
    color: #fff;
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--blud-border); }
.woocommerce a.remove { color: #fff !important; }
.woocommerce a.remove:hover { background: #fff; color: #050505 !important; }

@media (max-width: 980px) {
    .blud-nav-wrap { grid-template-columns: 1fr; padding: 18px 22px; }
    .blud-brand, .blud-actions { justify-content: center; text-align: center; }
    .blud-nav ul { flex-wrap: wrap; gap: 14px 20px; }
    .blud-hero { min-height: 600px; }
    .blud-benefits, .blud-category-grid, .woocommerce ul.products, .blud-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .blud-benefits, .blud-category-grid, .woocommerce ul.products, .blud-footer-grid { grid-template-columns: 1fr; }
    .blud-benefits div { border-right: 0; border-bottom: 1px solid var(--blud-border); }
    .blud-hero h1 { font-size: 58px; }
    .blud-section { padding: 54px 22px; }
}

/* BLUD Home v2 */
.blud-hero-home {
    min-height: 760px;
    background-image: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.80) 34%, rgba(0,0,0,.28) 72%, rgba(0,0,0,.18) 100%), url('../images/hero-blud.jpg');
    background-position: center right;
}
.blud-hero-left { max-width: 1440px; }
.blud-categories-home { background: #050505; }
.blud-category-image-grid .blud-category-card {
    min-height: 430px;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
}
.blud-category-image-grid .blud-category-card::before {
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82));
}
.blud-category-image-grid small {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    margin-top: 8px;
    color: #d8d8d8;
    font-size: 13px;
    font-weight: 600;
}
.blud-cat-camisetas { background-image: url('../images/categoria-camisetas.jpg'); }
.blud-cat-bermudas { background-image: url('../images/categoria-bermudas.jpg'); }
.blud-cat-moletons { background-image: url('../images/categoria-moletons.jpg'); }
.blud-static-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.woocommerce ul.products + .blud-static-products { margin-top: 30px; }
.blud-static-products article {
    background: #fff;
    border: 1px solid #e6e6e6;
    overflow: hidden;
}
.blud-static-products img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #ddd;
}
.blud-static-products h3 {
    margin: 16px 18px 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .03em;
}
.blud-static-products p {
    margin: 0 18px 20px;
    color: #555;
    font-size: 12px;
    line-height: 1.5;
}
.blud-split-banner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 620px;
    background: #050505;
    border-top: 1px solid var(--blud-border);
    border-bottom: 1px solid var(--blud-border);
}
.blud-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px max(36px, calc((100vw - 1440px) / 2 + 36px)) 80px 36px;
    max-width: 720px;
    justify-self: end;
}
.blud-split-text h2 {
    font-family: var(--blud-font-title);
    font-size: clamp(46px, 5vw, 88px);
    text-transform: uppercase;
    line-height: .95;
    margin: 0 0 22px;
}
.blud-split-text p:not(.blud-kicker) {
    color: #cfcfcf;
    max-width: 520px;
    margin: 0 0 28px;
}
.blud-split-image {
    min-height: 620px;
    background: linear-gradient(90deg, rgba(5,5,5,.75), rgba(5,5,5,.05)), url('../images/banner-whatsapp.jpg');
    background-size: cover;
    background-position: center;
}
.blud-lookbook-home {
    background-image: linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.64), rgba(0,0,0,.14)), url('../images/lookbook-blud.jpg');
    background-size: cover;
    background-position: center right;
}
@media (max-width: 900px) {
    .blud-hero-home { min-height: 640px; background-position: center; }
    .blud-category-image-grid, .blud-static-products, .blud-split-banner { grid-template-columns: 1fr; }
    .blud-split-text { justify-self: stretch; padding: 60px 24px; }
}
