:root {
    --lens-bg: #fdf8f5;
    --lens-ink: #2a1520;
    --lens-dark: #1a0a10;
    --lens-primary: #c9526e;
    --lens-primary-dark: #b8405c;
    --lens-gold: #d4956a;
    --lens-muted: #9e8792;
    --lens-soft: #f9e4eb;
    --lens-border: #f0e4e8;
    --olx-blue: #142659;
    --olx-ink: #151515;
    --olx-muted: #5f6878;
    --olx-line: rgba(20, 38, 89, 0.12);
    --olx-shadow: 0 14px 40px rgba(47, 116, 161, 0.12);
}

html,
body {
    background: var(--lens-bg);
    color: var(--lens-ink);
    font-family: var(--font-primary) !important;
}

body {
    padding-top: 146px;
}

.olx-container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.olx-site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(20, 38, 89, 0.08);
    transition: box-shadow 0.25s ease;
}

.olx-site-header.is-scrolled {
    box-shadow: 0 10px 32px rgba(20, 38, 89, 0.09);
}

.olx-header-reveal {
    overflow: hidden;
    max-height: 104px;
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.28s ease;
}

.olx-site-header.is-compact .olx-header-reveal {
    max-height: 0;
    opacity: 0;
    transform: translateY(-18px);
}

.olx-topbar {
    background: #000;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.olx-topbar .olx-container {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.olx-topbar a {
    color: #fff;
}

.olx-header-main {
    background: rgba(255, 255, 255, 0.96);
}

.olx-header-grid {
    min-height: 72px;
    display: grid;
    grid-template-columns: 230px minmax(260px, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.olx-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--olx-ink);
    font-weight: 700;
}

.olx-logo-mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--olx-shadow);
}

.olx-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.olx-logo-copy small {
    display: block;
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--olx-muted);
}

.olx-logo-copy strong {
    display: block;
    font-family: var(--font-brand);
    font-size: 1.375rem;
    letter-spacing: 0.04em;
    color: #000;
}

.olx-search {
    position: relative;
}

.olx-search input {
    width: 100%;
    height: 46px;
    border: 1px solid #c8c8c8;
    padding: 0 54px 0 18px;
    background: #fff;
    color: var(--olx-ink);
    font-size: 0.875rem;
}

.olx-search button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    border: 0;
    background: linear-gradient(135deg, var(--olx-blue), #000);
    color: #fff;
}

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

.olx-action-btn,
.olx-user-pill {
    min-height: 42px;
    border: 1px solid #c8c8c8;
    background: #fff;
    color: var(--olx-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    font-weight: 700;
    font-size: 0.8125rem;
}

.olx-action-btn {
    width: 42px;
    padding: 0;
    position: relative;
}

.olx-action-wide {
    width: auto;
    padding: 0 14px;
}

.olx-user-pill img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 50%;
}

.olx-cart-btn .tip {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e95c7d;
    color: #fff;
    font-size: 11px;
    display: grid;
    place-items: center;
}

.olx-nav-bar {
    background: #fff;
    border-top: 1px solid #000;
}

.olx-nav-bar.header__menu {
    padding: 0;
}

.olx-nav-bar .olx-container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.olx-nav-bar ul {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
}

.olx-nav-bar ul li {
    margin: 0;
}

.olx-nav-bar a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    color: #3f4757;
    font-size: 0.875rem;
    font-weight: 700;
}

.olx-nav-bar ul li a::after {
    display: none;
}

.olx-nav-bar a:hover {
    color: var(--olx-blue);
}

.olx-home {
    background: linear-gradient(180deg, #fff 0%, #fff8fb 45%, #fff 100%);
    color: #655713;
}

.olx-section,
.olx-hero-section {
    padding: 48px 0;
}

.olx-soft-section {
    background: rgba(20, 38, 89, 0.035);
}

.olx-hero-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    background: #fff;
    border: 1px solid rgba(20, 38, 89, 0.08);
    box-shadow: var(--olx-shadow);
    overflow: hidden;
}

.olx-hero-copy {
    padding: 44px;
}

.olx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    background: rgba(20, 38, 89, 0.08);
    color: #000;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.olx-hero-copy h1,
