:root {
            --dorado: #c9a96e;
            --chocolate: #2a1f0e;
            --negro: #121212;
            --crema: #f5f0e8;
            --blanco: #ffffff;
            --texto-sec: #8B7355;
            --gris: #f9f9f9;
            --borde: #e5dec9;
            --ease: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --h-topbar: 37px;
            --h-main: 66px;
            --h-nav: 44px;
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html {
            overflow-x: hidden;
            overflow-y: scroll;
        }

body {
            font-family: 'Lato', sans-serif;
            background: var(--blanco);
            color: var(--chocolate);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            width: 100%;
            max-width: 100vw;
        }

h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .brand-logo {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: 1px;
        }

a {
            text-decoration: none;
            color: inherit;
            transition: var(--ease);
        }

.btn-luxury:hover {
            background: transparent;
            color: var(--chocolate);
        }

.top-bar .gold {
            color: var(--dorado);
        }

.top-bar .sep {
            color: rgba(255, 255, 255, 0.3);
            margin: 0 6px;
        }

.header-main-inner {
            max-width: 1400px;
            margin: 0 auto;
            height: 100%;
            padding: 0 40px;
            display: flex;
            align-items: center;
            gap: 28px;
        }

.brand-logo {
            font-size: 1.9rem;
            color: var(--negro);
            letter-spacing: 6px;
            text-transform: uppercase;
            font-weight: 300;
            white-space: nowrap;
            flex-shrink: 0;
        }

.brand-logo span {
            color: var(--dorado);
            font-weight: 600;
        }

.header-search input {
            width: 100%;
            padding: 9px 42px 9px 18px;
            border: 1.5px solid var(--borde);
            border-radius: 25px;
            font-family: 'Lato', sans-serif;
            font-size: 0.87rem;
            color: var(--chocolate);
            background: var(--gris);
            outline: none;
            transition: var(--ease);
        }

.header-search input:focus {
            border-color: var(--dorado);
            background: var(--blanco);
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
        }

.search-icon-btn svg {
            width: 17px;
            height: 17px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

.nav-icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--negro);
            position: relative;
            padding: 5px;
            transition: var(--ease);
            display: flex;
            align-items: center;
        }

.nav-icon-btn:hover {
            color: var(--dorado);
            transform: translateY(-2px);
        }

.mobile-search-btn {
            display: none;
        }

.badge-count {
            position: absolute;
            top: 0;
            right: -3px;
            background: var(--dorado);
            color: var(--chocolate);
            font-size: 0.6rem;
            font-weight: 700;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.mobile-menu-btn svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

.header-nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            height: 100%;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.header-nav-inner a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--dorado);
            transition: width 0.3s ease;
        }

.header-nav-inner a:hover {
            color: var(--dorado);
        }

.header-nav-inner a:hover::after {
            width: 55%;
        }

.drawer-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

.drawer-content {
            position: fixed;
            top: 0;
            right: -450px;
            width: 100%;
            max-width: 450px;
            height: 100%;
            background: var(--blanco);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            z-index: 10001;
            transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            padding: 30px;
        }

.drawer-overlay.open .drawer-content {
            right: 0;
        }

.drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--borde);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

.drawer-title {
            font-size: 1.5rem;
            color: var(--chocolate);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

.drawer-close-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--chocolate);
            transition: var(--ease);
        }

.drawer-close-btn:hover {
            color: var(--dorado);
            transform: rotate(90deg);
        }

.drawer-scroll-area {
            flex-grow: 1;
            overflow-y: auto;
            min-height: 0;
            overscroll-behavior: contain;
        }

.drawer-items-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;
        }

.drawer-item {
            display: flex;
            gap: 15px;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 15px;
        }

.pp-pay-divider {
    text-align: center;
    font-size: 0.75rem;
    color: var(--texto-sec);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 14px 0 10px;
}

.drawer-item-img {
            width: 70px;
            height: 70px;
            background: var(--blanco);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

.drawer-item-img img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

.drawer-item-details {
            flex-grow: 1;
        }

.drawer-item-brand {
            font-size: 0.68rem;
            color: var(--texto-sec);
            text-transform: uppercase;
            font-weight: 700;
        }

.drawer-item-name {
            font-size: 0.95rem;
            font-family: 'Cormorant Garamond', serif;
            color: var(--chocolate);
            font-weight: 600;
        }

.drawer-item-price {
            font-size: 0.9rem;
            font-weight: 700;
            margin-top: 5px;
        }

.drawer-item-remove {
            background: none;
            border: none;
            color: #d9534f;
            cursor: pointer;
            font-size: 0.78rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            margin-top: 5px;
        }

.drawer-footer {
            border-top: 1px solid var(--borde);
            padding-top: 20px;
        }

.drawer-total-row {
            display: flex;
            justify-content: space-between;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.shipping-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 16px;
        }

.shipping-form-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            color: var(--texto-sec);
        }

.shipping-form input {
            width: 100%;
            padding: 10px 14px;
            border: 1.5px solid var(--borde);
            border-radius: 8px;
            font-family: 'Lato', sans-serif;
            font-size: 0.85rem;
            color: var(--chocolate);
            background: var(--gris);
            outline: none;
            transition: var(--ease);
        }

.shipping-form input:focus {
            border-color: var(--dorado);
            background: var(--blanco);
        }

.shipping-form input.invalid {
            border-color: #c0392b;
        }

.shipping-error {
            font-size: 0.72rem;
            color: #c0392b;
            margin-top: -4px;
            min-height: 1em;
        }

.pp-pay-hint {
            text-align: center;
            font-size: 0.8rem;
            color: var(--texto-sec);
            padding: 10px;
            background: var(--gris);
            border-radius: 8px;
        }

.search-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

.search-container {
            width: 100%;
            max-width: 600px;
            padding: 20px;
            text-align: center;
            position: relative;
        }

.search-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid var(--dorado);
            color: var(--blanco);
            font-size: 1.8rem;
            font-family: 'Cormorant Garamond', serif;
            padding: 10px 0;
            outline: none;
            text-align: center;
        }

.search-input::placeholder {
            color: rgba(255, 255, 255, 0.35);
        }

.search-close-btn {
            position: absolute;
            top: -60px;
            right: 20px;
            background: none;
            border: none;
            color: var(--blanco);
            font-size: 2rem;
            cursor: pointer;
        }

.footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

.footer-col h4 {
            font-size: 1.1rem;
            color: var(--dorado);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
        }

.footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.footer-col ul a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
        }

.footer-col ul a:hover {
            color: var(--dorado);
            padding-left: 5px;
        }

.footer-about p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 15px;
        }

.footer-logo {
            font-size: 1.8rem;
            margin-bottom: 15px;
            letter-spacing: 4px;
        }

.footer-bottom {
            max-width: 1400px;
            margin: 50px auto 0;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 1px;
        }

.top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--h-topbar);
            background: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            z-index: 1000;
        }

.header-main {
            position: fixed;
            top: var(--h-topbar);
            left: 0;
            width: 100%;
            height: var(--h-main);
            background: var(--blanco);
            border-bottom: 1px solid var(--borde);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            z-index: 999;
        }

.header-search {
            flex: 1;
            max-width: 520px;
            position: relative;
            display: flex;
            align-items: center;
        }

.nav-actions {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-left: auto;
            flex-shrink: 0;
        }

.drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 10000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

.search-overlay {
            position: fixed;
            inset: 0;
            background: rgba(42, 31, 14, 0.95);
            z-index: 11000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
