:root {
    --rose: #bd8f6e;
    --rose-dark: #a97a58;
    --dark: #141414;
    --cream: #faf8f5;
    --footer-dark: #1c1c1c;
}

*, *::before, *::after {
    border-radius: 0 !important;
}

html {
    font-size: 17.5px;
    background-color: var(--cream);
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--dark);
    background-color: var(--cream);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
.font-display {
    font-family: 'Space Grotesk', sans-serif;
}

a {
    color: var(--rose-dark);
}

.btn {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 0.75rem 1.5rem;
}

.btn-rose {
    background-color: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

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

.btn-outline-rose {
    background-color: transparent;
    border: 1px solid var(--rose);
    color: var(--rose);
}

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

.text-rose {
    color: var(--rose);
}

.cta-dark {
    position: relative;
    background-color: var(--footer-dark);
    color: var(--cream);
    border-top: 3px solid var(--rose);
    overflow: hidden;
}

.cta-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(120deg, transparent 30%, #2c1f14 65%, transparent 100%);
    background-size: 100% 420px;
    background-repeat: no-repeat;
    background-position: top;
    pointer-events: none;
}

.cta-dark .container {
    position: relative;
    z-index: 1;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: var(--rose);
}

/* Navbar */
.navbar-n2h {
    background-color: var(--cream);
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.navbar-n2h .navbar-brand {
    display: inline-flex;
    align-items: center;
}

.navbar-brand__logo {
    height: 56px;
    width: auto;
}

.navbar-n2h .nav-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--dark);
    padding-bottom: 0.35rem;
    border-bottom: 2px solid transparent;
}

.navbar-n2h .nav-link:hover {
    color: var(--rose-dark);
}

.navbar-n2h .nav-link.active {
    color: var(--rose);
    border-bottom-color: var(--rose);
}

/* Hero slider */
.hero-cine {
    position: relative;
    min-height: 74vh;
    overflow: hidden;
    background: linear-gradient(115deg, #2b2b2b 0%, #6b6b6b 55%, #9a9a9a 100%);
}

.hero-cine::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 5;
    background: linear-gradient(90deg, var(--rose-dark), var(--rose) 45%, #e8cbb3 75%, var(--rose-dark));
}

.hero-two {
    position: absolute;
    right: -2rem;
    top: -6rem;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 28rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.cine-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease;
}

.cine-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.cine-slide__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cine-slide.is-active .cine-slide__image {
    animation: n2h-ken-burns 8s ease-out forwards;
}

.cine-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.45) 55%, rgba(10, 10, 10, 0.15) 100%);
}

.cine-slide__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 640px;
}

.cine-slide__content .kicker {
    letter-spacing: 0.35em;
}

.cine-slide__title {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-style: italic;
    font-weight: 700;
}

.cine-slide__subtitle {
    font-weight: 300;
    font-size: 1.2rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.88);
}

.cine-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2rem;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.hero-nav-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-nav-arrow:hover {
    background: var(--rose);
    border-color: var(--rose);
}

@keyframes n2h-ken-burns {
    from { transform: scale(1); }
    to { transform: scale(1.09); }
}

@media (prefers-reduced-motion: reduce) {
    .cine-slide.is-active .cine-slide__image { animation: none; }
}

@media (max-width: 767.98px) {
    html { font-size: 16.5px; }
    .hero-cine { min-height: 80vh; }
    .hero-two { font-size: 14rem; top: -3rem; right: -1.5rem; }
    .cine-nav { bottom: 1.2rem; gap: 0.5rem; }
}

@media (max-width: 575.98px) {
    .hero-cine { min-height: 72vh; }
    .cine-slide__title { font-size: 2.1rem; }
    .hero-two { font-size: 10rem; top: -2rem; }
}

/* USP blocks */
.usp-card {
    text-align: center;
    padding: 2.4rem 1.8rem;
    height: 100%;
    border: 1px solid #eee2d7;
    background: #fff;
}

.usp-card__icon {
    font-size: 2rem;
    color: var(--rose);
    margin-bottom: 1.1rem;
}

.usp-card h3 {
    font-size: 1.35rem;
}

/* Category tiles */
.cat-card {
    position: relative;
    display: block;
    height: 300px;
    overflow: hidden;
    background-color: var(--dark);
    color: #fff;
    text-decoration: none;
}

.cat-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.1) 40%, rgba(20, 20, 20, 0.75) 100%);
}

.cat-card__title {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
}

