/* ==========================================================================
   FashForward_Luxe - Main Theme Styles
   Design System: "Fash Forward Signature" Design Language
   ========================================================================== */

/* ==========================================================================
   Header
   ========================================================================== */

.ff-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--ff-transition), box-shadow var(--ff-transition), transform var(--ff-transition);
    padding: 0;
}

.ff-header--scrolled {
    background: var(--ff-espresso);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--ff-gold);
}

.ff-header--hidden {
    transform: translateY(-100%);
}

.ff-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 2rem;
}

/* Logo */
.ff-header__logo {
    flex-shrink: 0;
}

.ff-header__logo img {
    max-height: 50px;
    width: auto;
}

.ff-header__site-name {
    font-family: var(--ff-font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ff-cream);
    letter-spacing: 0.05em;
    text-decoration: none;
    white-space: nowrap;
}

.ff-header__site-name:hover {
    color: var(--ff-gold);
}

/* Navigation */
.ff-header__nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.ff-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ff-menu-item--top {
    position: relative;
}

.ff-menu-link {
    display: block;
    padding: 0.5rem 1rem;
    font-family: var(--ff-font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ff-cream);
    text-decoration: none;
    transition: color var(--ff-transition);
    position: relative;
}

.ff-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--ff-gold);
    transform: scaleX(0);
    transition: transform var(--ff-transition);
    transform-origin: center;
}

.ff-menu-link:hover,
.ff-menu-item.current-menu-item > .ff-menu-link {
    color: var(--ff-gold);
}

.ff-menu-link:hover::after,
.ff-menu-item.current-menu-item > .ff-menu-link::after {
    transform: scaleX(1);
}

/* Submenu */
.ff-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--ff-espresso);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: 2px solid var(--ff-gold);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--ff-transition);
    list-style: none;
}

.ff-menu-item--top:hover > .ff-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ff-submenu .ff-menu-link {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
}

.ff-submenu .ff-menu-link::after {
    display: none;
}

/* Header Actions */
.ff-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ff-header__action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--ff-cream);
    cursor: pointer;
    transition: color var(--ff-transition);
    text-decoration: none;
    position: relative;
}

.ff-header__action-btn:hover {
    color: var(--ff-gold);
}

.ff-header__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--ff-scarlet);
    color: var(--ff-white);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hamburger */
.ff-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.ff-hamburger__line {
    width: 24px;
    height: 2px;
    background: var(--ff-cream);
    transition: all var(--ff-transition);
    transform-origin: center;
}

.ff-hamburger--active .ff-hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ff-hamburger--active .ff-hamburger__line:nth-child(2) {
    opacity: 0;
}

.ff-hamburger--active .ff-hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Overlay */
.ff-search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ff-espresso);
    border-top: 1px solid var(--ff-gold);
    padding: 1.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--ff-transition);
}

.ff-search-overlay--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ff-search-overlay__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ff-search-form {
    display: flex;
    flex-grow: 1;
    gap: 0.75rem;
}

.ff-search-form__input {
    flex-grow: 1;
    background: var(--ff-cream);
    border: 1px solid transparent;
    padding: 12px 20px;
    font-family: var(--ff-font-body);
    font-size: 0.9rem;
    color: var(--ff-espresso);
    border-radius: var(--ff-border-radius);
    outline: none;
    transition: border-color var(--ff-transition);
}

.ff-search-form__input:focus {
    border-color: var(--ff-gold);
}

.ff-search-form__input::placeholder {
    color: rgba(45, 27, 20, 0.5);
}

.ff-search-overlay__close {
    background: none;
    border: none;
    color: var(--ff-cream);
    cursor: pointer;
    padding: 5px;
    transition: color var(--ff-transition);
}

.ff-search-overlay__close:hover {
    color: var(--ff-scarlet);
}

/* Mobile Overlay */
.ff-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ff-transition);
}

.ff-mobile-overlay--active {
    opacity: 1;
    visibility: visible;
}

.ff-no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.ff-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ff-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.ff-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 27, 20, 0.4) 0%,
        rgba(45, 27, 20, 0.7) 100%
    );
}

/* Grain texture overlay */
.ff-hero__overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
}