.olx-section-head h2,
.olx-consult-copy h2 {
    margin: 0;
    font-family: var(--font-brand);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #000;
}

.olx-hero-copy h1 {
    font-size: clamp(2.625rem, 4.4vw, 5rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

.olx-hero-copy p,
.olx-section-head p,
.olx-feature-grid p,
.olx-product-card p,
.olx-consult-copy p,
.olx-consult-copy li {
    color: var(--olx-muted);
    line-height: 1.65;
}

.olx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.olx-btn {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #c8c8c8;
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.olx-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(21, 21, 21, 0.13);
}

.olx-btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--olx-blue), #000);
    color: #fff !important;
}

.olx-btn-ghost,
.olx-btn-outline {
    background: #fff;
    color: #000 !important;
}

.olx-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.olx-stats-row div {
    padding: 18px;
    border: 1px solid rgba(20, 38, 89, 0.08);
    background: #fff;
}

.olx-stats-row strong {
    display: block;
    color: #000;
    font-size: 1.5rem;
}

.olx-stats-row span {
    color: var(--olx-muted);
}

.olx-hero-visual {
    min-height: 430px;
    display: grid;
    place-items: center;
    padding: 28px;
    background: linear-gradient(180deg, #ffeaf3, #fff);
}

.olx-hero-visual img {
    max-height: 430px;
    width: 100%;
    object-fit: contain;
    box-shadow: 0 24px 46px rgba(20, 38, 89, 0.12);
}

.olx-section-head {
    max-width: 760px;
    margin-bottom: 26px;
}

.olx-section-head-row {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.olx-section-head h2,
.olx-consult-copy h2 {
    font-size: clamp(2rem, 3.2vw, 4rem);
    line-height: 1.1;
    margin-bottom: 10px;
}

.olx-link-arrow {
    color: #000;
    font-weight: 800;
}

.olx-feature-grid,
.olx-collection-grid,
.olx-product-grid,
.olx-review-grid {
    display: grid;
    gap: 18px;
}

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

.olx-feature-grid article,
.olx-review-grid article,
.olx-consult-form {
    background: #fff;
    border: 1px solid rgba(20, 38, 89, 0.08);
    box-shadow: var(--olx-shadow);
}

.olx-feature-grid article {
    padding: 26px;
}

.olx-feature-grid i {
    font-size: 1.75rem;
    color: var(--olx-blue);
    margin-bottom: 14px;
}

.olx-feature-grid h3 {
    color: #000;
    font-size: 1.1875rem;
    margin-bottom: 8px;
}

.olx-collection-grid {
    grid-template-columns: repeat(4, 1fr);
}

.olx-collection-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    color: #fff;
    background: #000;
}

.olx-collection-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.45s ease;
}

.olx-collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
}

.olx-collection-card:hover img {
    transform: scale(1.06);
}

.olx-collection-card span,
.olx-collection-card em {
    position: relative;
    z-index: 1;
}

.olx-collection-card span {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
}

.olx-collection-card em {
    position: absolute;
    left: 24px;
    bottom: 18px;
    color: #ffd5de;
    font-style: normal;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

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

.olx-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(20, 38, 89, 0.08);
    box-shadow: var(--olx-shadow);
    overflow: hidden;
}

.olx-product-media {
    position: relative;
    aspect-ratio: 1 / 1.05;
    display: grid;
    place-items: center;
    padding: 18px;
    background: linear-gradient(180deg, #fff7fb, #ffe9f2);
}

.olx-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.olx-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    min-height: 28px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    background: #eef8ff;
    color: #3f82bf;
    font-size: 0.75rem;
    font-weight: 800;
}

.olx-product-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.olx-product-meta,
.olx-price-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.olx-product-meta {
    margin-bottom: 10px;
    color: var(--olx-muted);
    font-size: 0.8125rem;
}

.olx-product-meta i {
    color: #f0b429;
}

.olx-product-card h3 {
    min-height: 52px;
    margin: 0 0 10px;
    color: #000;
    font-size: 1.25rem;
    line-height: 1.3;
}