.cat-card--1 { background: linear-gradient(160deg, #8a7256 0%, #4b3a2a 100%); }
.cat-card--2 { background: linear-gradient(160deg, #6e7d6b 0%, #35402f 100%); }
.cat-card--3 { background: linear-gradient(160deg, #7c8a99 0%, #2f3a45 100%); }
.cat-card--4 { background: linear-gradient(160deg, #a3866b 0%, #3d2f24 100%); }

/* Page header (cinematic subpage banner for category/store/contact pages) */
.page-hero-cine {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #8a8a8a 0%, #3a3a3a 55%, #1c1c1c 100%);
}

.phc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: n2h-ken-burns 10s ease-out forwards;
}

.phc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0.2) 100%);
}

.page-hero-cine .hero-word {
    position: absolute;
    right: -1rem;
    bottom: -2.4rem;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(5rem, 14vw, 10.5rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
    pointer-events: none;
    white-space: nowrap;
}

.phc-content {
    position: relative;
    z-index: 3;
    padding: 5rem 15px 5.5rem;
}

.page-hero-cine__title {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-style: italic;
}

.page-hero-cine .hero-sub {
    font-weight: 300;
    font-size: 1.15rem;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
}

.page-hero-cine__breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
}

.page-hero-cine__breadcrumb a {
    color: var(--rose);
    text-decoration: none;
}

.page-hero-cine__breadcrumb span {
    color: rgba(255, 255, 255, 0.85);
}

.page-hero-cine::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 4;
    background: linear-gradient(90deg, var(--rose-dark), var(--rose) 45%, #e8cbb3 75%, var(--rose-dark));
}

@media (prefers-reduced-motion: reduce) {
    .phc-bg { animation: none; }
}

@media (max-width: 767.98px) {
    .phc-content { padding: 3.5rem 15px 4.5rem; }
}

@media (max-width: 575.98px) {
    .page-hero-cine .hero-word { font-size: 3.6rem; bottom: -0.9rem; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18); }
    .phc-content { padding: 3rem 15px 4.5rem; }
}

/* Generic feature placeholder image (used where no photo has been uploaded yet) */
.feature-image {
    height: 360px;
    width: 100%;
    object-fit: cover;
    background-color: #e5e0d8;
}

/* Checklist with rose checkmarks */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    margin-bottom: 0.6rem;
}

.check-list li i {
    color: var(--rose);
    margin-right: 0.5rem;
}

/* Brand cards */
.brand-card {
    border: 1px solid rgba(20, 20, 20, 0.08);
    background: #fff;
    height: 100%;
    padding: 1.75rem;
}

/* Store cards */
.store-card {
    border: 1px solid rgba(20, 20, 20, 0.08);
    overflow: hidden;
    background: #fff;
    height: 100%;
}

.store-card__image {
    height: 293px;
    width: 100%;
    object-fit: cover;
}

.store-card__image--placeholder.store-card__image--1 { background: linear-gradient(160deg, #a3866b 0%, #3d2f24 100%); }
.store-card__image--placeholder.store-card__image--2 { background: linear-gradient(160deg, #7c8a99 0%, #2f3a45 100%); }

/* Product cards */
.product-card {
    display: block;
    border: 1px solid #f0e6dc;
    overflow: hidden;
    background: #fff;
    height: 100%;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.product-card__image {
    height: 240px;
    width: 100%;
    object-fit: cover;
    background-color: #e5e0d8;
}

.product-card__brand {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: #6d6d6d;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.product-card__price {
    color: var(--rose);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Brand ticker */
.brand-ticker {
    border-top: 1px solid #eee2d7;
    border-bottom: 1px solid #eee2d7;
    background-color: #fff;
    overflow: hidden;
    white-space: nowrap;
}

.brand-ticker__track {
    display: inline-flex;
    align-items: center;
    padding: 1rem 0;
    animation: n2h-ticker 55s linear infinite;
}

.brand-ticker__item {
    display: inline-flex;
    align-items: center;
    padding: 0 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.95rem;
    font-weight: 500;
    color: #a9a29b;
}

.brand-ticker__item::after {
    content: '\2022';
    color: #d9c3b1;
    margin-left: 1.5rem;
}

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

footer.site-footer {
    background-color: var(--footer-dark);
    color: rgba(250, 248, 245, 0.8);
    border-top: 3px solid var(--rose);
}

footer.site-footer a {
    color: rgba(250, 248, 245, 0.8);
    text-decoration: none;
}

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

footer.site-footer h5 {
    position: relative;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem !important;
}

footer.site-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5rem;
    height: 2px;
    background-color: var(--rose);
}

footer.site-footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(250, 248, 245, 0.3);
    border-radius: 50% !important;
}

footer.site-footer .credit {
    text-decoration: underline;
}

/* Contact line (address/phone/email rows — footer and store cards) */
.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.contact-line i {
    color: var(--rose);
    margin-top: 0.2rem;
}

/* Contact line with a rose badge icon (store detail + contact page) */
.contact-line--badge {
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 46px;
    height: 46px;
    background: #f7efe8;
    color: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    flex-shrink: 0;
    font-size: 1.05rem;
}
