/* =========================================================
   KALANGI
   COMPLETE STYLE.CSS
   MATCHED EXACTLY WITH CURRENT INDEX.HTML
   STANDARD FONT
   BLACK / GOLD PREMIUM DESIGN
   ========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --black: #070707;
    --black-2: #0d0d0d;
    --black-3: #151515;
    --black-4: #1c1c1c;

    --gold: #c9a227;
    --gold-light: #e1c45b;
    --gold-dark: #9b7816;

    --white: #ffffff;
    --cream: #f5f0e4;

    --text: #d8d8d8;
    --muted: #999999;

    --border: rgba(201, 162, 39, 0.25);

    --container: 1200px;

    --transition: all 0.35s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    background: var(--black);

    color: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: Arial, Helvetica, sans-serif;
}

button {
    border: 0;
    outline: none;
    cursor: pointer;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.container,
.header-container,
.hero-container,
.about-container,
.footer-container {

    width: min(92%, var(--container));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    width: 100%;

    min-height: 38px;

    background: #050505;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;
}

.top-bar-inner {

    width: min(92%, var(--container));

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 38px;
}


/* Hotline */

.hotline {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #aaaaaa;

    font-size: 12px;
}

.hotline i {

    color: var(--gold);

    font-size: 11px;
}

.hotline a {

    color: #dddddd;

    transition: var(--transition);
}

.hotline a:hover {

    color: var(--gold-light);
}


/* Top Links */

.top-links {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 12px;

    color: #aaaaaa;
}

.top-links a {

    transition: var(--transition);
}

.top-links a:hover {

    color: var(--gold-light);
}

.top-links span {

    color: #555555;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {

    position: absolute;

    top: 38px;

    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(0, 0, 0, 0.28);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    transition: var(--transition);
}


/* When JS adds scroll class */

.main-header.scrolled {

    position: fixed;

    top: 0;

    background: rgba(5, 5, 5, 0.97);

    backdrop-filter: blur(12px);

    border-bottom-color: var(--border);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    position: relative;

    z-index: 10;
}

.logo img {

    width: 125px;

    max-height: 60px;

    object-fit: contain;

    object-position: left center;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 34px;

    margin-left: auto;

    margin-right: auto;
}

.main-nav a {

    position: relative;

    display: inline-flex;

    align-items: center;

    height: 82px;

    color: #eeeeee;

    font-size: 13px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 1px;

    white-space: nowrap;

    transition: var(--transition);
}


/* Nav underline */

.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 20px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.main-nav a:hover {

    color: var(--gold-light);
}

.main-nav a:hover::after {

    width: 100%;
}


/* Active nav */

.main-nav a.active {

    color: var(--gold-light);
}

.main-nav a.active::after {

    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.header-action {

    position: relative;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.22);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 14px;

    transition: var(--transition);
}

.header-action:hover {

    color: #000000;

    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-2px);
}


/* =========================================================
   CART COUNT
========================================================= */

.cart-action {

    position: relative;
}

.cart-count {

    position: absolute;

    top: -5px;

    right: -5px;

    width: 17px;

    height: 17px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--gold);

    color: #000000;

    font-size: 9px;

    font-weight: 700;

    line-height: 1;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-button {

    display: none;

    width: 42px;

    height: 42px;

    padding: 0;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.22);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    transition: var(--transition);

    flex-shrink: 0;
}

.menu-button span {

    display: block;

    width: 20px;

    height: 2px;

    background: #ffffff;

    transition: var(--transition);
}

.menu-button:hover {

    border-color: var(--gold);
}

.menu-button:hover span {

    background: var(--gold);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    display: none;

    width: 100%;

    background: rgba(5, 5, 5, 0.98);

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 18px 5% 25px;
}

.mobile-menu a {

    display: block;

    padding: 13px 0;

    color: #eeeeee;

    font-size: 13px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition: var(--transition);
}

.mobile-menu a:hover {

    color: var(--gold-light);

    padding-left: 5px;
}

.mobile-menu.active {

    display: block;
}


/* Mobile login/register */

.mobile-menu-actions {

    display: flex;

    gap: 25px;

    padding-top: 15px;
}

.mobile-menu-actions a {

    border: 0;

    padding: 8px 0;

    color: var(--gold-light);
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    width: 100%;

    height: 92vh;

    min-height: 650px;

    overflow: hidden;

    background: #000000;
}


/* =========================================================
   HERO SLIDES
========================================================= */

.hero-slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.05);

    transition:
        opacity 1s ease,
        visibility 1s ease,
        transform 7s ease;
}

