/* ============================================================
   VELORA STUDIO - COMPLETE CSS
   ============================================================ */

/* ============================================================
   1. GLOBAL VARIABLES & RESET
   ============================================================ */
:root {
  --gold: #C9A96E;
  --gold-dark: #B8935A;
  --black: #1A1A1A;
  --cream: #F7F3EE;
  --white: #FFFFFF;
  --gray: #777777;
  --border: #E8E0D5;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 35px rgba(0,0,0,0.13);
  --radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: var(--white);
    padding-top: 110px;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   2. ANNOUNCEMENT BAR
   ============================================================ */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 0;
    border-bottom: 2px solid var(--gold);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.top-bar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-text {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.02em;
}

.announcement-text i {
    color: var(--gold);
    margin-right: 8px;
}

/* ============================================================
   3. MAIN HEADER - CORRECT LAYOUT
   ============================================================ */
.site-header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 9998;
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.main-header {
    background: var(--white);
    padding: 12px 0;
    width: 100%;
}

.main-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* LEFT: Search */
.header-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--black);
    padding: 8px;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: var(--gold);
}

.search-bar {
    position: absolute;
    top: calc(100% + 12px);
    left: -120px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    width: 360px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.search-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-bar form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-bar input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    background: #FAFAFA;
}

.search-bar input:focus {
    border-color: var(--gold);
    background: var(--white);
}

.search-bar button {
    background: var(--black);
    border: none;
    color: var(--white);
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: var(--gold);
}

/* CENTER: Brand */
.brand {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.brand-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--black);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: var(--gold);
}

.brand-tagline {
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
}

/* RIGHT: Navigation + Actions */
.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--black);
    transition: color 0.3s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-action {
    color: var(--black);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
}

.header-action:hover {
    color: var(--gold);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.5rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Hamburger */
.hamburger-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--black);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 40px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 24px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}

.mobile-menu-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    padding: 4px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--gold);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    padding: 14px 0;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.mobile-divider {
    border-bottom: 2px solid var(--border);
    padding: 8px 0;
    margin: 8px 0;
}

.mobile-social {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    margin-top: 8px;
    border-top: 2px solid var(--border);
}

.mobile-social a {
    border-bottom: none;
    padding: 0;
    font-size: 1.2rem;
    color: rgba(0,0,0,0.5);
}

.mobile-social a:hover {
    padding-left: 0;
    color: var(--gold);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   4. TRUST BADGES
   ============================================================ */
.vtr-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vtr-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
}

.vtr-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px 20px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.vtr-item:hover {
    transform: translateY(-2px);
}

.vtr-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: background 0.2s;
}

.vtr-item:hover .vtr-icon {
    background: var(--gold);
}

.vtr-item:hover .vtr-icon svg {
    stroke: var(--white);
}

.vtr-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    white-space: nowrap;
}

.vtr-text b {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.vtr-text span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--gray);
}

.vtr-div {
    width: 1px;
    height: 38px;
    background: var(--border);
    flex-shrink: 0;
}

/* ============================================================
   5. HERO BANNER
   ============================================================ */
.vh-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.vh-desk {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.vh-img-wrap {
    position: absolute;
    inset: 0;
}

.vh-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.vh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.3) 55%, rgba(10,10,10,0.05) 100%);
}

.vh-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.vh-inner {
    max-width: 600px;
    margin-left: 80px;
    padding: 0 20px;
}

.vh-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: 0;
    animation: vfadeup 0.7s ease 0.2s forwards;
}

.vh-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 58px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    color: #fff !important;
    margin-bottom: 18px !important;
    opacity: 0;
    animation: vfadeup 0.7s ease 0.4s forwards;
}

.vh-title em {
    font-style: italic;
    color: var(--gold);
}

.vh-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0;
    animation: vfadeup 0.7s ease 0.6s forwards;
}

.vh-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    opacity: 0;
    animation: vfadeup 0.7s ease 0.8s forwards;
}

.vh-btn-primary {
    background: var(--gold);
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.vh-btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(201,169,110,0.4);
}

.vh-btn-outline {
    background: transparent;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.vh-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.vh-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    animation: vfadeup 0.7s ease 1s forwards;
}