.olx-product-card p {
    min-height: 66px;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.olx-price-row {
    align-items: end;
    margin-top: auto;
    margin-bottom: 14px;
}

.olx-price-row strong {
    color: #000;
    font-size: 1.5rem;
}

.olx-price-row span {
    color: #98a1b3;
    text-decoration: line-through;
}

.olx-product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.olx-product-actions form,
.olx-product-actions button,
.olx-product-actions a {
    width: 100%;
}

.olx-review-section {
    background: #071d3a;
    color: #fff;
}

.olx-review-section .olx-section-head h2 {
    color: #fff;
}

.olx-review-section .olx-section-head p {
    color: rgba(255, 255, 255, 0.68);
}

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

.olx-review-grid article {
    min-height: 270px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.olx-stars {
    color: #8dc8d9;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.olx-review-grid p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.olx-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.olx-reviewer img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border: 2px solid #fff;
}

.olx-reviewer strong,
.olx-reviewer em {
    display: block;
}

.olx-reviewer em {
    color: rgba(255, 255, 255, 0.52);
    font-style: normal;
    font-size: 0.8125rem;
}

.olx-consult-section {
    background: linear-gradient(135deg, #fff, #fff8fb);
}

.olx-consult-shell {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: start;
}

.olx-consult-copy {
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(20, 38, 89, 0.08);
    box-shadow: var(--olx-shadow);
}

.olx-consult-copy ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.olx-consult-form {
    padding: 26px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.olx-consult-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #000;
    font-weight: 800;
}

.olx-consult-form .full {
    grid-column: 1 / -1;
}

.olx-consult-form input,
.olx-consult-form select,
.olx-consult-form textarea {
    width: 100%;
    border: 1px solid #d4d4d4;
    background: #fff;
    padding: 12px 14px;
    font-size: 0.875rem;
}

.olx-consult-form textarea {
    min-height: 110px;
    resize: vertical;
}

.olx-consult-form button {
    grid-column: 1 / -1;
}

.lens-container,
.watch-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
}

.lens-header-top {
    background: #fff;
    border-bottom: 1px solid var(--lens-border);
}

.lens-header-inner {
    max-width: 1280px;
    height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.lens-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    min-width: 172px;
}

.lens-logo-main {
    font-family: var(--font-brand);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--lens-primary);
}

.lens-logo-sub {
    margin-top: 4px;
    font-size: 0.5625rem;
    letter-spacing: 0.42em;
    color: var(--lens-muted);
}

.lens-search {
    flex: 1;
    max-width: 520px;
    position: relative;
}

.lens-search input {
    width: 100%;
    height: 40px;
    border: 1px solid #ead8de;
    background: #fff;
    color: var(--lens-ink);
    padding: 0 44px 0 16px;
    font-size: 0.875rem;
}

.lens-search button {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--lens-muted);
}

.lens-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lens-auth a,
.lens-user a {
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lens-ink);
}

.lens-user img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.lens-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--lens-ink);
}

.lens-icon-btn .tip {
    position: absolute;
    right: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--lens-primary);
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lens-nav-bar {
    height: 40px;
    background: var(--lens-dark);
}

.lens-nav-bar.header__menu {
    padding: 0;
}

.lens-nav-bar ul {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    list-style: none;
}

.lens-nav-bar ul li {
    display: block;
    margin: 0;
}

.lens-nav-bar a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.lens-nav-bar ul li a::after {
    display: none;
}

.lens-nav-bar a:hover {
    color: var(--lens-gold);
}

.canvas__open {
    right: 22px;
    top: 14px;
    border-color: var(--lens-primary);
    color: var(--lens-primary);
}

.search-dropdown {
    display: none;
    position: absolute;
    top: 72px;
    right: max(24px, calc((100vw - 1280px) / 2 + 24px));
    width: min(440px, calc(100vw - 32px));
    background: #fff;
    padding: 16px;
    border: 1px solid var(--lens-border);
    box-shadow: 0 18px 50px rgba(42, 21, 32, 0.14);
    z-index: 1001;
}

.search-dropdown.active {
    display: block;
}

.search-dropdown form {
    position: relative;
}

.search-dropdown input {
    width: 100%;
    height: 44px;
    border: 1px solid #ead8de;
    padding: 0 48px 0 14px;
    font-size: 14px;
}

.search-dropdown button {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--lens-primary);
}

