/*
Theme Name: FashForward_Luxe
Theme URI: https://fashforward.com
Author: FashForward
Author URI: https://fashforward.com
Description: A dramatic, bold, and sophisticated luxury fashion theme built for WooCommerce. Designed around the "Fash Forward Signature" design language with an Espresso/Scarlet/Gold palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fashforward-luxe
Tags: e-commerce, fashion, woocommerce, dark, luxury, custom-logo, custom-menu, featured-images

FashForward_Luxe WordPress Theme
Copyright (C) 2024 FashForward
*/

/* ==========================================================================
   CSS Custom Properties - Fash Forward Signature Design Language
   ========================================================================== */

:root {
    /* Color Palette */
    --ff-espresso: #2D1B14;
    --ff-espresso-light: #3D2B24;
    --ff-espresso-dark: #1D0B04;
    --ff-scarlet: #C41E3A;
    --ff-scarlet-hover: #A01830;
    --ff-scarlet-light: #D4344E;
    --ff-cream: #F5F5DC;
    --ff-gold: #D4AF37;
    --ff-gold-light: #E4BF47;
    --ff-white: #FFFFFF;
    --ff-silver: #D3D3D3;
    --ff-beige: #F5F0E8;
    --ff-overlay: rgba(45, 27, 20, 0.7);
    --ff-card-bg: rgba(255, 255, 255, 0.05);
    --ff-card-bg-hover: rgba(255, 255, 255, 0.08);

    /* Typography */
    --ff-font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --ff-font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    /* Dramatic Type Scale */
    --ff-h1: clamp(2.75rem, 5vw, 4rem);
    --ff-h2: clamp(2.15rem, 4vw, 3rem);
    --ff-h3: clamp(1.75rem, 3vw, 2.25rem);
    --ff-h4: clamp(1.35rem, 2.5vw, 1.75rem);
    --ff-body: 1rem;
    --ff-small: 0.875rem;
    --ff-xs: 0.75rem;

    /* Spacing */
    --ff-section-gap: clamp(4rem, 8vw, 7rem);
    --ff-container-max: 1400px;
    --ff-container-padding: clamp(1rem, 3vw, 2rem);

    /* Transitions */
    --ff-transition: 0.3s ease;
    --ff-transition-slow: 0.6s ease;

    /* Borders */
    --ff-border-gold: 1px solid var(--ff-gold);
    --ff-border-radius: 4px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-font-body);
    font-weight: 300;
    font-size: var(--ff-body);
    line-height: 1.7;
    color: var(--ff-silver);
    background-color: var(--ff-espresso);
    overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4 {
    font-family: var(--ff-font-heading);
    color: var(--ff-cream);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: var(--ff-h1);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--ff-h2);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--ff-h3);
}

h4 {
    font-size: var(--ff-h4);
}

h5,
h6 {
    font-family: var(--ff-font-body);
    color: var(--ff-cream);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--ff-silver);
}

a {
    color: var(--ff-gold);
    text-decoration: none;
    transition: color var(--ff-transition);
}

a:hover,
a:focus {
    color: var(--ff-gold-light);
}

strong,
b {
    font-weight: 600;
}

em,
i {
    font-style: italic;
}

blockquote {
    border-left: 3px solid var(--ff-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-family: var(--ff-font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--ff-cream);
    background: var(--ff-card-bg);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.ff-container {
    max-width: var(--ff-container-max);
    margin: 0 auto;
    padding-left: var(--ff-container-padding);
    padding-right: var(--ff-container-padding);
}

.ff-gold-divider {
    width: 100%;
    height: 1px;
    background: var(--ff-gold);
    border: none;
    opacity: 0.5;
}

.ff-gold-divider--thick {
    height: 2px;
    opacity: 0.7;
}

.ff-section {
    padding: var(--ff-section-gap) 0;
    position: relative;
}

.ff-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ff-section-header h2 {
    margin-bottom: 0.5rem;
}

.ff-section-header p {
    font-size: 1.1rem;
    color: var(--ff-silver);
    max-width: 600px;
    margin: 0 auto;
}

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

.ff-btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--ff-font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--ff-border-radius);
    border: none;
    cursor: pointer;
    transition: all var(--ff-transition);
    text-align: center;
    line-height: 1;
}

.ff-btn--primary {
    background: var(--ff-scarlet);
    color: var(--ff-white);
}

.ff-btn--primary:hover {
    background: var(--ff-scarlet-hover);
    color: var(--ff-white);
    transform: translateY(-1px);
}

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

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

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

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

.ff-btn--whatsapp {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.ff-btn--whatsapp:hover {
    background: #128C7E;
    color: #ffffff;
    border-color: #128C7E;
}

.ff-btn--small {
    padding: 10px 24px;
    font-size: 0.75rem;
}

.ff-btn--large {
    padding: 18px 48px;
    font-size: 0.9rem;
}

/* ==========================================================================
   Multi-Currency Switcher CSS
   ========================================================================== */
.ff-currency-selector {
    position: relative;
    display: inline-block;
    min-width: 100px;
    margin-right: 1rem;
}

.ff-header__actions .ff-currency-selector {
    margin-right: 0.5rem;
    /* Tighter spacing in navbar */
}

.ff-currency-selector__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Muted gold */
    color: var(--ff-cream);
    padding: 0.4rem 2rem 0.4rem 0.75rem;
    font-size: 0.85rem;
    font-family: var(--ff-font-body);
    border-radius: var(--ff-border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.ff-currency-selector__select:focus,
.ff-currency-selector__select:hover {
    outline: none;
    border-color: var(--ff-gold);
    background: rgba(255, 255, 255, 0.05);
}

.ff-currency-selector__select option {
    background: var(--ff-espresso);
    color: var(--ff-cream);
    padding: 0.5rem;
}

.ff-currency-selector__arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--ff-gold);
    display: flex;
    align-items: center;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Skip Link */
.skip-link {
    background: var(--ff-scarlet);
    color: var(--ff-white);
    padding: 8px 16px;
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 5px;
    color: var(--ff-white);
}

/* Selection */
::selection {
    background: var(--ff-scarlet);
    color: var(--ff-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ff-espresso-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--ff-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ff-gold-light);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul,
ol {
    list-style: none;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}