.ff-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.ff-hero__title {
    font-family: var(--ff-font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ff-white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.ff-hero__subtitle {
    font-family: var(--ff-font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--ff-silver);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

.ff-hero__cta {
    display: inline-block;
}

/* Scroll indicator */
.ff-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--ff-gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: ff-bounce 2s infinite;
}

.ff-hero__scroll svg {
    width: 20px;
    height: 20px;
}

@keyframes ff-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ==========================================================================
   Brand Story Strip
   ========================================================================== */

.ff-brand-strip {
    background: var(--ff-beige);
    position: relative;
}

.ff-brand-strip::before,
.ff-brand-strip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ff-gold);
}

.ff-brand-strip::before { top: 0; }
.ff-brand-strip::after { bottom: 0; }

.ff-brand-strip__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 0;
}

.ff-brand-strip__text {
    font-family: var(--ff-font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    color: var(--ff-espresso);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ff-brand-strip__cta {
    display: inline-block;
}

/* ==========================================================================
   Best Sellers Grid
   ========================================================================== */

.ff-bestsellers {
    background: var(--ff-espresso);
}

.ff-bestsellers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ff-bestsellers__item {
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all var(--ff-transition);
}

.ff-bestsellers__item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.ff-bestsellers__image-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.ff-bestsellers__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ff-transition-slow);
}

.ff-bestsellers__item:hover .ff-bestsellers__image {
    transform: scale(1.06);
}

.ff-bestsellers__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--ff-scarlet);
    color: var(--ff-white);
    font-family: var(--ff-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: var(--ff-border-radius);
}

.ff-bestsellers__info {
    padding: 1.25rem;
}

.ff-bestsellers__name {
    font-family: var(--ff-font-heading);
    font-size: 1.1rem;
    color: var(--ff-cream);
    margin-bottom: 0.35rem;
}

.ff-bestsellers__name a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ff-transition);
}

.ff-bestsellers__name a:hover {
    color: var(--ff-gold);
}

.ff-bestsellers__price {
    display: block;
    font-family: var(--ff-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ff-scarlet);
    margin-bottom: 1rem;
}

.ff-bestsellers__price del {
    color: var(--ff-silver);
    font-weight: 400;
    font-size: 0.85rem;
    margin-right: 0.4rem;
}

.ff-bestsellers__price ins {
    text-decoration: none;
}

.ff-bestsellers__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ff-bestsellers__actions .ff-btn {
    flex: 1;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    font-size: 0.7rem;
    padding: 8px 12px;
}

.ff-bestsellers__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ==========================================================================
   Customer Reviews Slider
   ========================================================================== */

.ff-reviews {
    background: var(--ff-espresso-dark);
}

.ff-reviews__slider {
    position: relative;
    overflow: hidden;
}

.ff-reviews__track {
    display: flex;
    transition: transform 0.5s ease;
}

.ff-reviews__slide {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Re-use existing .ff-testimonial-card styles (they remain the same) */

/* Slider Navigation */
.ff-reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ff-reviews__arrow {
    width: 44px;
    height: 44px;
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ff-cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--ff-transition);
    flex-shrink: 0;
}

.ff-reviews__arrow:hover {
    background: var(--ff-gold);
    border-color: var(--ff-gold);
    color: var(--ff-espresso);
}

.ff-reviews__dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.ff-reviews__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--ff-transition);
}

.ff-reviews__dot.active,
.ff-reviews__dot:hover {
    background: var(--ff-gold);
    transform: scale(1.3);
}

/* Testimonial Card (used inside reviews slider) */
.ff-testimonial-card {
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2rem;
    position: relative;
    transition: all var(--ff-transition);
}

.ff-testimonial-card:hover {
    background: var(--ff-card-bg-hover);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Gold quote mark */
.ff-testimonial-card::before {
    content: '\201C';
    font-family: var(--ff-font-heading);
    font-size: 4rem;
    color: var(--ff-gold);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.ff-testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: var(--ff-gold);
}

.ff-testimonial-card__text {
    font-family: var(--ff-font-body);
    font-style: italic;
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--ff-silver);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ff-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ff-testimonial-card__photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ff-gold);
}

.ff-testimonial-card__name {
    font-family: var(--ff-font-heading);
    font-size: 1.1rem;
    color: var(--ff-cream);
    margin-bottom: 0;
}

