:root {
    --clr-dark-green: #55715B;
    --clr-olive: #6b7f5e;
    --clr-accent: #899470;
    --clr-bg: #f4f5ef;
    --clr-white: #ffffff;
    --clr-text: #2c2c2c;
    --clr-muted: #666;
    --clr-gold: #c9a84c;
    --clr-promo: #e8f0de;
    --header-bg: #FBFFFB;
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --primary-heading: #101010;
    --secondary-heading: #696E73;
    --bg-light: #f8f8f8;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    /* background: var(--clr-bg); */
    color: var(--clr-text);
}


/* ── TOP BAR ── */

.top-bar {
    background: var(--clr-dark-green);
    color: var(--clr-white);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 7px 0;
}

.top-bar a {
    color: var(--clr-white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar .phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.01em;
}

.top-bar .promo-text {
    text-align: center;
    letter-spacing: 0.01em;
}

.promo-price {
    font-weight: 700;
    color: #f4c542;
}

.promo-cta {
    color: #f4c542 !important;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.promo-cta:hover {
    color: #ffdb70;
}

.top-bar .lang-select {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s;
}

.top-bar .lang-select:hover {
    opacity: 0.8;
}


/* ── MAIN HEADER ── */

.main-header {
    background: var(--header-bg);
    padding: 14px 0;
    border-bottom: 1px solid #e8ebe0;
    box-shadow: 0 2px 10px rgba(59, 74, 54, 0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Logo */

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 54px;
    height: 54px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    margin-left: 4px;
}

.logo-text .brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--clr-dark-green);
    font-weight: 600;
}

.logo-text .sub {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-olive);
    font-weight: 500;
}


/* Search */

.search-wrap {
    flex: 1;
    max-width: 520px;
    display: flex;
    align-items: center;
    border: 1px solid #EAEAEA;
    border-radius: 50px;
    background: #FBFFFB;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    height: 50px;
}

.search-wrap:focus-within {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(143, 166, 122, 0.18);
}

.search-wrap input {
    border: none;
    background: #FBFFFB;
    padding: 10px 14px;
    font-size: 0.88rem;
    flex: 1;
    outline: none;
    color: var(--clr-text);
    font-family: var(--font-body);
}

.search-wrap input::placeholder {
    color: #C4C4C4;
    font-weight: 400;
    font-size: 15px;
    font-family: var(--font-body);
}

.search-wrap button {
    background: var(--clr-accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    width: 110px;
    height: 50px;
    span {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.2s;
        font-family: var(--font-body);
        white-space: nowrap;
    }
}

.search-wrap button:hover {
    background: var(--clr-olive);
}


/* Header icons */

.header-icons {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.icon-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--clr-text);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
}

.icon-btn:hover {
    color: var(--clr-dark-green);
}

.icon-btn i {
    font-size: 1.4rem;
}

.icon-btn .badge-dot {
    position: absolute;
    top: -3px;
    right: -5px;
    width: 17px;
    height: 17px;
    background: var(--clr-dark-green);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.icon-btn .icon-label {
    font-size: 0.65rem;
    color: var(--clr-muted);
    margin-top: 2px;
    font-weight: 500;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.account-btn:hover {
    color: var(--clr-dark-green);
}

.account-btn i {
    font-size: 1.4rem;
}

.account-btn .acct-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.account-btn .acct-text .hello {
    font-size: 0.68rem;
    color: var(--clr-muted);
}

.account-btn .acct-text .login {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text);
}


/* ── NAV BAR ── */

.nav-bar {
    background: var(--clr-white);
    padding: 0;
    margin: 20px 0;
}

.nav-inner {
    display: flex;
    align-items: stretch;
}


/* All Category */

.all-cat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eef0ea;
    border: none;
    padding: 13px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-dark-green);
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s;
    border-right: 1px solid #dde3d5;
    flex-shrink: 0;
}

.all-cat-btn:hover {
    background: #dfe4d7;
}

.all-cat-btn i {
    font-size: 1.1rem;
}


/* Main nav links */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    gap: 4px;
    margin-left: auto;
}

.main-nav a {
    color: var(--clr-text);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 14px 14px;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--clr-dark-green);
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--clr-dark-green);
}

.main-nav a:hover::after {
    width: 70%;
}


/* Special links */