.lens-hero {
    position: relative;
    min-height: 460px;
    margin: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--lens-dark);
}

.lens-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.92;
}

.lens-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 10, 16, 0.86), rgba(26, 10, 16, 0.48), rgba(26, 10, 16, 0.04));
}

.lens-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 58px 24px;
}

.lens-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--lens-primary);
    font-size: 0.75rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.lens-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--lens-primary);
}

.lens-hero h1 {
    max-width: 620px;
    color: #fff;
    font-family: var(--font-brand);
    font-size: clamp(3.25rem, 7vw, 5.625rem);
    line-height: 0.98;
    font-weight: 300;
    margin-bottom: 24px;
}

.lens-hero h1 strong {
    font-weight: 600;
}

.lens-hero p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.lens-btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lens-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid transparent;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lens-btn-primary {
    background: var(--lens-primary);
    color: #fff;
}

.lens-btn-primary:hover {
    background: var(--lens-primary-dark);
    color: #fff;
}

.lens-btn-ghost {
    border-color: rgba(255, 255, 255, 0.52);
    color: #fff;
}

.lens-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.lens-marquee {
    overflow: hidden;
    background: var(--lens-primary);
    color: #fff;
    padding: 14px 0;
    white-space: nowrap;
}

.lens-marquee-track {
    display: inline-block;
    animation: lensMarquee 22s linear infinite;
}

.lens-marquee span {
    margin: 0 28px;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

@keyframes lensMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.watch-featured-cats-section,
.watch-products-section,
.watch-trend-section,
.watch-services-section,
.watch-posts-section,
.watch-brand-section,
.section-support {
    background: var(--lens-bg);
    padding: 72px 0;
}

.watch-products-section:nth-of-type(even) {
    background: #fff;
}

.watch-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.watch-section-header::before {
    content: "OLALUX";
    display: block;
    margin-bottom: 10px;
    color: var(--lens-primary);
    font-size: 0.75rem;
    letter-spacing: 0.34em;
}

.watch-section-title,
.watch-posts-main-title,
.watch-trend-title,
.watch-similar-title {
    font-family: var(--font-brand) !important;
    color: var(--lens-ink) !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.watch-featured-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 18px;
}

.watch-cat-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: var(--lens-dark) !important;
}

.watch-cat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 16, 0.82), rgba(26, 10, 16, 0.08));
    z-index: 1;
}

.watch-cat-img-box {
    position: absolute;
    inset: 0;
}

.watch-cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.watch-cat-card:hover .watch-cat-img-box img {
    transform: scale(1.06);
}

.watch-cat-title,
.watch-cat-btn {
    position: relative;
    z-index: 2;
    margin-left: 24px;
}

.watch-cat-title {
    color: #fff !important;
    font-family: var(--font-brand);
    font-size: 1.875rem !important;
    font-weight: 500 !important;
    margin-bottom: 52px;
}

.watch-cat-btn {
    position: absolute;
    bottom: 24px;
    color: var(--lens-gold);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

.watch-product-card {
    position: relative;
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible;
    border-radius: 0;
}

.watch-product-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.watch-product-img-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f7edf1;
    padding: 0 !important;
}

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

.watch-product-card:hover .watch-product-img {
    transform: scale(1.05);
}

.watch-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    z-index: 3;
    background: var(--lens-primary);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.12em;
    border-radius: 0;
    padding: 5px 8px;
}