.hero-slide.active {

    opacity: 1;

    visibility: visible;

    transform: scale(1);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.68) 35%,
            rgba(0, 0, 0, 0.28) 72%,
            rgba(0, 0, 0, 0.42) 100%
        );
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    height: 100%;

    z-index: 5;

    display: flex;

    align-items: center;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    width: 620px;

    padding-top: 50px;
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.hero-eyebrow {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 20px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.hero-eyebrow span {

    display: inline-block;

    width: 38px;

    height: 1px;

    background: var(--gold);

    margin-right: 2px;
}

.hero-eyebrow b {

    color: rgba(255, 255, 255, 0.4);

    font-weight: 400;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-content h1 {

    margin: 0 0 8px;

    color: var(--cream);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 700;

    line-height: 1.03;

    letter-spacing: -1.5px;
}

.hero-content h1 strong {

    display: block;

    color: var(--gold-light);

    font-weight: 700;
}


/* =========================================================
   HERO SECOND TITLE
========================================================= */

.hero-content h2 {

    margin: 0 0 22px;

    color: #eeeeee;

    font-size: 20px;

    font-weight: 400;

    letter-spacing: 0.3px;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-content p {

    max-width: 520px;

    margin: 0 0 30px;

    color: #cccccc;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   HERO GOLD BUTTON
========================================================= */

.gold-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 48px;

    padding: 0 25px;

    background: var(--gold);

    color: #050505;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    transition: var(--transition);
}

.gold-button i {

    font-size: 11px;

    transition: transform 0.3s ease;
}

.gold-button:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(201, 162, 39, 0.22);
}

.gold-button:hover i {

    transform: translateX(5px);
}


/* =========================================================
   HERO CONTENT ANIMATION
========================================================= */

.hero-slide .hero-eyebrow,
.hero-slide .hero-content h1,
.hero-slide .hero-content h2,
.hero-slide .hero-content p,
.hero-slide .hero-content .gold-button {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.hero-slide.active .hero-eyebrow {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.15s;
}

.hero-slide.active .hero-content h1 {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.3s;
}

.hero-slide.active .hero-content h2 {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.4s;
}

.hero-slide.active .hero-content p {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.5s;
}

.hero-slide.active .hero-content .gold-button {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.65s;
}


/* =========================================================
   HERO ARROWS
========================================================= */

.hero-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.28);

    border: 1px solid rgba(255, 255, 255, 0.30);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    backdrop-filter: blur(5px);

    transition: var(--transition);
}

.hero-arrow:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: #000000;
}

.hero-prev {

    left: 28px;
}

.hero-next {

    right: 28px;
}


/* =========================================================
   HERO INDICATORS
========================================================= */

.hero-indicators {

    position: absolute;

    left: 50%;

    bottom: 35px;

    transform: translateX(-50%);

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 9px;
}

.hero-indicators .indicator {

    width: 35px;

    height: 2px;

    padding: 0;

    background: rgba(255, 255, 255, 0.4);

    transition: var(--transition);
}

.hero-indicators .indicator.active {

    width: 60px;

    background: var(--gold);
}


/* =========================================================
   SCROLL DOWN
========================================================= */

.scroll-down {

    position: absolute;

    right: 35px;

    bottom: 28px;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 8px;

    color: #aaaaaa;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 2px;

    writing-mode: vertical-rl;

    transition: var(--transition);
}

.scroll-down i {

    font-size: 10px;
}

.scroll-down:hover {

    color: var(--gold-light);
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section {

    padding: 100px 0;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-label {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-heading h2 {

    margin: 0 0 16px;

    color: var(--cream);

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(34px, 5vw, 56px);

    font-weight: 700;

    line-height: 1.1;
}

.section-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   COLLECTION
========================================================= */

.collection {

    background: var(--black);

    position: relative;
}


/* =========================================================
   COLLECTION GRID
========================================================= */

.collection-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* =========================================================
   COLLECTION CARD
========================================================= */

.collection-card {

    display: block;

    background: var(--black-2);

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.06);

    transition: var(--transition);
}

.collection-card:hover {

    border-color: var(--border);

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35);
}




/* =====================================================
   COLLECTION / EXPLORE OUR PRODUCTS
===================================================== */

.collection-image {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #f5f2e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover effect */

.collection-card:hover .collection-image img {
    transform: scale(1.04);
}


/* =========================================================
   COLLECTION HOVER
========================================================= */

.collection-hover {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.55);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    opacity: 0;

    transition: var(--transition);
}

.collection-card:hover .collection-hover {

    opacity: 1;
}

.collection-hover i {

    transition: transform 0.3s ease;
}

.collection-card:hover .collection-hover i {

    transform: translateX(5px);
}


/* =========================================================
   COLLECTION INFO
========================================================= */

.collection-info {

    padding: 20px 20px 22px;
}

.collection-info h3 {

    margin: 0 0 5px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 600;
}

.collection-info p {

    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {

    padding: 100px 0;

    background: var(--black-2);
}


/* =========================================================
   ABOUT CONTAINER
========================================================= */

.about-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-image {

    position: relative;

    padding: 15px;
}

.about-image::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 65%;

    height: 65%;

    border-top: 1px solid var(--gold);

    border-left: 1px solid var(--gold);

    z-index: 1;
}

.about-image::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 65%;

    height: 65%;

    border-right: 1px solid var(--gold);

    border-bottom: 1px solid var(--gold);

    z-index: 1;
}