.ff-testimonial-card__location {
    font-family: var(--ff-font-body);
    font-size: 0.8rem;
    color: var(--ff-silver);
    margin-bottom: 0;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.ff-whychoose {
    background: var(--ff-espresso);
}

.ff-whychoose__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ff-whychoose__card {
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all var(--ff-transition);
}

.ff-whychoose__card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ff-whychoose__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--ff-gold);
    transition: all var(--ff-transition);
}

.ff-whychoose__card:hover .ff-whychoose__icon {
    background: var(--ff-gold);
    color: var(--ff-espresso);
}

.ff-whychoose__title {
    font-family: var(--ff-font-heading);
    font-size: 1.2rem;
    color: var(--ff-cream);
    margin-bottom: 0.75rem;
}

.ff-whychoose__desc {
    font-family: var(--ff-font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ff-silver);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.ff-newsletter {
    background: var(--ff-espresso);
    text-align: left;
    color: var(--ff-white);
}

.ff-newsletter__inner {
    max-width: 600px;
    margin: 0 auto;
}

.ff-newsletter__form-container {
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    margin-top: 2rem;
}

/* Style newsletter plugin forms */
.ff-newsletter__form-container input[type="email"],
.ff-newsletter__form-container input[type="text"] {
    width: 100%;
    background: var(--ff-cream);
    border: 1px solid transparent;
    padding: 14px 20px;
    font-family: var(--ff-font-body);
    font-size: 0.9rem;
    color: var(--ff-espresso);
    border-radius: var(--ff-border-radius);
    margin-bottom: 1rem;
    outline: none;
    transition: border-color var(--ff-transition);
}

.ff-newsletter__form-container input[type="email"]:focus,
.ff-newsletter__form-container input[type="text"]:focus {
    border-color: var(--ff-gold);
}

.ff-newsletter__form-container input[type="submit"],
.ff-newsletter__form-container button[type="submit"] {
    width: 100%;
    padding: 14px 36px;
    background: var(--ff-scarlet);
    color: var(--ff-white);
    font-family: var(--ff-font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    border-radius: var(--ff-border-radius);
    cursor: pointer;
    transition: background var(--ff-transition);
}

.ff-newsletter__form-container input[type="submit"]:hover,
.ff-newsletter__form-container button[type="submit"]:hover {
    background: var(--ff-scarlet-hover);
}

.ff-newsletter__placeholder {
    padding: 2rem;
    color: var(--ff-silver);
    font-style: italic;
}

/* ==========================================================================
   Instagram Feed Section
   ========================================================================== */

.ff-instagram {
    background: var(--ff-espresso-dark);
}

.ff-instagram__handle {
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.ff-instagram__handle a {
    font-family: var(--ff-font-body);
    font-size: 1rem;
    color: var(--ff-gold);
    letter-spacing: 0.05em;
}

/* Style Instagram plugin output */
.ff-instagram__feed-container {
    max-width: 100%;
    overflow: hidden;
}

.ff-instagram__placeholder {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.ff-instagram__placeholder-item {
    aspect-ratio: 1;
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ff-silver);
    font-size: 0.75rem;
    overflow: hidden;
}

.ff-instagram__placeholder-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Page Header (used on FAQ, About, etc.)
   ========================================================================== */

.ff-page-header {
    position: relative;
    background: var(--ff-espresso);
    padding: 5rem 0 3.5rem;
    text-align: center;
    overflow: hidden;
}

.ff-page-header__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ff-page-header__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ff-page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 27, 20, 0.75) 0%,
        rgba(45, 27, 20, 0.85) 100%
    );
}

.ff-page-header .ff-container {
    position: relative;
    z-index: 1;
}

.ff-page-header__title {
    font-family: var(--ff-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ff-cream);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.ff-page-header .ff-accent-line {
    margin: 0 auto;
}

/* ==========================================================================
   FAQ Intro (optional editor content above accordion)
   ========================================================================== */

.ff-faq-intro {
    padding: 3rem 0 0;
}

.ff-faq-intro__content {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--ff-font-body);
    font-size: 1.05rem;
    color: var(--ff-espresso);
    line-height: 1.8;
    text-align: center;
}

