/* Collier Jewelry — Rose Maison Luxury Theme */
:root {
    /* Primary palette */
    --deep-plum: #7B4A57;          /* dark accent */
    --royal-burgundy: #915F6D;     /* raspberry glace */
    --wine-purple: #B57281;        /* turkish rose */
    --berry-accent: #CC8899;       /* puce */
    --soft-ivory: #F8F4F5;         /* soft ivory */
    --champagne-gold: #B57281;     /* accent → turkish rose */
    --warm-beige-gold: #CC8899;    /* accent → puce */
    --pure-white: #FFFFFF;
    --light-blush: #F2E8EA;

    /* Legacy aliases */
    --espresso: var(--deep-plum);
    --dark-bronze: var(--wine-purple);
    --rich-rose-gold: var(--berry-accent);
    --antique-gold: var(--champagne-gold);
    --deep-champagne: var(--warm-beige-gold);
    --warm-cream: var(--soft-ivory);
    --muted-taupe: #A8838F;
    --ivory: var(--soft-ivory);
    --pearl: var(--pure-white);
    --champagne: var(--warm-beige-gold);
    --rose-gold: var(--berry-accent);
    --rose-gold-light: #CC8899;
    --warm-gold: var(--champagne-gold);
    --warm-gold-dark: var(--royal-burgundy);
    --beige: #F2E8EA;
    --mocha: var(--royal-burgundy);
    --mocha-light: var(--wine-purple);
    --text-primary: var(--deep-plum);
    --text-secondary: var(--royal-burgundy);
    --text-light: var(--muted-taupe);
    --text-on-dark: #FFFFFF;

    --gradient-warm: linear-gradient(135deg, #FFFFFF 0%, #F8F4F5 50%, #F2E8EA 100%);
    --gradient-gold: linear-gradient(135deg, #CC8899 0%, #B57281 45%, #915F6D 100%);
    --gradient-dark: linear-gradient(180deg, #915F6D 0%, #A06674 55%, #B57281 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(242, 232, 234, 0.92) 100%);
    --gradient-burgundy: linear-gradient(135deg, #915F6D 0%, #B57281 50%, #7B4A57 100%);
    --shadow-soft: 0 4px 18px rgba(123, 74, 87, 0.1);
    --shadow-medium: 0 10px 32px rgba(123, 74, 87, 0.14);
    --shadow-hover: 0 16px 44px rgba(123, 74, 87, 0.18);
    --shadow-luxury: 0 8px 28px rgba(204, 136, 153, 0.2);
    --line-gold: rgba(181, 114, 129, 0.4);
    --surface-glass-burgundy: rgba(255, 255, 255, 0.92);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--ivory);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.page-wrapper,
.maison-body,
.luxury-body {
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

.container,
section,
.row {
    max-width: 100%;
}

.container { max-width: 1200px; }

/* Navbar — fixed wrapper is .maison-header in brand-redesign.css */
.luxury-navbar {
    position: relative;
    width: 100%;
    background: var(--surface-glass-burgundy);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-gold);
    transition: var(--transition);
}

.luxury-navbar .brand-text,
.luxury-navbar .brand-tagline {
    color: var(--soft-ivory);
}

.luxury-navbar .brand-tagline {
    color: rgba(255, 255, 255, 0.72);
}

.luxury-navbar .navbar-menu li a {
    color: rgba(255, 255, 255, 0.88);
}

.luxury-navbar .navbar-menu li a:hover,
.luxury-navbar .navbar-menu li a.active {
    color: var(--champagne-gold);
}

.luxury-navbar .navbar-toggle span {
    background: var(--champagne-gold);
}

.luxury-navbar .maison-monogram {
    color: var(--champagne-gold);
    background: rgba(181, 114, 129, 0.55);
    border-color: rgba(181, 114, 129, 0.5);
}

.luxury-navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-soft);
}

.navbar-inner {
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.navbar-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    position: relative;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
    color: var(--warm-gold-dark);
}

.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
    width: 60%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--mocha);
    transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

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

.hero-slide.active { opacity: 1; }

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--warm-gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active { background: var(--warm-gold); }

/* Buttons */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-luxury-primary {
    background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--warm-beige-gold) 100%);
    color: var(--deep-plum);
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(181, 114, 129, 0.5);
}

.btn-luxury-primary:hover {
    transform: translateY(-2px);
    background: var(--royal-burgundy);
    border-color: var(--wine-purple);
    box-shadow: 0 12px 28px rgba(145, 95, 109, 0.4);
    color: var(--soft-ivory);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--royal-burgundy);
    border: 2px solid var(--wine-purple);
}

.btn-luxury-outline:hover {
    background: var(--royal-burgundy);
    border-color: var(--royal-burgundy);
    color: var(--soft-ivory);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Cards */
.product-card {
    background: var(--pearl);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--champagne);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(255, 254, 249, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rose-gold);
}

.product-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-gold);
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rose-gold);
    margin-bottom: 16px;
}

.product-card .btn-luxury {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
}

/* Horizontal Scroll (desktop only — vertical stack on mobile) */
.scroll-section {
    overflow: hidden;
    max-width: 100%;
}

.scroll-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--warm-gold) var(--beige);
    max-width: 100%;
}

.scroll-wrapper::-webkit-scrollbar { height: 6px; }
.scroll-wrapper::-webkit-scrollbar-track { background: var(--beige); border-radius: 10px; }
.scroll-wrapper::-webkit-scrollbar-thumb { background: var(--warm-gold); border-radius: 10px; }

.scroll-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

/* Categories */
.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img { transform: scale(1.1); }

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 64, 53, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(183, 110, 121, 0.8) 0%, rgba(183, 110, 121, 0.2) 100%);
}