.about-image img {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 530px;

    object-fit: fill;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {

    max-width: 550px;
}

.about-content .section-label {

    margin-bottom: 15px;
}

.about-content h2 {

    margin: 0 0 22px;

    color: var(--cream);

    font-size: clamp(38px, 4.5vw, 58px);

    font-weight: 700;

    line-height: 1.08;
}

.about-content h2 span {

    display: block;

    color: var(--gold-light);
}

.about-content p {

    margin: 0 0 17px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.outline-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

    min-height: 46px;

    padding: 0 23px;

    border: 1px solid var(--gold);

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: var(--transition);
}

.outline-button i {

    transition: transform 0.3s ease;
}

.outline-button:hover {

    background: var(--gold);

    color: #000000;
}

.outline-button:hover i {

    transform: translateX(5px);
}


/* =========================================================
   WHY SECTION
========================================================= */

.why {

    background: #080808;
}


/* =========================================================
   FEATURES
========================================================= */

.features {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.feature {

    padding: 40px 25px;

    text-align: center;

    background: var(--black-2);

    border: 1px solid rgba(255, 255, 255, 0.07);

    transition: var(--transition);
}

.feature:hover {

    transform: translateY(-8px);

    background: var(--black-3);

    border-color: var(--border);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {

    width: 62px;

    height: 62px;

    margin: 0 auto 20px;

    border-radius: 50%;

    border: 1px solid var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold-light);

    font-size: 20px;

    transition: var(--transition);
}

.feature:hover .feature-icon {

    background: var(--gold);

    color: #000000;
}


/* =========================================================
   FEATURE TEXT
========================================================= */

.feature h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 600;
}

.feature p {

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.cta {

    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;
}


/* CTA Background */

.cta-background {

    position: absolute;

    inset: 0;

    background-image: url("../images/hero-2.jpg");

    background-size: cover;

    background-position: center;

    transform: scale(1.02);
}


/* CTA Overlay */

.cta-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.78)
        );
}


/* CTA Content */

.cta-content {

    position: relative;

    z-index: 2;

    width: min(90%, 750px);
}