.ff-faq-intro__content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.ff-faq {
    background: var(--ff-espresso);
}

.ff-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.ff-faq__item {
    border-left: 3px solid var(--ff-gold);
    margin-bottom: 0.5rem;
    background: var(--ff-card-bg);
    transition: background var(--ff-transition);
}

.ff-faq__item:hover {
    background: var(--ff-card-bg-hover);
}

.ff-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--ff-font-heading);
    font-size: 1.15rem;
    color: var(--ff-cream);
    gap: 1rem;
}

.ff-faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform var(--ff-transition);
}

.ff-faq__icon::before,
.ff-faq__icon::after {
    content: '';
    position: absolute;
    background: var(--ff-scarlet);
    transition: transform var(--ff-transition);
}

.ff-faq__icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ff-faq__icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ff-faq__item.active .ff-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ff-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.ff-faq__answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-family: var(--ff-font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ff-silver);
    line-height: 1.8;
}

.ff-faq__item.active .ff-faq__answer {
    max-height: 500px;
}

.ff-faq__empty {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--ff-silver);
    font-family: var(--ff-font-body);
    font-size: 1rem;
    font-style: italic;
}

/* ==========================================================================
   How It Works - Homepage Process Strip (5-column)
   ========================================================================== */

.ff-process-strip {
    background: var(--ff-espresso);
}

.ff-process-strip__grid {
    display: grid;
    grid-template-columns: repeat(9, auto);
    /* 5 steps + 4 separators */
    align-items: start;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.ff-process-strip__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.25rem;
}

.ff-process-strip__icon {
    width: 56px;
    height: 56px;
    color: var(--ff-gold);
    margin-bottom: 1rem;
    transition: transform var(--ff-transition-slow), color var(--ff-transition);
}

.ff-process-strip__icon svg {
    width: 100%;
    height: 100%;
}

.ff-process-strip__step:hover .ff-process-strip__icon {
    transform: translateY(-4px) scale(1.08);
    color: var(--ff-cream);
}

.ff-process-strip__number {
    font-family: var(--ff-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ff-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.ff-process-strip__divider {
    width: 32px;
    height: 1px;
    background: var(--ff-gold);
    margin: 0.75rem auto;
    opacity: 0.5;
}

.ff-process-strip__title {
    font-family: var(--ff-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    color: var(--ff-cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.ff-process-strip__desc {
    font-family: var(--ff-font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ff-silver);
    line-height: 1.65;
    max-width: 200px;
    margin: 0 auto;
}

/* Vertical gold separators between steps */
.ff-process-strip__separator {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(
        to bottom,
        transparent 10%,
        var(--ff-gold) 30%,
        var(--ff-gold) 70%,
        transparent 90%
    );
    opacity: 0.35;
    margin: 0 0.25rem;
}

/* Outline gold button (used for CTA) */
.ff-btn--outline-gold {
    background: transparent;
    color: var(--ff-gold);
    border: 1px solid var(--ff-gold);
    font-family: var(--ff-font-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background var(--ff-transition), color var(--ff-transition);
}

.ff-btn--outline-gold:hover {
    background: var(--ff-gold);
    color: var(--ff-espresso);
}

.ff-process-strip__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ==========================================================================
   How It Works - Deep-Dive Page Hero
   ========================================================================== */

.ff-hiw-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--ff-espresso);
    overflow: hidden;
}

.ff-hiw-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 27, 20, 0.6) 0%,
        rgba(45, 27, 20, 0.8) 100%
    );
}

.ff-hiw-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 2rem;
}

.ff-hiw-hero__title {
    font-family: var(--ff-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--ff-white);
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.ff-hiw-hero__subtitle {
    font-family: var(--ff-font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--ff-silver);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.ff-accent-line--gold {
    background: var(--ff-gold);
}

/* ==========================================================================
   How It Works - Deep-Dive Vertical Timeline
   ========================================================================== */

.ff-process {
    background: var(--ff-espresso);
}

.ff-process__legend {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.ff-process__legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-font-body);
    font-size: 0.85rem;
    color: var(--ff-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ff-process__legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.ff-process__legend-dot--rtw {
    background: var(--ff-gold);
}

.ff-process__legend-dot--bespoke {
    background: var(--ff-scarlet);
}

.ff-process__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Vertical gold line */
.ff-process__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--ff-gold);
    opacity: 0.4;
}

.ff-process__step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    position: relative;
}