.special-links {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-right: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.special-link {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    transition: background 0.2s;
    white-space: nowrap;
}

.special-link.piks {
    color: var(--clr-olive);
    border: 1.5px solid var(--clr-accent);
}

.special-link.piks:hover {
    background: #eef2e8;
}

.special-link.brand {
    color: var(--clr-dark-green);
    border: 1.5px solid var(--clr-dark-green);
}

.special-link.brand:hover {
    background: #e8ede2;
}

.special-link i {
    font-size: 1rem;
}


/* ── MOBILE OFFCANVAS NAV ── */

.offcanvas-header {
    background: var(--clr-dark-green);
    color: #fff;
}

.offcanvas-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.btn-close-white {
    filter: invert(1);
}

.mobile-nav-list {
    list-style: none;
    padding: 16px 0;
    margin: 0;
}

.mobile-nav-list li a {
    display: block;
    padding: 12px 20px;
    color: var(--clr-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: background 0.15s, color 0.15s;
}

.mobile-nav-list li a:hover {
    background: #f0f4ec;
    color: var(--clr-dark-green);
}

.mobile-special a {
    color: var(--clr-olive) !important;
    font-weight: 600 !important;
}


/* ── RESPONSIVE ── */

@media (max-width: 991.98px) {
    .search-wrap {
        max-width: 100%;
    }
    .special-links {
        display: none;
    }
    .main-nav {
        display: none;
    }
    .all-cat-btn-label {
        display: none;
    }
    .all-cat-btn {
        padding: 13px 16px;
    }
}

@media (max-width: 767.98px) {
    .top-bar .promo-text {
        display: none;
    }
    .account-btn .acct-text {
        display: none;
    }
    .icon-btn .icon-label {
        display: none;
    }
    .logo-text .sub {
        display: none;
    }
    .main-header .container {
        gap: 12px;
    }
    .search-wrap {
        max-width: 100%;
        flex: 1;
    }
}

@media (max-width: 575.98px) {
    .top-bar .phone-link span {
        display: none;
    }
    .search-wrap button .btn-label {
        display: none;
    }
    .search-wrap button {
        padding: 10px 13px;
    }
    .header-icons {
        gap: 12px;
    }
}


/* Demo body padding */

.demo-content {
    padding: 40px 20px;
    text-align: center;
    color: var(--clr-muted);
    font-size: 0.9rem;
}


/* ══════════════════════════════════
        HERO BANNER STYLES
        ══════════════════════════════════ */

.hero-section {
    padding: 20px 0 30px;
    /* background: var(--clr-bg); */
}


/* Grid: left big | right stacked */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    min-height: 560px;
}


/* ── LEFT HERO ── */

.hero-left {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.hero-left-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.hero-left:hover .hero-img {
    transform: scale(1.03);
}

.hero-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 40, 26, 0.82) 0%, rgba(30, 40, 26, 0.35) 45%, transparent 70%);
    border-radius: 14px;
}

.hero-left-content {
    position: absolute;
    bottom: 38px;
    left: 36px;
    right: 36px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4e8c2;
    margin-bottom: 8px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background: var(--clr-dark-green);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.25s, transform 0.2s;
    border: 2px solid transparent;
}

.hero-btn:hover {
    background: var(--clr-olive);
    color: #fff;
    transform: translateY(-2px);
}


/* ── RIGHT COLUMN ── */

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* ── SLIDER ── */

.hero-slider {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    flex: 1;
    min-height: 260px;
    background: #e8ede3;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.slide.active .slide-img {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 38%, rgba(240, 244, 238, 0.72) 58%, rgba(232, 238, 228, 0.92) 75%);
}

.slide-content {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    max-width: 55%;
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.2;
    margin-bottom: 8px;
}

.slide-sub {
    font-size: 0.78rem;
    color: var(--clr-muted);
    margin-bottom: 12px;
}

.slide-link {
    display: inline-block;
    color: var(--clr-dark-green);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.slide-link:hover {
    color: var(--clr-olive);
}


/* Dots */

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 20px;
    display: flex;
    gap: 7px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--clr-dark-green);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.dot.active {
    background: var(--clr-dark-green);
    transform: scale(1.1);
}


/* Arrow controls */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.75);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--clr-dark-green);
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 12px;
}

.slider-arrow.next {
    right: 12px;
}


/* ── STATIC JEWELRY BANNER ── */

.hero-static {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    flex: 1;
    min-height: 240px;
    background: #ede9e3;
}

.static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    transition: transform 0.6s ease;
}

.hero-static:hover .static-img {
    transform: scale(1.03);
}

.static-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(237, 233, 227, 0.96) 0%, rgba(237, 233, 227, 0.7) 45%, transparent 68%);
}

.static-content {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 52%;
}

.static-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.25;
    margin-bottom: 8px;
}

.static-sub {
    font-size: 0.78rem;
    color: var(--clr-muted);
    margin-bottom: 12px;
}

.static-link {
    display: inline-block;
    color: var(--clr-dark-green);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.static-link:hover {
    color: var(--clr-olive);
}


/* ── RESPONSIVE ── */

@media (max-width: 991.98px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-left-inner {
        min-height: 420px;
    }
    .hero-right {
        flex-direction: row;
    }
    .hero-slider,
    .hero-static {
        min-height: 300px;
        flex: 1;
    }
    .slide-content {
        max-width: 60%;
    }
    .static-content {
        max-width: 55%;
    }
}

@media (max-width: 767.98px) {
    .hero-right {
        flex-direction: column;
    }
    .hero-left-inner {
        min-height: 360px;
    }
    .hero-left-content {
        left: 22px;
        right: 22px;
        bottom: 26px;
    }
    .hero-slider,
    .hero-static {
        min-height: 260px;
    }
    .slide-content {
        right: 18px;
        max-width: 60%;
    }
    .static-content {
        left: 20px;
        max-width: 60%;
    }
}

@media (max-width: 575.98px) {
    .hero-grid {
        gap: 10px;
    }
    .hero-headline {
        font-size: 2.4rem;
    }
    .slide-title,
    .static-title {
        font-size: 1.1rem;
    }
    .hero-left-inner {
        min-height: 320px;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}


/* Top Contact */

.top-contact {
    background: linear-gradient(90deg, #2d4d3a, #1e3a2d);
}


/* Footer */

.main-footer {
    background: #2f4f3f;
}

.main-footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.main-footer a:hover {
    color: #fff;
}


/* Social */

.social-icons a {
    color: #ccc;
    margin-right: 10px;
    font-size: 16px;
}

.social-icons a:hover {
    color: #fff;
}


/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: #ccc;
    font-size: 13px;
}

.footer-bottom a:hover {
    color: #fff;
}


/* Responsive tweaks */

@media (max-width: 768px) {
    .top-contact .row>div {
        justify-content: center !important;
        text-align: center;
    }
}