.watch-product-overlay {
    position: absolute;
    inset: auto 0 0 0;
    opacity: 1 !important;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.watch-product-card:hover .watch-product-overlay {
    transform: translateY(0);
    background: transparent !important;
}

.watch-product-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.watch-action-btn,
.watch-action-btn:hover {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: var(--lens-dark);
    color: #fff !important;
    transform: none;
}

.watch-action-btn:hover {
    background: var(--lens-primary);
}

.watch-product-info {
    padding: 16px 0 0 !important;
}

.watch-product-name {
    height: auto !important;
    min-height: 32px;
    margin-bottom: 6px;
    font-family: var(--font-brand);
    font-size: 1.375rem !important;
    font-weight: 500 !important;
    line-height: 1.18;
}

.watch-product-link {
    color: var(--lens-ink);
}

.watch-product-link:hover {
    color: var(--lens-primary);
}

.watch-product-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.watch-price-current,
.watch-current-price {
    color: var(--lens-primary) !important;
    font-family: var(--font-brand);
    font-size: 1.375rem;
    font-weight: 600;
}

.watch-price-old,
.watch-original-price {
    color: #c0b0b5 !important;
    font-size: 0.8125rem;
    text-decoration: line-through;
}

.watch-add-cart-btn,
.watch-btn.watch-btn-solid,
.watch-filter-btn,
.watch-view-all-btn,
.watch-btn-back {
    width: 100%;
    border: 0;
    border-radius: 0 !important;
    background: var(--lens-dark);
    color: #fff;
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.watch-add-cart-btn:hover,
.watch-btn.watch-btn-solid:hover,
.watch-filter-btn:hover,
.watch-view-all-btn:hover,
.watch-btn-back:hover {
    background: var(--lens-primary);
    color: #fff;
}

.watch-view-all {
    margin-top: 36px;
    text-align: center;
}

.watch-view-all-btn {
    width: auto;
    min-width: 160px;
}

.watch-product-slider-arrow,
.watch-cat-arrow,
.watch-trend-arrow,
.watch-brand-arrow,
.watch-support-arrow {
    border: 1px solid var(--lens-border);
    background: #fff;
    color: var(--lens-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.watch-shop-section,
.watch-detail-section {
    padding: 56px 0 84px;
    background: var(--lens-bg);
}

.watch-breadcrumb {
    background: var(--lens-dark) !important;
    color: rgba(255, 255, 255, 0.56);
    border: 0;
    padding: 34px 0;
    margin-bottom: 0;
}

.watch-breadcrumb-item,
.watch-breadcrumb-current {
    color: rgba(255, 255, 255, 0.78) !important;
}

.watch-breadcrumb-current {
    color: #fff !important;
}

.watch-sidebar-block {
    background: #fff;
    border: 1px solid var(--lens-border) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.watch-sidebar-title h4 {
    border-bottom-color: var(--lens-primary) !important;
    color: var(--lens-ink);
    letter-spacing: 0.18em;
    font-size: 12px;
}

.watch-category-link {
    border-radius: 0 !important;
    color: var(--lens-muted);
}

.watch-category-link:hover,
.watch-category-link.active {
    background: var(--lens-soft) !important;
    color: var(--lens-primary) !important;
}

.watch-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 56px;
}

.watch-main-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f7edf1;
}

.watch-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.watch-thumb {
    aspect-ratio: 1;
    border: 1px solid var(--lens-border);
    overflow: hidden;
}

.watch-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-product-title {
    color: var(--lens-ink);
    font-family: var(--font-brand);
    font-size: clamp(2.25rem, 4vw, 3.375rem);
    font-weight: 500;
    line-height: 1.06;
    margin-bottom: 16px;
}

.watch-category-line,
.watch-review-text,
.watch-short-desc,
.watch-stock-text {
    color: #6b4b58;
}

.watch-category-line a,
.watch-stars i {
    color: var(--lens-gold);
}

.watch-price-line {
    margin: 24px 0;
}

.watch-short-desc {
    border-left: 2px solid rgba(201, 82, 110, 0.32);
    padding-left: 16px;
    line-height: 1.8;
}

.watch-quantity-box {
    margin: 28px 0;
}

.watch-qty-controls {
    display: inline-flex;
    border: 1px solid rgba(42, 21, 32, 0.18);
}

.watch-qty-btn,
.watch-qty-input {
    border: 0;
    background: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
}

.watch-button-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.watch-btn.watch-btn-outline {
    border: 1px solid var(--lens-dark);
    border-radius: 0;
    background: transparent;
    color: var(--lens-dark);
    min-height: 48px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.watch-btn.watch-btn-outline:hover {
    background: var(--lens-dark);
    color: #fff;
}

.watch-tabs-section {
    margin-top: 80px;
    background: #fff;
    border: 1px solid var(--lens-border);
}

.watch-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--lens-border);
}

.watch-tab-btn {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 18px 20px;
    color: var(--lens-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
}

.watch-tab-btn.active {
    background: var(--lens-soft);
    color: var(--lens-primary);
}

.watch-tabs-content {
    padding: 28px;
}

.watch-services-grid,
.flex-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.watch-service-item,
.support-inner {
    background: #fff;
    border: 1px solid var(--lens-border);
    padding: 26px 22px;
    min-height: 150px;
}

.watch-service-icon {
    color: var(--lens-primary);
}

.watch-service-title,
.inner-content h3 {
    color: var(--lens-ink);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.watch-service-desc,
.inner-content p {
    color: var(--lens-muted);
}

.footer {
    background: var(--lens-dark) !important;
}

.footer__description,
.footer__widget ul li a,
.newsletter__description,
.payment__label,
.footer__copyright p {
    color: rgba(255, 255, 255, 0.62) !important;
}

.footer__widget h6,
.footer__newsletter h6 {
    color: #fff !important;
    letter-spacing: 0.16em;
}

.footer__social a:hover,
.footer__widget ul li a:hover,
.footer__copyright a:hover {
    color: var(--lens-primary) !important;
}

@media (max-width: 991px) {
    body {
        padding-top: 64px;
    }

    .olx-topbar,
    .olx-search,
    .olx-action-wide,
    .olx-user-pill,
    .olx-nav-bar,
    .olx-header-actions .search-switch {
        display: none;
    }

    .olx-header-reveal {
        max-height: 64px;
    }

    .olx-header-grid {
        min-height: 64px;
        grid-template-columns: 1fr auto;
    }

    .olx-header-actions {
        display: none;
    }

    .olx-logo-mark {
        width: 38px;
        height: 38px;
    }

    .olx-logo-copy strong {
        font-size: 18px;
    }

    .olx-site-header.is-compact .olx-header-reveal {
        max-height: 64px;
        opacity: 1;
        transform: none;
    }

    .olx-hero-shell,
    .olx-consult-shell {
        grid-template-columns: 1fr;
    }

    .olx-feature-grid,
    .olx-review-grid {
        grid-template-columns: 1fr;
    }

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

    .olx-section-head-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .lens-search,
    .lens-nav-bar,
    .lens-auth,
    .lens-user,
    .lens-header-actions .search-switch {
        display: none;
    }

    .lens-header-inner {
        height: 64px;
    }

    .watch-featured-cats-grid,
    .watch-products-grid,
    .watch-services-grid,
    .flex-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .watch-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .lens-container,
    .watch-container,
    .lens-header-inner,
    .lens-hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .lens-logo-main {
        font-size: 24px;
    }

    .lens-hero {
        margin: 8px;
        min-height: 520px;
    }

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

    .watch-featured-cats-grid,
    .watch-services-grid,
    .flex-container {
        grid-template-columns: 1fr;
    }

    .watch-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .watch-product-name {
        font-size: 18px !important;
    }

    .watch-price-current,
    .watch-current-price {
        font-size: 18px;
    }

    .watch-button-group {
        grid-template-columns: 1fr;
    }

    .olx-container {
        width: min(100% - 24px, 1280px);
    }

    .olx-hero-copy,
    .olx-consult-copy {
        padding: 24px;
    }

    .olx-hero-visual {
        min-height: 300px;
        padding: 16px;
    }

    .olx-stats-row,
    .olx-collection-grid,
    .olx-product-grid,
    .olx-consult-form {
        grid-template-columns: 1fr;
    }

    .olx-product-actions {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   OLALUX 2026 storefront refresh
   Semantic HTML5 + pure CSS overrides for the PHP storefront.
   ========================================================= */

:root {
    --lens-bg: #fff9fb;
    --lens-ink: #2c1b24;
    --lens-dark: #211019;
    --lens-primary: #d66f8f;
    --lens-primary-dark: #bd4f74;
    --lens-gold: #c99b73;
    --lens-muted: #7d6873;
    --lens-soft: #fde9f1;
    --lens-lavender: #eee7ff;
    --lens-cream: #fff4e9;
    --lens-border: rgba(214, 111, 143, 0.18);
    --olx-blue: #8a6fd1;
    --olx-ink: var(--lens-ink);
    --olx-muted: var(--lens-muted);
    --olx-line: var(--lens-border);
    --olx-shadow: 0 18px 50px rgba(156, 87, 117, 0.12);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
}

.visually-hidden,
.skip-to-content:not(:focus) {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-to-content:focus {
    position: fixed;
    z-index: 9999;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--lens-dark);
    color: #fff;
}

body {
    background:
        radial-gradient(circle at top left, rgba(253, 233, 241, 0.9), transparent 34rem),
        linear-gradient(180deg, #fff 0%, var(--lens-bg) 45%, #fff 100%);
    color: var(--lens-ink);
}

.olx-site-header {
    background: rgba(255, 252, 253, 0.92);
    border-bottom-color: var(--lens-border);
    backdrop-filter: blur(18px);
}

.olx-topbar {
    background: var(--lens-dark);
}

.olx-header-grid {
    grid-template-columns: minmax(190px, 240px) minmax(260px, 1fr) auto;
}

.olx-logo-mark,
.olx-action-btn,
.olx-user-pill,
.olx-search input,
.olx-search button,
.olx-btn,
.olx-feature-grid article,
.olx-review-grid article,
.olx-consult-copy,
.olx-consult-form,
.olx-product-card {
    border-radius: var(--radius-sm);
}

.olx-logo-mark {
    border: 1px solid var(--lens-border);
    box-shadow: 0 12px 32px rgba(214, 111, 143, 0.14);
}

.olx-logo-copy small {
    color: var(--lens-muted);
}

.olx-logo-copy strong {
    color: var(--lens-dark);
}

.olx-search input,
.olx-action-btn,
.olx-user-pill {
    border-color: var(--lens-border);
}

.olx-search button,
.olx-btn-primary {
    background: linear-gradient(135deg, var(--lens-primary), #8a6fd1);
}

.olx-nav-bar {
    border-top-color: var(--lens-border);
}

.olx-nav-bar a:hover {
    color: var(--lens-primary-dark);
}

.olx-home {
    background: transparent;
    color: var(--lens-ink);
}

.olx-section,
.olx-hero-section {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.olx-hero-shell {
    border-color: var(--lens-border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 250, 0.98)),
        #fff;
}

.olx-hero-copy {
    padding: clamp(2rem, 4vw, 4rem);
}

.olx-eyebrow {
    border: 1px solid var(--lens-border);
    border-radius: 999px;
    background: rgba(253, 233, 241, 0.72);
    color: var(--lens-primary-dark);
}

.olx-hero-copy h1,
.olx-section-head h2,
.olx-consult-copy h2 {
    color: var(--lens-dark);
}

.olx-hero-copy p,
.olx-section-head p,
.olx-feature-grid p,
.olx-product-card p,
.olx-consult-copy p,
.olx-consult-copy li {
    color: var(--lens-muted);
}

.olx-btn {
    border-color: var(--lens-border);
    color: var(--lens-dark);
    border-radius: 999px;
}

.olx-btn:hover {
    box-shadow: 0 16px 34px rgba(214, 111, 143, 0.18);
}

.olx-stats-row div {
    border-color: var(--lens-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
}

.olx-stats-row strong {
    color: var(--lens-primary-dark);
}

.olx-hero-visual {
    background: linear-gradient(160deg, var(--lens-soft), var(--lens-lavender) 55%, #fff);
}

.olx-hero-visual img {
    border-radius: var(--radius-md);
}

.olx-soft-section {
    background: linear-gradient(180deg, rgba(253, 233, 241, 0.55), rgba(238, 231, 255, 0.34));
}

.olx-feature-grid article,
.olx-review-grid article,
.olx-consult-copy,
.olx-consult-form,
.olx-product-card {
    border-color: var(--lens-border);
    background: rgba(255, 255, 255, 0.92);
}

.olx-feature-grid i,
.olx-stars {
    color: var(--lens-primary);
}

.olx-collection-card {
    padding: 0;
    border-radius: var(--radius-md);
}

.olx-collection-card > a {
    position: relative;
    min-height: 280px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}

.olx-collection-card > a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(33, 16, 25, 0.82), rgba(33, 16, 25, 0.08));
}

.olx-collection-card img {
    opacity: 0.9;
}

.olx-collection-card .col-meta-tag,
.olx-collection-card .col-title-block,
.olx-collection-card .col-cta {
    position: relative;
    z-index: 2;
}

.olx-collection-card .col-meta-tag {
    align-self: flex-start;
    width: auto;
    margin-bottom: auto;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.olx-collection-card .col-name {
    margin: 6rem 0 0.5rem;
    color: #fff;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.olx-collection-card .col-sub {
    max-width: 28rem;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.875rem;
}

.olx-collection-card .col-cta {
    width: max-content;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffe2ec;
}

.olx-product-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.olx-product-card:hover {
    border-color: rgba(214, 111, 143, 0.34);
    box-shadow: 0 22px 52px rgba(156, 87, 117, 0.16);
    transform: translateY(-4px);
}

.olx-product-media {
    background: linear-gradient(180deg, #fff, var(--lens-soft));
}

.olx-badge {
    border-radius: 999px;
    background: #fff;
    color: var(--lens-primary-dark);
}

.olx-price-row strong {
    color: var(--lens-primary-dark);
}

.olx-promise-section {
    background: #fff;
}

.olx-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
}

.olx-promise-grid article {
    padding: 1.6rem;
    border: 1px solid var(--lens-border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fff, rgba(255, 249, 251, 0.9));
    box-shadow: var(--olx-shadow);
}

.olx-promise-grid i {
    color: var(--lens-primary);
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
}

.olx-promise-grid h3 {
    color: var(--lens-dark);
    font-size: 1.05rem;
}

.olx-review-section {
    background:
        linear-gradient(135deg, rgba(33, 16, 25, 0.96), rgba(92, 67, 130, 0.94)),
        var(--lens-dark);
}

.olx-consult-form input,
.olx-consult-form select,
.olx-consult-form textarea {
    border-color: var(--lens-border);
    border-radius: var(--radius-sm);
}

.olx-consult-form input:focus,
.olx-consult-form select:focus,
.olx-consult-form textarea:focus {
    border-color: var(--lens-primary);
    outline: 3px solid rgba(214, 111, 143, 0.16);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { --reveal-delay: 80ms; }
.reveal-delay-2 { --reveal-delay: 160ms; }
.reveal-delay-3 { --reveal-delay: 240ms; }
.reveal-delay-4 { --reveal-delay: 320ms; }

.site-footer {
    padding: clamp(3rem, 6vw, 4.5rem) 0 0;
    background: var(--lens-dark) !important;
    color: rgba(255, 255, 255, 0.76);
}

.footer__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) 0.7fr 0.7fr minmax(280px, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
}

.footer__brand {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-brand-title {
    color: #fff;
    font-size: 1.9rem;
    letter-spacing: 0.24em;
}

.footer-brand-subtitle {
    color: #f4a4bb;
}

.footer__description,
.newsletter__description,
.footer__bottom p,
.footer__contact span {
    color: rgba(255, 255, 255, 0.64) !important;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #fff;
}

.footer__social a:hover {
    border-color: var(--lens-primary);
    background: var(--lens-primary);
    color: #fff !important;
    transform: translateY(-2px);
}

.footer__widget h2,
.footer__newsletter h2 {
    margin-bottom: 1rem;
    color: #fff !important;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

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

.footer__widget li + li {
    margin-top: 0.72rem;
}

.footer__widget a,
.footer__contact a {
    color: rgba(255, 255, 255, 0.64) !important;
}

.footer__widget a:hover,
.footer__contact a:hover {
    color: #fff !important;
}

.newsletter__input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter__input-group input {
    min-width: 0;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.8rem 1rem;
}

.newsletter__button {
    width: 2.9rem;
    height: 2.9rem;
    border: 0;
    border-radius: 50%;
    background: var(--lens-primary);
    color: #fff;
}

.footer__contact {
    display: grid;
    gap: 0.35rem;
    margin-top: 1rem;
}

.footer__bottom {
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (max-width: 991px) {
    .olx-promise-grid,
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__about,
    .footer__newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .olx-hero-copy {
        padding: 1.5rem;
    }

    .olx-hero-copy h1 {
        font-size: clamp(2.3rem, 16vw, 3.4rem);
    }

    .olx-stats-row,
    .olx-promise-grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .olx-collection-card > a {
        padding: 1.15rem;
    }

    .olx-collection-card .col-name {
        margin-top: 5rem;
    }
}