.category-overlay h3 {
    color: var(--pearl);
    font-size: 1.5rem;
    margin: 0;
}

/* Events */
.event-card {
    background: var(--pearl);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.event-image {
    height: 200px;
    overflow: hidden;
    background: var(--champagne);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-body { padding: 24px; }

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--rose-gold);
    margin-bottom: 12px;
}

.event-body h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.event-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Reviews */
.review-card {
    background: var(--pearl);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(181, 114, 129, 0.1);
}

.review-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(181, 114, 129, 0.25);
}

.review-stars {
    color: var(--warm-gold);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--champagne);
}

.review-author-info h5 {
    font-size: 1rem;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 600;
}

/* Footer */
.luxury-footer {
    background: var(--gradient-dark);
    margin-top: 0;
    color: var(--soft-ivory);
}

.luxury-footer h5,
.luxury-footer a {
    color: var(--soft-ivory);
}

.luxury-footer a:hover {
    color: var(--champagne-gold);
}

.footer-top { padding: 80px 0 50px; }

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.luxury-footer h5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--warm-cream);
}

.footer-brand p,
.footer-links a,
.footer-contact li {
    color: rgba(244, 231, 211, 0.82);
}

.footer-links a:hover {
    color: var(--antique-gold);
}

.footer-contact i {
    color: var(--antique-gold);
    margin-top: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    font-size: 0.9rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pearl);
    color: var(--mocha);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--pearl);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(201, 154, 74, 0.22);
    text-align: center;
}

.footer-bottom p {
    color: rgba(244, 231, 211, 0.7);
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Products Page */
.page-header {
    padding: 140px 0 60px;
    background: var(--gradient-warm);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.filter-sidebar {
    background: var(--pearl);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 100px;
}

.filter-sidebar h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--beige);
}

.filter-group { margin-bottom: 24px; }

.filter-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--beige);
    border-radius: var(--radius-sm);
    background: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--warm-gold);
    box-shadow: 0 0 0 3px rgba(181, 114, 129, 0.15);
}

.filter-toggle {
    display: none;
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.products-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.sort-select {
    padding: 10px 16px;
    border: 1px solid var(--beige);
    border-radius: var(--radius-sm);
    background: var(--pearl);
    font-family: var(--font-body);
    font-size: 0.85rem;
}

/* Product Details */
.product-detail-section { padding: 120px 0 80px; }

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--champagne);
    aspect-ratio: 1;
    margin-bottom: 16px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--warm-gold);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 12px;
}

.product-info .product-price {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.product-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.availability-badge {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.availability-in_stock { background: rgba(181, 114, 129, 0.15); color: var(--warm-gold-dark); }
.availability-limited { background: rgba(183, 110, 121, 0.15); color: var(--rose-gold); }
.availability-out_of_stock { background: rgba(154, 142, 130, 0.15); color: var(--text-light); }

.product-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.9;
}

/* About Page */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--gradient-warm);
    padding: 140px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.about-section {
    padding: 100px 0;
}

.about-section:nth-child(even) { background: var(--pearl); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 4/3;
    background: var(--champagne);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--pearl);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(181, 114, 129, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--pearl);
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Page */
.contact-section { padding: 100px 0; }

.contact-info-card {
    background: var(--pearl);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--champagne);
    color: var(--warm-gold-dark);
    font-size: 1.25rem;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--pearl);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--beige);
    border-radius: var(--radius-sm);
    background: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-gold);
    box-shadow: 0 0 0 3px rgba(181, 114, 129, 0.15);
}

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

.map-placeholder {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 350px;
    background: var(--champagne);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: var(--warm-gold);
}

/* Alerts */
.alert-luxury {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.alert-success { background: rgba(181, 114, 129, 0.15); color: var(--warm-gold-dark); border: 1px solid rgba(181, 114, 129, 0.3); }
.alert-error { background: rgba(183, 110, 121, 0.15); color: var(--rose-gold); border: 1px solid rgba(183, 110, 121, 0.3); }

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Glass Effect */
.glass-card {
    background: rgba(255, 254, 249, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(181, 114, 129, 0.15);
    border-radius: var(--radius-md);
}

.breadcrumb-item a { color: var(--warm-gold-dark); }
.breadcrumb-item.active { color: var(--text-light); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); }

@media (max-width: 991px) {
    .navbar-toggle { display: flex; }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--pearl);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-medium);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-menu li a {
        padding: 14px 20px;
        border-bottom: 1px solid var(--beige);
    }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-gallery { position: static; margin-bottom: 40px; }
}

@media (max-width: 767px) {
    .section { padding: 70px 0; }
    .hero-section { min-height: 80vh; }
    .filter-toggle { display: inline-flex; }
    .filter-sidebar {
        display: none;
        position: static;
        margin-bottom: 20px;
    }
    .filter-sidebar.active { display: block; }

    .scroll-section { overflow: visible; }
    .scroll-wrapper {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: visible;
        scroll-snap-type: none;
        gap: 20px;
        padding: 0;
    }
    .scroll-item {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .brand-text { display: none; }

    .about-section { padding: 64px 0; }
    .about-hero { padding: 120px 0 56px; min-height: auto; }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .value-card {
        padding: 24px 14px;
    }

    .value-icon {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .value-card h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .value-card p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .about-value-row .value-card {
        height: 100%;
    }
}

@media (max-width: 575px) {
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
    .contact-form-wrapper { padding: 24px; }
    .footer-top { padding: 48px 0 32px; }
    .footer-brand { text-align: center; }
    .footer-brand .footer-logo { margin-left: auto; margin-right: auto; }
    .luxury-footer h5 { margin-bottom: 16px; }
}
