/* Theme: Heritage Luxury - Didot Edition v2 */

/* ============================================
   LUXURY FONTS — Cinzel + Inter
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Typography - Cinzel headings, Inter body */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Inter', sans-serif;
    
    /* Brand Palette - Refined */
    --navy: #1d2544;
    --navy-deep: #141a33;
    --navy-light: #2a3459;
    --gold: #c9a962;
    --gold-light: #d4bc7e;
    --gold-muted: #a08445;
    --cream: #f8f6f1;
    --white: #ffffff;
    
    /* Applied Colors */
    --bg-body: var(--navy);
    --bg-section: var(--navy-deep);
    --bg-card: var(--navy-light);
    
    --text-primary: var(--white);
    --text-heading: var(--gold);
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-subtle: rgba(255, 255, 255, 0.5);
    
    --accent: var(--gold);
    --accent-hover: var(--gold-light);
    
    --border-color: rgba(201, 169, 98, 0.3);
    --border-light: rgba(255, 255, 255, 0.15);
    
    /* Spacing - Generous for Luxury Feel */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 100px;
    --space-xxl: 140px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 18px; /* INCREASED from 16px */
}

body {
    font-family: var(--font-body);
    font-size: 1.15rem; /* INCREASED */
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.02em;
}

/* ============================================
   TYPOGRAPHY - LUXURY - LARGER SIZES
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-heading);
    letter-spacing: 0.05em;
    line-height: 1.25;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem); /* INCREASED */
    font-weight: 500;
    font-style: italic;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem); /* INCREASED */
    font-style: italic;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem); /* INCREASED */
}

.section-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem); /* INCREASED */
    font-style: italic;
    font-weight: 500;
    text-align: center;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.08em;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1rem; /* INCREASED from 0.85rem */
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* ============================================
   LINKS & BUTTONS
   ============================================ */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.btn {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem; /* INCREASED from 0.75rem */
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 20px 55px; /* INCREASED */
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--navy);
}

.btn--primary {
    background: var(--gold);
    color: var(--navy);
}

.btn--primary::before {
    background: var(--white);
}

.btn--primary:hover {
    color: var(--navy);
    border-color: var(--white);
}

.btn--outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================
   HEADER - LUXURY - LARGER LOGO
   ============================================ */
.header__top {
    background: var(--navy-deep);
    color: var(--text-muted);
    text-align: center;
    padding: 14px var(--space-md);
    font-family: var(--font-accent);
    font-size: 0.8rem; /* INCREASED */
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-light);
}

.header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-lg);
    max-width: 1600px;
    margin: 0 auto;
}

.header__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-right: var(--space-lg);
}

.header__logo img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.header__logo:hover img {
    opacity: 0.9;
}

.header__nav {
    display: flex;
    gap: var(--space-md);
    flex: 1;
    justify-content: center;
}

.nav__link {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 8px 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--gold);
}

/* ============================================
   MEGA MENU
   ============================================ */
.megamenu {
    position: static;
}

.megamenu-trigger {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 8px 0;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.megamenu-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.megamenu.is-open .megamenu-trigger::after,
.megamenu-trigger:hover::after {
    width: 100%;
}

.megamenu.is-open .megamenu-trigger,
.megamenu-trigger:hover {
    color: var(--gold);
}

.megamenu-trigger .arrow-down {
    width: 10px;
    height: 10px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.megamenu.is-open .megamenu-trigger .arrow-down {
    transform: rotate(180deg);
}

.megamenu__panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 100;
}

.megamenu.is-open .megamenu__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.4fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.megamenu__col-title {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.megamenu__col-title--sub {
    margin-top: 24px;
}

.megamenu__link {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.megamenu__link:hover {
    color: var(--gold);
    padding-left: 4px;
}

.megamenu__link--view-all {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-size: 0.8rem;
}

.megamenu__link--view-all:hover {
    color: var(--gold);
}

.megamenu__explore {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.megamenu__explore-card {
    position: relative;
    background: var(--navy-light);
    border-radius: 6px;
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: flex-end;
    padding: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.megamenu__explore-card:hover {
    transform: scale(1.02);
}

.megamenu__explore-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.megamenu__explore-card:hover img {
    opacity: 0.8;
}

.megamenu__explore-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.header__icons {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
    justify-content: flex-end;
}

.header__icons button {
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-size: 0.8rem; /* INCREASED */
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px 0;
}

.header__icons button:hover {
    color: var(--gold);
}

/* Icon Dropdowns - Language & Currency */
.header__dropdowns {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: var(--space-md);
}

.dropdown {
    position: relative;
}

.dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-size: 0.85rem; /* INCREASED */
    font-weight: 300;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 10px 14px;
    transition: var(--transition);
    border-radius: 4px;
}

.dropdown__toggle:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown__toggle svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    shape-rendering: geometricPrecision;
}

.dropdown__toggle .arrow {
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.dropdown.open .dropdown__toggle .arrow {
    transform: rotate(180deg);
}

.dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--navy-deep);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown.open .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 18px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-size: 0.85rem; /* INCREASED */
    letter-spacing: 0.1em;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.dropdown__item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
}

.dropdown__item.active {
    color: var(--gold);
}

.dropdown__item .flag {
    font-size: 1.1rem;
}

/* Cart Button */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.cart-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    shape-rendering: geometricPrecision;
}

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

.cart-btn__count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 37, 68, 0.92) 0%, rgba(20, 26, 51, 0.88) 100%);
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: var(--space-lg);
}