.ff-process__step:last-child {
    margin-bottom: 0;
}

.ff-process__step:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 2.5rem);
    text-align: right;
}

.ff-process__step:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 2.5rem);
    text-align: left;
}

.ff-process__step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--ff-scarlet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ff-white);
    z-index: 2;
    border: 3px solid var(--ff-espresso);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.25);
}

.ff-process__step-content {
    flex: 1;
}

.ff-process__step-title {
    font-family: var(--ff-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--ff-cream);
    margin-bottom: 0.75rem;
}

.ff-process__step-desc {
    font-family: var(--ff-font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ff-silver);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* RTW vs Bespoke timeline badges */
.ff-process__timelines-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ff-process__timeline-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-family: var(--ff-font-body);
    font-size: 0.8rem;
}

.ff-process__step:nth-child(odd) .ff-process__timelines-row {
    align-items: flex-end;
}

.ff-process__step:nth-child(even) .ff-process__timelines-row {
    align-items: flex-start;
}

.ff-process__timeline-badge--rtw {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--ff-gold);
}

.ff-process__timeline-badge--bespoke {
    background: rgba(196, 30, 58, 0.1);
    border-left: 3px solid var(--ff-scarlet);
}

.ff-process__badge-label {
    font-weight: 600;
    color: var(--ff-cream);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    min-width: 90px;
}

.ff-process__badge-time {
    color: var(--ff-silver);
    font-weight: 300;
}

/* Timeline CTA */
.ff-process__cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.ff-process__cta-title {
    font-family: var(--ff-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ff-cream);
    margin-bottom: 0.75rem;
}

.ff-process__cta-desc {
    font-family: var(--ff-font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ff-silver);
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.ff-process__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Scroll Fade-In Animation
   ========================================================================== */

.ff-scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.ff-scroll-fade.ff-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.ff-about__hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: -1rem;
}

.ff-about__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 27, 20, 0.75);
}

.ff-about__hero-title {
    position: relative;
    z-index: 2;
    font-family: var(--ff-font-heading);
    font-size: var(--ff-h1);
    font-style: italic;
    color: var(--ff-white);
    text-align: center;
}

.ff-about__content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--ff-section-gap) var(--ff-container-padding);
}

.ff-about__content h2,
.ff-about__content h3,
.ff-about__content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.ff-about__content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.ff-about__content blockquote {
    border-left: 3px solid var(--ff-gold);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: var(--ff-card-bg);
}

.ff-about__content ul,
.ff-about__content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.ff-about__content li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1rem;
}

.ff-about__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--ff-scarlet);
    border-radius: 50%;
}

.ff-about__content img {
    margin: 2rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   About Us Page
   ========================================================================== */

/* Hero */
.ff-about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center top;
    background-color: var(--ff-espresso);
}

.ff-about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 27, 20, 0.6) 0%,
        rgba(45, 27, 20, 0.8) 100%
    );
}

.ff-about-hero__content {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
}

.ff-about-hero__title {
    font-family: var(--ff-font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ff-cream);
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
}

.ff-about-hero__subtitle {
    font-family: var(--ff-font-body);
    font-size: 1.15rem;
    color: var(--ff-silver);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Our Story Section */
.ff-about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2.5rem;
}

.ff-about-story__lead {
    font-family: var(--ff-font-heading);
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 600;
    color: var(--ff-cream);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ff-about-story__text p {
    font-family: var(--ff-font-body);
    font-size: 1rem;
    color: var(--ff-silver);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.ff-about-story__tagline {
    font-family: var(--ff-font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ff-gold);
    margin-top: 1.5rem;
}

.ff-about-story__image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.ff-about-story__placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--ff-card-bg);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--ff-silver);
    font-size: 0.85rem;
}

.ff-about-story__placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.4;
}