.cta-content > span {

    display: block;

    margin-bottom: 14px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.cta-content h2 {

    margin: 0 0 18px;

    color: var(--cream);

    font-size: clamp(38px, 5vw, 62px);

    font-weight: 700;

    line-height: 1.08;
}

.cta-content p {

    margin: 0 0 28px;

    color: #cccccc;

    font-size: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: #050505;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding-top: 70px;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;

    gap: 45px;

    padding-bottom: 55px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand img {

    width: 125px;

    height: auto;

    margin-bottom: 18px;
}

.footer-brand p {

    max-width: 320px;

    margin: 0;

    color: #999999;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.social-links {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;
}

.social-links a {

    width: 38px;

    height: 38px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #aaaaaa;

    font-size: 14px;

    transition: var(--transition);
}

.social-links a:hover {

    color: #000000;

    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h3 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer-column > a {

    margin-bottom: 11px;

    color: #999999;

    font-size: 13px;

    transition: var(--transition);
}

.footer-column > a:hover {

    color: var(--gold-light);

    padding-left: 4px;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-column p {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 0 0 13px;

    color: #999999;

    font-size: 13px;

    line-height: 1.6;
}

.footer-column p i {

    width: 17px;

    margin-top: 4px;

    color: var(--gold);

    flex-shrink: 0;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    min-height: 65px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.footer-bottom p {

    margin: 0;

    color: #666666;

    font-size: 12px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 9999;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 26px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35);

    transition: var(--transition);
}

.whatsapp:hover {

    transform: scale(1.08);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header-container {

        gap: 20px;
    }

    .main-nav {

        gap: 20px;
    }

    .main-nav a {

        font-size: 11px;
    }

    .collection-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .features {

        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {

        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {

        gap: 45px;
    }
}


/* =========================================================
   MOBILE HEADER
========================================================= */

@media (max-width: 900px) {

    .top-bar {

        display: none;
    }

    .main-header {

        top: 0;
    }

    .header-container {

        min-height: 72px;

        gap: 12px;
    }

    .logo img {

        width: 105px;
    }

    .main-nav {

        display: none;
    }

    .header-actions {

        margin-left: auto;

        gap: 8px;
    }

    .header-action {

        width: 37px;

        height: 37px;

        font-size: 13px;
    }

    .menu-button {

        display: flex;
    }

    .mobile-menu {

        display: none;
    }

    .mobile-menu.active {

        display: block;
    }


    /* Hero */

    .hero {

        min-height: 600px;

        height: 90vh;
    }

    .hero-container {

        width: 90%;
    }

    .hero-content {

        width: 100%;

        padding-top: 40px;
    }

    .hero-content h1 {

        font-size: 52px;
    }

    .hero-content h2 {

        font-size: 18px;
    }

    .hero-content p {

        max-width: 500px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container,
    .header-container,
    .hero-container,
    .about-container,
    .footer-container {

        width: 90%;
    }


    /* HEADER */

    .header-container {

        min-height: 68px;
    }

    .logo img {

        width: 95px;
    }

    .header-actions {

        gap: 6px;
    }

    .header-action {

        width: 35px;

        height: 35px;

        font-size: 12px;
    }

    .menu-button {

        width: 38px;

        height: 38px;
    }


    /* HERO */

    .hero {

        height: 88vh;

        min-height: 570px;
    }

    .hero-slide {

        background-position: center center;
    }

    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.86),
                rgba(0, 0, 0, 0.55)
            );
    }

    .hero-content {

        padding-top: 30px;
    }

    .hero-eyebrow {

        font-size: 9px;

        letter-spacing: 1.5px;

        gap: 6px;

        margin-bottom: 15px;
    }

    .hero-eyebrow span {

        width: 25px;
    }

    .hero-content h1 {

        font-size: 42px;

        line-height: 1.05;

        letter-spacing: -0.5px;
    }

    .hero-content h2 {

        margin-bottom: 15px;

        font-size: 16px;
    }

    .hero-content p {

        margin-bottom: 24px;

        font-size: 12px;

        line-height: 1.75;

        max-width: 92%;
    }

    .gold-button {

        min-height: 44px;

        padding: 0 20px;

        font-size: 10px;
    }


    /* ARROWS */

    .hero-arrow {

        width: 38px;

        height: 38px;

        font-size: 12px;
    }

    .hero-prev {

        left: 10px;
    }

    .hero-next {

        right: 10px;
    }


    /* INDICATORS */

    .hero-indicators {

        bottom: 23px;
    }

    .hero-indicators .indicator {

        width: 25px;
    }

    .hero-indicators .indicator.active {

        width: 45px;
    }


    /* SCROLL */

    .scroll-down {

        display: none;
    }


    /* SECTION */

    .section {

        padding: 70px 0;
    }

    .section-heading {

        margin-bottom: 35px;
    }

    .section-label {

        font-size: 9px;

        letter-spacing: 2px;
    }

    .section-heading h2 {

        font-size: 35px;
    }

    .section-heading p {

        font-size: 13px;
    }


    /* COLLECTION */

    .collection-grid {

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .collection-image {

        height: 300px;
    }
    .collection-image img{
        object-fit: fill;
    }

    .collection-info {

        padding: 18px;
    }


    /* ABOUT */

    .about {

        padding: 70px 0;
    }

    .about-container {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image {

        padding: 10px;
    }

    .about-image img {

        height: 400px;
        object-fit: fill;
    }

    .about-content {

        max-width: 100%;
    }

    .about-content h2 {

        font-size: 38px;
    }

    .about-content p {

        font-size: 13px;
    }


    /* FEATURES */

    .features {

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .feature {

        padding: 32px 22px;
    }


    /* CTA */

    .cta {

        min-height: 430px;
    }

    .cta-content h2 {

        font-size: 40px;
    }

    .cta-content p {

        font-size: 13px;
    }


    /* FOOTER */

    .footer {

        padding-top: 55px;
    }

    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 45px;
    }

    .footer-brand p {

        max-width: 100%;
    }

    .footer-bottom {

        padding: 15px;
    }


    /* WHATSAPP */

    .whatsapp {

        width: 50px;

        height: 50px;

        right: 15px;

        bottom: 15px;

        font-size: 23px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .logo img {

        width: 88px;
    }

    .header-actions {

        gap: 5px;
    }

    .header-action {

        width: 33px;

        height: 33px;

        font-size: 11px;
    }

    .menu-button {

        width: 35px;

        height: 35px;
    }

    .menu-button span {

        width: 18px;
    }


    /* HERO */

    .hero {

        min-height: 550px;
    }

    .hero-content h1 {

        font-size: 37px;
    }

    .hero-content h2 {

        font-size: 15px;
    }

    .hero-content p {

        font-size: 11px;
    }

    .hero-eyebrow {

        font-size: 8px;

        letter-spacing: 1px;
    }

    .gold-button {

        padding: 0 16px;

        font-size: 9px;
    }


    /* COLLECTION */

    .collection-image {

        height: 390px;
    }


    /* ABOUT */

    .about-image img {

        height: 340px;
    }

    .about-content h2 {

        font-size: 34px;
    }


    /* CTA */

    .cta-content h2 {

        font-size: 34px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .logo img {

        width: 80px;
    }

    .header-action {

        width: 30px;

        height: 30px;
    }

    .menu-button {

        width: 32px;

        height: 32px;
    }

    .hero-content h1 {

        font-size: 33px;
    }

    .hero-content h2 {

        font-size: 14px;
    }

    .hero-content p {

        font-size: 10px;
    }

    .hero-arrow {

        width: 34px;

        height: 34px;
    }

    .hero-prev {

        left: 6px;
    }

    .hero-next {

        right: 6px;
    }
}










    

        /* =====================================================
           ABOUT PAGE HERO
        ===================================================== */

        .about-page-hero {
            min-height: 520px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;

            background:
                linear-gradient(
                    rgba(0, 0, 0, 0.62),
                    rgba(0, 0, 0, 0.72)
                ),
                url("images/about\ hero.png") center center / cover no-repeat;
        }

        .about-page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            padding: 40px 20px;
            color: #fff;
        }

        .about-page-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;

            color: #c9a227;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;

            margin-bottom: 20px;
        }

        .about-page-label::before,
        .about-page-label::after {
            content: "";
            width: 35px;
            height: 1px;
            background: #c9a227;
        }

        .about-page-hero h1 {
            margin: 0 0 18px;

            font-size: clamp(42px, 6vw, 72px);
            line-height: 1.05;
            font-weight: 700;
            color: #fff;
        }

        .about-page-hero h1 span {
            color: #c9a227;
        }

        .about-page-hero p {
            max-width: 680px;
            margin: 0 auto;

            color: #e7e7e7;
            font-size: 17px;
            line-height: 1.8;
        }


        /* =====================================================
           ABOUT INTRO
        ===================================================== */

        .about-intro {
            padding: 100px 0;
            background: #070707;
        }

        .about-intro-container {
            width: min(1200px, calc(100% - 40px));
            margin: auto;

            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 75px;

            align-items: center;
        }

        .about-intro-image {
            position: relative;
        }

        .about-intro-image img {
            width: 100%;
            height: 540px;

            display: block;
            object-fit: cover;
            object-position: center;

            border: 1px solid rgba(201, 162, 39, 0.35);
        }

        .about-image-frame {
            position: absolute;
            width: 100%;
            height: 100%;

            top: 18px;
            left: 18px;

            border: 1px solid rgba(201, 162, 39, 0.45);

            pointer-events: none;
            z-index: 0;
        }

        .about-intro-image img {
            position: relative;
            z-index: 1;
        }


        /* =====================================================
           CONTENT
        ===================================================== */

        .about-intro-content {
            color: #fff;
        }

        .about-intro-content .section-label {
            display: block;

            color: #c9a227;

            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;

            margin-bottom: 15px;
        }

        .about-intro-content h2 {
            margin: 0 0 25px;

            font-size: clamp(34px, 4vw, 52px);
            line-height: 1.15;

            color: #fff;
        }

        .about-intro-content h2 span {
            color: #c9a227;
        }

        .about-intro-content p {
            color: #bdbdbd;

            font-size: 16px;
            line-height: 1.9;

            margin: 0 0 18px;
        }


        /* =====================================================
           GOLD LINE
        ===================================================== */

        .gold-line {
            width: 70px;
            height: 2px;

            background: #c9a227;

            margin: 28px 0;
        }


        /* =====================================================
           VALUES SECTION
        ===================================================== */

        .about-values {
            padding: 100px 0;

            background: #0d0d0d;
        }

        .about-values-container {
            width: min(1200px, calc(100% - 40px));
            margin: auto;
        }

        .about-values-heading {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 60px;
        }

        .about-values-heading span {
            display: block;

            color: #c9a227;

            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;

            margin-bottom: 15px;
        }

        .about-values-heading h2 {
            margin: 0 0 18px;

            color: #fff;

            font-size: clamp(32px, 4vw, 48px);
        }

        .about-values-heading p {
            color: #999;
            line-height: 1.8;
        }

        .values-grid {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 25px;
        }

        .value-card {
            padding: 45px 30px;

            text-align: center;

            background: #151515;

            border: 1px solid rgba(255, 255, 255, 0.08);

            transition:
                transform 0.35s ease,
                border-color 0.35s ease;
        }

        .value-card:hover {
            transform: translateY(-8px);

            border-color: rgba(201, 162, 39, 0.55);
        }

        .value-icon {
            width: 65px;
            height: 65px;

            margin: 0 auto 25px;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid #c9a227;

            border-radius: 50%;

            color: #c9a227;

            font-size: 23px;
        }

        .value-card h3 {
            margin: 0 0 15px;

            color: #fff;

            font-size: 21px;
        }

        .value-card p {
            margin: 0;

            color: #999;

            font-size: 14px;
            line-height: 1.8;
        }


        /* =====================================================
           STORY SECTION
        ===================================================== */

        .about-story {
            padding: 100px 0;

            background: #070707;
        }

        .about-story-container {
            width: min(1000px, calc(100% - 40px));
            margin: auto;

            text-align: center;
        }

        .about-story-container .story-label {
            display: block;

            color: #c9a227;

            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;

            margin-bottom: 18px;
        }

        .about-story-container h2 {
            margin: 0 0 25px;

            color: #fff;

            font-size: clamp(34px, 4vw, 50px);
        }

        .about-story-container h2 span {
            color: #c9a227;
        }

        .about-story-container p {
            max-width: 850px;
            margin: 0 auto 18px;

            color: #a8a8a8;

            line-height: 1.9;
            font-size: 16px;
        }


        /* =====================================================
           ABOUT CTA
        ===================================================== */

        .about-page-cta {
            padding: 90px 20px;

            text-align: center;

            background:
                linear-gradient(
                    rgba(0, 0, 0, 0.76),
                    rgba(0, 0, 0, 0.82)
                ),
                url("images/about\ hero.png") center / cover no-repeat;
        }

        .about-page-cta span {
            display: block;

            /* color: #c9a227; */
            color: black;

            font-size: 13px;
            letter-spacing: 3px;
            font-weight: 600;

            margin-bottom: 15px;
        }

        .about-page-cta h2 {
            margin: 0 0 20px;

            color: #fff;

            font-size: clamp(34px, 5vw, 56px);
        }

        .about-page-cta p {
            margin: 0 auto 30px;

            color: #c5c5c5;

            line-height: 1.8;
        }


        /* =====================================================
           MOBILE
        ===================================================== */

        @media (max-width: 900px) {

            .about-intro-container {
                grid-template-columns: 1fr;
                gap: 55px;
            }

            .about-intro-image img {
                height: 500px;
            }

            .values-grid {
                grid-template-columns: 1fr 1fr;
            }

        }


        @media (max-width: 700px) {

            .about-page-hero {
                min-height: 430px;
            }

            .about-page-hero p {
                font-size: 15px;
            }

            .about-intro {
                padding: 70px 0;
            }

            .about-intro-container {
                width: min(100% - 30px, 1200px);
            }

            .about-intro-image img {
                height: 400px;
            }

            .about-image-frame {
                top: 10px;
                left: 10px;
            }

            .about-values {
                padding: 70px 0;
            }

            .about-values-container {
                width: min(100% - 30px, 1200px);
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .about-story {
                padding: 70px 0;
            }

        }


        @media (max-width: 450px) {

            .about-page-hero {
                min-height: 390px;
            }

            .about-page-label {
                font-size: 11px;
                letter-spacing: 2px;
            }

            .about-intro-image img {
                height: 340px;
            }

            .about-intro-content p,
            .about-story-container p {
                font-size: 14px;
            }

        }

   










      

        /* =====================================================
           SHOP PAGE
        ===================================================== */

        .shop-page {
            background: #070707;
            color: #fff;
        }


        /* =====================================================
           SHOP HERO
        ===================================================== */

        .shop-hero {
            min-height: 480px;

            display: flex;
            align-items: center;
            justify-content: center;

            text-align: center;

            position: relative;

            background:
                linear-gradient(
                    rgba(0, 0, 0, 0.65),
                    rgba(0, 0, 0, 0.78)
                ),
                url("images/about\ hero.png")
                center center / cover no-repeat;
        }

        .shop-hero-content {
            max-width: 800px;
            padding: 40px 20px;
            position: relative;
            z-index: 2;
        }

        .shop-hero-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;

            color: #c9a227;

            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;

            margin-bottom: 20px;
        }

        .shop-hero-label::before,
        .shop-hero-label::after {
            content: "";

            width: 35px;
            height: 1px;

            background: #c9a227;
        }

        .shop-hero h1 {
            margin: 0 0 18px;

            color: #fff;

            font-size: clamp(42px, 6vw, 70px);

            line-height: 1.05;
        }

        .shop-hero h1 span {
            color: #c9a227;
        }

        .shop-hero p {
            max-width: 650px;

            margin: auto;

            color: #d0d0d0;

            font-size: 16px;
            line-height: 1.8;
        }


        /* =====================================================
           SHOP SECTION
        ===================================================== */

        .shop-section {
            padding: 90px 0 110px;

            background: #070707;
        }

        .shop-container {
            width: min(1200px, calc(100% - 40px));

            margin: auto;
        }


        /* =====================================================
           SHOP TOP
        ===================================================== */

        .shop-top {
            display: flex;

            align-items: center;
            justify-content: space-between;

            gap: 20px;

            margin-bottom: 45px;

            padding-bottom: 22px;

            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .shop-result {
            color: #999;

            font-size: 14px;
        }

        .shop-result strong {
            color: #fff;
        }

        .shop-filter {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .shop-filter label {
            color: #999;

            font-size: 14px;
        }

        .shop-filter select {
            min-width: 170px;

            padding: 11px 35px 11px 14px;

            background: #151515;

            color: #fff;

            border: 1px solid rgba(255, 255, 255, 0.12);

            outline: none;

            cursor: pointer;
        }

        .shop-filter select:focus {
            border-color: #c9a227;
        }


        /* =====================================================
           PRODUCT GRID
        ===================================================== */

        .shop-grid {
            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 25px;
        }


        /* =====================================================
           PRODUCT CARD
        ===================================================== */

        .shop-product {
            background: #111;

            border: 1px solid rgba(255, 255, 255, 0.08);

            overflow: hidden;

            position: relative;

            transition:
                transform 0.35s ease,
                border-color 0.35s ease;
        }

        .shop-product:hover {
            transform: translateY(-8px);

            border-color: rgba(201, 162, 39, 0.55);
        }


        /* =====================================================
           PRODUCT IMAGE
        ===================================================== */

        .product-image {
            width: 100%;
            height: 200px;

            background: #f5f2e9;

            position: relative;

            overflow: hidden;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            width: 100%;
            height: 100%;

            object-fit: fill;

            object-position: center;

            display: block;

            transition:
                transform 0.5s ease;
        }

        .shop-product:hover .product-image img {
            transform: scale(1.05);
        }


        /* =====================================================
           PRODUCT BADGE
        ===================================================== */

        .product-badge {
            position: absolute;

            top: 15px;
            left: 15px;

            padding: 7px 12px;

            background: #c9a227;

            color: #070707;

            font-size: 11px;
            font-weight: 700;

            letter-spacing: 1px;

            text-transform: uppercase;

            z-index: 2;
        }


        /* =====================================================
           PRODUCT ACTIONS
        ===================================================== */

        .product-actions {
            position: absolute;

            top: 15px;
            right: 15px;

            display: flex;

            flex-direction: column;

            gap: 8px;

            opacity: 0;

            transform: translateX(10px);

            transition: all 0.3s ease;

            z-index: 3;
        }

        .shop-product:hover .product-actions {
            opacity: 1;

            transform: translateX(0);
        }

        .product-action {
            width: 40px;
            height: 40px;

            display: flex;

            align-items: center;
            justify-content: center;

            border: none;

            background: #070707;

            color: #fff;

            cursor: pointer;

            transition:
                background 0.3s ease,
                color 0.3s ease;
        }

        .product-action:hover {
            background: #c9a227;

            color: #070707;
        }


        /* =====================================================
           PRODUCT INFO
        ===================================================== */

        .product-info {
            padding: 24px 22px 25px;
        }

        .product-category {
            display: block;

            margin-bottom: 8px;

            color: #c9a227;

            font-size: 11px;

            font-weight: 600;

            letter-spacing: 2px;

            text-transform: uppercase;
        }

        .product-info h3 {
            margin: 0 0 10px;

            color: #fff;

            font-size: 19px;

            font-weight: 600;
        }

        .product-info p {
            margin: 0 0 16px;

            color: #999;

            font-size: 13px;

            line-height: 1.7;
        }

        .product-bottom {
            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 10px;
        }

        .product-price {
            color: #c9a227;

            font-size: 18px;

            font-weight: 700;
        }

        .view-product {
            display: inline-flex;

            align-items: center;

            gap: 7px;

            color: #fff;

            text-decoration: none;

            font-size: 12px;

            font-weight: 600;

            text-transform: uppercase;

            letter-spacing: 1px;

            transition: color 0.3s ease;
        }

        .view-product:hover {
            color: #c9a227;
        }


        /* =====================================================
           SHOP CTA
        ===================================================== */

        .shop-bottom-cta {
            margin-top: 80px;

            padding: 75px 30px;

            text-align: center;

            background:
                linear-gradient(
                    rgba(0, 0, 0, 0.76),
                    rgba(0, 0, 0, 0.84)
                ),
                url("images/hero-1.jpg")
                center / cover no-repeat;
        }

        .shop-bottom-cta span {
            display: block;

            margin-bottom: 14px;

            color:black;

            font-size: 12px;

            font-weight: 600;

            letter-spacing: 3px;

            text-transform: uppercase;
        }

        .shop-bottom-cta h2 {
            margin: 0 0 18px;

            color: #fff;

            font-size: clamp(32px, 5vw, 50px);
        }

        .shop-bottom-cta p {
            margin: 0 auto 28px;

            color: #bdbdbd;

            line-height: 1.8;
        }


        /* =====================================================
           MOBILE
        ===================================================== */

        @media (max-width: 1100px) {

            .shop-grid {
                grid-template-columns: repeat(3, 1fr);
            }

        }


        @media (max-width: 900px) {

            .shop-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .product-image {
                height: 330px;
            }

        }


        @media (max-width: 700px) {

            .shop-hero {
                min-height: 420px;
            }

            .shop-section {
                padding: 65px 0 80px;
            }

            .shop-container {
                width: min(100% - 30px, 1200px);
            }

            .shop-top {
                flex-direction: column;

                align-items: flex-start;

                margin-bottom: 30px;
            }

            .shop-filter {
                width: 100%;
            }

            .shop-filter select {
                width: 100%;
            }

            .shop-grid {
                grid-template-columns: 1fr 1fr;

                gap: 15px;
            }

            .product-image {
                height: 260px;
            }

            .product-info {
                padding: 18px 15px 20px;
            }

            .product-info h3 {
                font-size: 16px;
            }

            .product-info p {
                font-size: 12px;
            }

            .product-price {
                font-size: 16px;
            }

            .view-product {
                font-size: 10px;
            }

            .product-actions {
                opacity: 1;

                transform: none;
            }

        }


        @media (max-width: 450px) {

            .shop-grid {
                grid-template-columns: 1fr;
            }

            .product-image {
                height: 330px;
            }

            .shop-hero p {
                font-size: 14px;
            }

        }




        /* =====================================================
   SEARCH OVERLAY
===================================================== */

.search-trigger {
    background: transparent;
    border: 0;
    cursor: pointer;
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(8px);

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 150px 20px 40px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: .3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-box {
    width: min(700px, 100%);

    background: #0d0d0d;
    border: 1px solid var(--gold-dark);

    padding: 35px;

    position: relative;

    transform: translateY(-20px);
    transition: .3s ease;
}

.search-overlay.active .search-box {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 15px;
    right: 18px;

    width: 35px;
    height: 35px;

    border: 0;
    background: transparent;

    color: #aaa;
    font-size: 20px;

    cursor: pointer;
}

.search-close:hover {
    color: var(--gold-light);
}

.search-label {
    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.search-input-wrap {
    display: flex;
    align-items: center;

    height: 58px;

    border: 1px solid #333;
    background: #070707;

    padding: 0 18px;

    transition: .25s ease;
}

.search-input-wrap:focus-within {
    border-color: var(--gold);
}

.search-input-wrap i {
    color: var(--gold-light);
    margin-right: 13px;
}

.search-input-wrap input {
    width: 100%;

    height: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: #fff;

    font-size: 15px;
}

.search-input-wrap input::placeholder {
    color: #777;
}

.search-hint {
    color: #777;

    font-size: 12px;

    margin-top: 12px;
}

body.search-open {
    overflow: hidden;
}

@media (max-width: 600px) {

    .search-overlay {
        padding: 120px 15px 30px;
    }

    .search-box {
        padding: 30px 20px;
    }

}





/* =====================================================
   HOME HERO - MOBILE FIX
===================================================== */

@media (max-width: 700px) {

    .hero {
        height: 78vh;
        min-height: 560px;
        max-height: 720px;

        position: relative;
        overflow: hidden;
    }

    .hero-slide {
        position: absolute;
        inset: 0;

        background-position: center center;
        background-size: cover;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;

        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.28) 0%,
                rgba(0, 0, 0, 0.48) 45%,
                rgba(0, 0, 0, 0.88) 100%
            );
    }

    .hero-content {
        width: 100%;
        max-width: 100%;

        padding: 0 22px;

        position: absolute;
        left: 0;
        right: 0;
        bottom: 105px;

        text-align: center;

        transform: none;
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 2.5px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(30px, 9vw, 46px);
        line-height: 1.08;

        margin: 0 auto 15px;

        max-width: 340px;
    }

    .hero-description {
        max-width: 330px;

        margin: 0 auto 23px;

        font-size: 13px;
        line-height: 1.65;

        color: rgba(255,255,255,.82);
    }

    .hero-buttons {
        display: flex;

        justify-content: center;
        align-items: center;

        gap: 10px;

        flex-wrap: wrap;
    }

    .hero-buttons .gold-button,
    .hero-buttons .outline-button {
        min-height: 46px;

        padding: 12px 18px;

        font-size: 11px;
        letter-spacing: .4px;
    }

    /* HERO ARROWS */

    .hero-arrow {
        width: 38px;
        height: 38px;

        top: 50%;

        transform: translateY(-50%);

        background: rgba(0,0,0,.45);

        border: 1px solid rgba(201,162,39,.65);

        font-size: 13px;

        z-index: 10;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    /* INDICATORS */

    .hero-indicators {
        bottom: 55px;

        gap: 7px;
    }

    .hero-indicator {
        width: 22px;
        height: 3px;
    }

    /* SCROLL DOWN */

    .hero-scroll {
        bottom: 17px;

        font-size: 9px;
        letter-spacing: 2px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 450px) {

    .hero {
        height: 76vh;
        min-height: 520px;
    }

    .hero-content {
        bottom: 92px;
        padding: 0 18px;
    }

    .hero-title {
        font-size: 32px;
        max-width: 310px;
    }

    .hero-description {
        font-size: 12px;
        max-width: 300px;
        margin-bottom: 19px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .hero-buttons .gold-button,
    .hero-buttons .outline-button {
        min-height: 43px;
        padding: 11px 15px;
        font-size: 10px;
    }

    .hero-arrow {
        width: 34px;
        height: 34px;
    }

    .hero-prev {
        left: 7px;
    }

    .hero-next {
        right: 7px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 360px) {

    .hero {
        min-height: 500px;
        height: 74vh;
    }

    .hero-content {
        bottom: 88px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 29px;
    }

    .hero-description {
        font-size: 11px;
        line-height: 1.55;
    }

    .hero-buttons .gold-button,
    .hero-buttons .outline-button {
        padding: 10px 13px;
        font-size: 9px;
    }

}
   