.vh-trust span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    white-space: nowrap;
}

/* Mobile Hero */
.vh-mob {
    display: none;
    position: relative;
}

.vh-mob-img-wrap {
    position: relative;
}

.vh-mob-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.vh-mob-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.72) 100%);
}

.vh-mob-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
    z-index: 2;
}

.vh-title-mob {
    font-family: 'Playfair Display', serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.vh-title-mob em {
    color: var(--gold);
    font-style: italic;
}

.vh-sub-mob {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}

.vh-trust-mob {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.vh-trust-mob span {
    font-size: 11px;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
}

@keyframes vfadeup {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   6. CATEGORY SLIDER
   ============================================================ */
.vcs-wrap {
    background: var(--cream);
    padding: 70px 0;
    overflow: hidden;
}

.vcs-head {
    text-align: center;
    margin-bottom: 44px;
    padding: 0 20px;
}

.vcs-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    margin-bottom: 8px !important;
}

.vcs-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--gray);
}

.vcs-outer {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.vcs-viewport {
    overflow: hidden;
    width: 100%;
}

.vcs-track {
    display: flex;
    gap: 22px;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}

.vcs-item {
    flex: 0 0 auto;
    width: 130px;
    text-align: center;
}

.vcs-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.vcs-circle-wrap {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 65%);
    transition: all 0.3s ease;
}

.vcs-link:hover .vcs-circle-wrap {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(201,169,110,0.3);
}

.vcs-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 3px solid #fff;
    position: relative;
}

.vcs-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.vcs-link:hover .vcs-circle img {
    transform: scale(1.08);
}

.vcs-hover {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(201,169,110,0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.vcs-hover span {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vcs-link:hover .vcs-hover {
    opacity: 1;
}

.vcs-name {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--black);
    transition: color 0.2s;
}

.vcs-link:hover .vcs-name {
    color: var(--gold);
}

.vcs-count {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--gray);
}

.vcs-arr {
    position: absolute;
    top: 44px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--black);
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    z-index: 5;
}

.vcs-arr:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.vcs-arr.off {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.vcs-prev { left: 4px; }
.vcs-next { right: 4px; }

/* ============================================================
   7. PRODUCT GRID
   ============================================================ */
.vgrid-section {
    padding: 78px 20px;
    width: 100%;
}

.vgrid-head {
    text-align: center;
    margin-bottom: 48px;
}

.vgrid-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    margin-bottom: 8px !important;
    position: relative;
    display: inline-block;
}

.vgrid-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.vgrid-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--gray);
    margin-top: 18px;
}

.vgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.vpc {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    position: relative;
}

.vpc:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.vpc-img-w {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F5F5F5;
}

.vpc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
    display: block;
}

.vpc:hover .vpc-img {
    transform: scale(1.06);
}

.vpc-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E53935;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 14px;
    z-index: 3;
}

.vpc-out-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 14px;
    z-index: 3;
}

.vpc-qadd {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.2s;
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    color: var(--black);
}

.vpc:hover .vpc-qadd {
    opacity: 1;
    transform: scale(1);
}

.vpc-qadd:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.vpc-qadd.vpc-added {
    background: #4CAF50 !important;
    border-color: #4CAF50 !important;
    color: #fff !important;
    opacity: 1 !important;
}

.vpc-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.vpc-stars {
    display: flex;
    gap: 1px;
}