/* Founder Section */
.ff-about-founder__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.ff-about-founder__main-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.ff-about-founder__name {
    font-family: var(--ff-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ff-cream);
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.ff-accent-line--left {
    margin: 0 0 1.5rem 0;
}

.ff-about-founder__bio p {
    font-family: var(--ff-font-body);
    font-size: 1rem;
    color: var(--ff-silver);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

/* Values Section */
.ff-about-values {
    background: var(--ff-espresso-dark);
}

.ff-about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.ff-about-values__card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all var(--ff-transition);
}

.ff-about-values__card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.ff-about-values__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    color: var(--ff-gold);
}

.ff-about-values__icon svg {
    width: 100%;
    height: 100%;
}

.ff-about-values__title {
    font-family: var(--ff-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--ff-cream);
    margin-bottom: 0.75rem;
}

.ff-about-values__desc {
    font-family: var(--ff-font-body);
    font-size: 0.9rem;
    color: var(--ff-silver);
    line-height: 1.7;
}

/* CTA Section */
.ff-about-cta {
    text-align: center;
    padding: 5rem 0;
}

.ff-about-cta__title {
    font-family: var(--ff-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ff-cream);
    margin-bottom: 1rem;
}

.ff-about-cta__desc {
    font-family: var(--ff-font-body);
    font-size: 1.05rem;
    color: var(--ff-silver);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.ff-about-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section Header Label (reusable) */
.ff-section-header__label {
    display: block;
    font-family: var(--ff-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ff-gold);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Page Headers
   ========================================================================== */

.ff-page-header {
    text-align: center;
    padding: 6rem 0 3rem;
}

.ff-page-header__title {
    font-family: var(--ff-font-heading);
    font-size: var(--ff-h1);
    font-style: italic;
    color: var(--ff-cream);
    margin-bottom: 0.5rem;
}

.ff-page-header__desc {
    font-family: var(--ff-font-body);
    font-size: 1.05rem;
    color: var(--ff-silver);
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.ff-accent-line {
    width: 60px;
    height: 2px;
    background: var(--ff-gold);
    margin: 1.5rem auto 0;
}

/* ==========================================================================
   Posts Grid
   ========================================================================== */

.ff-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.ff-post-card {
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all var(--ff-transition);
}

.ff-post-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.ff-post-card__image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.ff-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ff-transition-slow);
}

.ff-post-card:hover .ff-post-card__image img {
    transform: scale(1.05);
}

.ff-post-card__content {
    padding: 1.5rem;
}

.ff-post-card__meta {
    font-size: 0.75rem;
    color: var(--ff-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.ff-post-card__title {
    font-family: var(--ff-font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.ff-post-card__title a {
    color: var(--ff-cream);
    text-decoration: none;
}

.ff-post-card__title a:hover {
    color: var(--ff-gold);
}

.ff-post-card__excerpt {
    font-size: 0.9rem;
    color: var(--ff-silver);
    margin-bottom: 1rem;
}

.ff-post-card__excerpt p {
    margin-bottom: 0;
}

/* ==========================================================================
   Single Post / Page
   ========================================================================== */

.ff-single {
    padding-top: 5rem;
}

.ff-single__hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    margin: -5rem calc(-50vw + 50%) 3rem;
    width: 100vw;
}

.ff-single__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ff-single__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--ff-espresso));
}

.ff-single__header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ff-single__title {
    font-style: italic;
}

.ff-single__meta {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--ff-silver);
}

.ff-single__meta-sep {
    margin: 0 0.5rem;
    color: var(--ff-gold);
}

.ff-single__content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
}

.ff-single__content p {
    margin-bottom: 1.5rem;
}

.ff-single__content img {
    margin: 2rem 0;
}

.ff-single__footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
}

.ff-tag {
    display: inline-block;
    padding: 4px 12px;
    margin: 0.25rem;
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.75rem;
    color: var(--ff-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ff-post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 2rem;
}

.ff-post-nav a {
    color: var(--ff-cream);
    font-family: var(--ff-font-heading);
    font-size: 1.1rem;
}

.ff-post-nav a:hover {
    color: var(--ff-gold);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.ff-pagination {
    text-align: center;
    padding: 2rem 0;
}

.ff-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.ff-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--ff-card-bg);
    color: var(--ff-cream);
    font-family: var(--ff-font-body);
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
    transition: all var(--ff-transition);
}