.hero__logo {
    max-width: 450px;
    height: auto;
    margin: 0 auto var(--space-md);
    display: block;
    filter: brightness(1.15) contrast(1.05);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    letter-spacing: 0.03em;
}

/* ============================================
   FEATURES BAR - IMPROVED WITH ICONS & BORDERS
   ============================================ */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--navy-deep);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.feature {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    border-right: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.feature:last-child {
    border-right: none;
}

.feature:hover {
    background: rgba(201, 169, 98, 0.05);
}

.feature__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--transition);
}

.feature:hover .feature__icon {
    background: var(--gold);
    color: var(--navy);
}

.feature__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    shape-rendering: geometricPrecision;
}

.feature__title {
    font-family: var(--font-accent);
    font-size: 0.85rem; /* INCREASED */
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature__text {
    font-size: 1rem; /* INCREASED */
    color: var(--text-muted);
}

/* ============================================
   COLLECTION / PRODUCT GRID
   ============================================ */
.collection {
    padding: var(--space-xl) var(--space-lg);
    max-width: 1600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.product-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.product__image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--bg-card);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.product__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product__image {
    transform: scale(1.06);
}

.product__overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 37, 68, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product__overlay {
    opacity: 1;
}

.product__info {
    text-align: center;
}

.product__title {
    font-family: var(--font-body);
    font-size: 1.1rem; /* INCREASED */
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.product__price {
    font-family: var(--font-accent);
    font-size: 1rem; /* INCREASED */
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Currency visibility */
.price-eur, .price-gbp {
    display: none;
}

.currency-eur .price-eur {
    display: inline;
}

.currency-gbp .price-gbp {
    display: inline;
}

/* ============================================
   BRAND STORY SECTION
   ============================================ */
.story {
    padding: var(--space-xxl) var(--space-lg);
    background: var(--bg-section);
    text-align: center;
}

.story__container {
    max-width: 900px;
    margin: 0 auto;
}

.story__text {
    font-size: 1.3rem; /* INCREASED */
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.story__signature {
    height: 160px;
    margin: var(--space-lg) auto;
    opacity: 0.85;
    filter: brightness(1.15);
}

/* ============================================
   FOOTER - LUXURY
   ============================================ */
.footer {
    background: var(--navy-deep);
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    border-top: 1px solid var(--border-color);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    max-width: 1400px;
    margin: 0 auto var(--space-xl);
}

.footer__logo {
    display: block;
    margin-bottom: var(--space-md);
}

.footer__logo img {
    height: 120px;
    width: auto;
    opacity: 0.85;
    filter: brightness(1.1);
    transition: var(--transition);
}

.footer__logo:hover img {
    opacity: 1;
}

.footer__col h4 {
    font-family: var(--font-accent);
    font-size: 0.8rem; /* INCREASED */
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

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

.footer__links a {
    font-size: 1.05rem; /* INCREASED */
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer__newsletter input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    padding: 16px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    transition: var(--transition);
}

.footer__newsletter input:focus {
    outline: none;
    border-color: var(--gold);
}

.footer__newsletter input::placeholder {
    color: var(--text-subtle);
}

.footer__bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--text-subtle);
    letter-spacing: 0.1em;
}

.footer__legal {
    display: flex;
    gap: var(--space-md);
}

.footer__legal a {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--text-subtle);
    letter-spacing: 0.1em;
}

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

/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-header {
    padding: var(--space-xxl) var(--space-lg) var(--space-xl);
    text-align: center;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border-light);
}

.page-header__title {
    font-size: clamp(3rem, 6vw, 4.5rem); /* INCREASED */
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.page-header__subtitle {
    font-family: var(--font-accent);
    font-size: 0.95rem; /* INCREASED */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

.page-content h2 {
    color: var(--gold);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    font-size: 2rem; /* INCREASED */
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    color: var(--text-primary);
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 1.4rem; /* INCREASED */
}

.page-content p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-size: 1.1rem; /* INCREASED */
}

.page-content ul, .page-content ol {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    font-size: 1.1rem; /* INCREASED */
}

.page-content li {
    margin-bottom: 10px;
}

.page-content hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: var(--space-lg) 0;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
}

.page-content th,
.page-content td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
}

.page-content th {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--bg-section);
}

.page-content td {
    color: var(--text-muted);
}

.page-content a {
    color: var(--gold);
}

.page-content a:hover {
    color: var(--gold-light);
}

/* ============================================
   PORTAL BUTTON
   ============================================ */
.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.8rem; /* INCREASED */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 0;
    transition: var(--transition);
}

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

.portal-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    shape-rendering: geometricPrecision;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    padding: 16px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header__logo img {
        height: 100px;
    }
}

@media screen and (max-width: 1024px) {
    .header__nav {
        display: none;
    }
    
    .header__logo img {
        height: 80px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature:nth-child(2) {
        border-right: none;
    }
}

@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .hero__logo {
        max-width: 280px;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .header__dropdowns {
        display: none;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    
    .feature:last-child {
        border-bottom: none;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 16px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    
    .header__logo img {
        height: 60px;
    }
    
    .btn {
        padding: 16px 35px;
        font-size: 0.8rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Subtle texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../assets/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9998;
}