.vs-f { color: var(--gold); font-size: 13px; }
.vs-e { color: #DDD; font-size: 13px; }

.vpc-name {
    font-family: 'Inter', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vpc-name a {
    color: inherit;
    text-decoration: none;
}

.vpc-name a:hover {
    color: var(--gold);
}

.vpc-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vpc-p-sale {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.vpc-p-reg {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.vpc-buy {
    display: block;
    background: var(--gold);
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 11px 14px;
    border-radius: 6px;
    margin-top: auto;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.vpc-buy:hover {
    background: var(--black);
    transform: translateY(-1px);
}

.vgrid-cta {
    text-align: center;
    margin-top: 46px;
}

.vgrid-view-all {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.vgrid-view-all:hover {
    background: var(--gold);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ============================================================
   8. BEST SELLERS
   ============================================================ */
.vbs-wrap {
    background: #fff;
    padding: 80px 20px;
}

.vbs-head {
    text-align: center;
    margin-bottom: 50px;
}

.vbs-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.vbs-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    margin-bottom: 8px !important;
    position: relative;
    display: inline-block;
}

.vbs-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.vbs-sub {
    font-size: 15px;
    color: var(--gray);
    margin-top: 18px;
}

.vbs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
}

.vbs-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vbs-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.vbs-rank {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--black);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 20px;
    z-index: 3;
    white-space: nowrap;
}

.vbs-img-w {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #F5F5F5;
}

.vbs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.vbs-card:hover .vbs-img {
    transform: scale(1.05);
}

.vbs-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #E53935;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 14px;
    z-index: 3;
}

.vbs-quick {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 20px;
    white-space: nowrap;
    transition: bottom 0.3s ease;
    z-index: 4;
    text-decoration: none !important;
}

.vbs-card:hover .vbs-quick {
    bottom: 12px;
}

.vbs-quick:hover {
    background: var(--gold-dark);
}

.vbs-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.vbs-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.vbs-rc {
    font-size: 11px;
    color: #999;
    margin-left: 4px;
    font-family: 'Inter', sans-serif;
}

.vbs-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.vbs-name a {
    color: inherit;
    text-decoration: none;
}

.vbs-name a:hover {
    color: var(--gold);
}

.vbs-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vbs-p-sale {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.vbs-p-reg {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.vbs-sold {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #999;
}

.vbs-buy {
    display: block;
    background: var(--black);
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    margin-top: auto;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.vbs-buy:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

/* ============================================================
   9. FOOTER
   ============================================================ */
.vf-wrap {
    background: #111;
    color: rgba(255,255,255,0.7);
    font-family: 'Inter', sans-serif;
    margin-top: 0;
    width: 100%;
}

.vf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.vf-top {
    padding: 68px 0 50px;
}

.vf-top .vf-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.vf-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 16px;
}

.vf-tagline {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 22px;
    max-width: 270px;
}

.vf-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.vf-soc {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: all 0.25s;
    text-decoration: none !important;
}

.vf-soc:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

.vf-h {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    margin-bottom: 18px !important;
    padding-bottom: 11px !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}

.vf-ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.vf-ul li a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none !important;
}

.vf-ul li a::before {
    content: '→';
    color: var(--gold);
    font-size: 10px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s;
}

.vf-ul li a:hover {
    color: #fff;
    padding-left: 3px;
}

.vf-ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.vf-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px !important;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.vf-contact li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
}

.vf-contact li i {
    color: var(--gold);
    width: 16px;
}

.vf-contact li a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
    text-decoration: none !important;
}

.vf-contact li a:hover {
    color: var(--gold);
}

.vf-pay {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.vf-pay span {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    padding: 4px 9px;
    white-space: nowrap;
}

.vf-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}

.vf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.vf-bottom p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.vf-bottom strong {
    color: var(--gold);
}

.vf-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vf-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
    text-decoration: none !important;
}

.vf-legal a:hover {
    color: var(--gold);
}

.vf-legal span {
    color: rgba(255,255,255,0.2);
}

/* ============================================================
   10. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    body {
        padding-top: 38px;
    }

    .top-bar {
        position: relative;
    }

    .site-header {
        top: 0;
        position: sticky;
    }

    .desktop-nav {
        display: none !important;
    }

    .hamburger-toggle {
        display: flex !important;
    }

    .main-header-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .brand-link {
        font-size: 1.5rem;
    }

    .header-right {
        gap: 16px;
    }

    .search-bar {
        left: -80px;
        width: 280px;
    }

    .vh-desk {
        height: 480px;
    }

    .vh-title {
        font-size: 42px !important;
    }

    .vh-inner {
        margin-left: 40px;
    }

    .vgrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .vbs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .vf-top .vf-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    body {
        padding-top: 0;
    }

    .top-bar {
        position: relative;
        padding: 6px 0;
    }

    .announcement-text {
        font-size: 0.6rem;
    }

    .announcement-text i {
        font-size: 0.5rem;
        margin-right: 4px;
    }

    .site-header {
        position: sticky;
        top: 0;
    }

    .main-header {
        padding: 10px 0;
    }

    .main-header-inner {
        padding: 0 12px;
        gap: 8px;
    }

    .brand-link {
        font-size: 1.2rem;
        letter-spacing: 0.04em;
    }

    .brand-tagline {
        font-size: 0.5rem;
        letter-spacing: 0.2em;
    }

    .header-right {
        gap: 12px;
    }

    .header-action {
        font-size: 1rem;
    }

    .search-toggle {
        font-size: 1rem;
        padding: 4px;
    }

    .search-bar {
        left: -50px;
        width: 200px;
        padding: 8px 12px;
    }

    .search-bar input {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .search-bar button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .hamburger-line {
        width: 22px;
        height: 2px;
    }

    .mobile-menu {
        width: 100%;
        padding: 24px 20px;
    }

    .vh-desk {
        display: none;
    }

    .vh-mob {
        display: block;
    }

    .vtr-wrap {
        padding: 0;
    }

    .vtr-inner {
        padding: 0 10px;
    }

    .vtr-item {
        padding: 14px 14px;
    }

    .vtr-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .vtr-icon svg {
        width: 18px;
        height: 18px;
    }

    .vtr-text b {
        font-size: 12px;
    }

    .vtr-text span {
        font-size: 10.5px;
    }

    .vcs-wrap {
        padding: 50px 0;
    }

    .vcs-outer {
        padding: 0 12px;
    }

    .vcs-viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .vcs-viewport::-webkit-scrollbar {
        display: none;
    }

    .vcs-item {
        width: 100px;
        scroll-snap-align: start;
    }

    .vcs-circle-wrap {
        width: 88px;
        height: 88px;
    }

    .vcs-arr {
        display: none;
    }

    .vcs-track {
        gap: 14px;
    }

    .vcs-name {
        font-size: 12px;
    }

    .vgrid-section {
        padding: 50px 12px;
    }

    .vgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vgrid .vpc:nth-child(n+5) {
        display: none;
    }

    .vpc-body {
        padding: 11px;
        gap: 6px;
    }

    .vpc-name {
        font-size: 12px !important;
    }

    .vpc-p-sale {
        font-size: 15px;
    }

    .vpc-buy {
        font-size: 12px;
        padding: 9px 10px;
    }

    .vgrid-title {
        font-size: 24px !important;
    }

    .vpc-qadd {
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    .vbs-wrap {
        padding: 50px 12px;
    }

    .vbs-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 18px;
    }

    .vf-top {
        padding: 48px 0 34px;
    }

    .vf-top .vf-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vf-tagline {
        max-width: 100%;
    }

    .vf-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .vpc:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .vbs-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .vbs-quick {
        display: none !important;
    }

    .vtr-item:hover {
        transform: none !important;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .top-bar {
        padding: 4px 0;
    }

    .announcement-text {
        font-size: 0.55rem;
    }

    .brand-link {
        font-size: 1rem;
    }

    .header-right {
        gap: 10px;
    }

    .search-bar {
        left: -40px;
        width: 180px;
        padding: 6px 10px;
    }

    .search-bar input {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .search-bar button {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .vh-title-mob {
        font-size: 24px !important;
    }

    .vh-mob-img {
        height: 350px;
    }

    .vtr-item {
        padding: 10px 12px;
    }

    .vtr-text b {
        font-size: 10px;
    }

    .vtr-text span {
        font-size: 9px;
    }

    .vgrid {
        gap: 8px;
    }

    .vpc-body {
        padding: 8px;
        gap: 4px;
    }

    .vpc-name {
        font-size: 10px !important;
    }

    .vpc-p-sale {
        font-size: 13px;
    }

    .vpc-buy {
        font-size: 10px;
        padding: 6px 8px;
    }

    .vpc-qadd {
        width: 26px;
        height: 26px;
        top: 6px;
        right: 6px;
    }

    .vpc-qadd svg {
        width: 10px;
        height: 10px;
    }

    .vpc-sale-badge {
        font-size: 9px;
        padding: 2px 6px;
        top: 6px;
        left: 6px;
    }
}