.ff-pagination .page-numbers:hover,
.ff-pagination .page-numbers.current {
    background: var(--ff-scarlet);
    border-color: var(--ff-scarlet);
    color: var(--ff-white);
}

.ff-pagination .prev,
.ff-pagination .next {
    width: auto;
    padding: 0 1rem;
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.ff-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0;
}

.ff-404__title {
    font-family: var(--ff-font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    color: var(--ff-scarlet);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: -1rem;
}

.ff-404__subtitle {
    font-style: italic;
    margin-bottom: 1rem;
}

.ff-404__text {
    max-width: 500px;
    margin: 0 auto 2rem;
    color: var(--ff-silver);
}

.ff-404__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.ff-footer {
    background: var(--ff-espresso-dark);
    color: var(--ff-silver);
}

.ff-footer__main {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.ff-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.ff-footer__logo {
    margin-bottom: 1rem;
}

.ff-footer__logo img {
    max-height: 45px;
    width: auto;
}

.ff-footer__brand-name {
    margin-bottom: 1rem;
}

.ff-footer__brand-name a {
    color: var(--ff-cream);
    font-family: var(--ff-font-heading);
    text-decoration: none;
}

.ff-footer__tagline {
    font-size: 0.9rem;
    color: var(--ff-silver);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ff-footer__social {
    display: flex;
    gap: 0.75rem;
}

.ff-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ff-cream);
    transition: all var(--ff-transition);
}

.ff-footer__social-link:hover {
    background: var(--ff-gold);
    border-color: var(--ff-gold);
    color: var(--ff-espresso);
}

.ff-footer__title {
    font-family: var(--ff-font-heading);
    font-size: 1.15rem;
    color: var(--ff-cream);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.ff-footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--ff-gold);
}

.ff-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ff-footer__menu li {
    margin-bottom: 0.75rem;
}

.ff-footer__menu a {
    font-family: var(--ff-font-body);
    font-size: 0.85rem;
    color: var(--ff-silver);
    text-decoration: none;
    transition: color var(--ff-transition);
}

.ff-footer__menu a:hover {
    color: var(--ff-gold);
}

.ff-footer__contact-item {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.ff-footer__contact-item a {
    color: var(--ff-gold);
}

.ff-footer__bottom {
    padding-bottom: 2rem;
}

.ff-footer__copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--ff-silver);
    padding-top: 1.5rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Content Wrapper
   ========================================================================== */

.ff-content {
    padding-top: 100px;
    min-height: 50vh;
}

.ff-content__wrapper {
    padding-bottom: 4rem;
}

/* Main area for front page needs no top padding (hero is full screen) */
.ff-front-page .ff-content {
    padding-top: 0;
}

/* Distraction-free layout (cart/checkout) */
.ff-distraction-free .ff-header__nav,
.ff-distraction-free .ff-footer__grid {
    display: none;
}

.ff-distraction-free .ff-footer__main {
    padding: 2rem 0;
}

/* ==========================================================================
   Quick View Modal
   ========================================================================== */

.ff-quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ff-transition);
}

.ff-quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

.ff-quick-view-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.ff-quick-view-modal__content {
    position: relative;
    z-index: 2;
    background: var(--ff-espresso);
    border: 1px solid var(--ff-gold);
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--ff-transition);
}

.ff-quick-view-modal.active .ff-quick-view-modal__content {
    transform: scale(1) translateY(0);
}

.ff-quick-view-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--ff-card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ff-cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all var(--ff-transition);
}

.ff-quick-view-modal__close:hover {
    background: var(--ff-scarlet);
    border-color: var(--ff-scarlet);
}

.ff-quick-view-modal__image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.ff-quick-view-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ff-quick-view-modal__details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ff-quick-view-modal__title {
    font-family: var(--ff-font-heading);
    font-size: var(--ff-h3);
    color: var(--ff-cream);
    margin-bottom: 0.5rem;
}

.ff-quick-view-modal__price {
    font-family: var(--ff-font-body);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ff-scarlet);
    margin-bottom: 1rem;
}

.ff-quick-view-modal__desc {
    font-size: 0.9rem;
    color: var(--ff-silver);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ff-quick-view-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}


