:root {
    --primary-color: #221D18;
    --accent-color: #926951;
    --bg-light: #F6F4F2;
    --text-secondary: #605C57;
    --white: #FFFFFF;
    --syne-font: 'Syne', sans-serif;
    --inter-font: 'Inter', sans-serif;
}

body {
    font-family: var(--inter-font);
    color: var(--primary-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: var(--syne-font);
    font-weight: 700;
}

.fw-extra-bold {
    font-weight: 800;
}

/* Top Banner */
.top-banner {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Header */
.main-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 15px;
    font-size: 0.95rem;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-light);
}

.display-1 {
    line-height: 1.1;
    letter-spacing: -2px;
}

.btn-primary-infurnish {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-infurnish:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bg-light-infurnish {
    background-color: var(--bg-light);
}

/* Category Cards */
.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    background-color: #ddd;
}

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

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

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.category-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.arrow-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Product Cards Infurnish */
.product-card-infurnish {
    background: transparent;
}

.img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--bg-light);
    aspect-ratio: 1/1.2;
}

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

.add-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.add-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-price {
    font-weight: 700;
    color: var(--accent-color);
}

/* Button Group */
.btn-group-infurnish {
    background-color: var(--bg-light);
    padding: 5px;
    border-radius: 100px;
}

.btn-group-infurnish .btn {
    border-radius: 100px;
    border: none;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-group-infurnish .btn.active {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Newsletter Box */
.newsletter-box {
    background-color: var(--primary-color);
}

.max-w-600 {
    max-width: 600px;
}

/* Footer */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.7rem;
}

/* List View Overrides */
.list-view .product-item {
    width: 100%;
}

.list-view .product-card-infurnish {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 20px;
}

.list-view .img-container {
    width: 150px;
    height: 150px;
    aspect-ratio: 1/1;
}

.cursor-pointer {
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    
    transition: transform 0.3s ease;
}
#contact .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.1rem;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

#contact .form-label {
    font-weight: 600;
    color: var(--primary-color);
}
/* message caché par défaut */
.payment-msg {
    display: none;
}

/* quand on clique sur Pay Now */
#paymentSuccess:target {
    display: block;
}
/* Message contact caché */
.contact-msg {
    display: none;
}

/* Affiché après clic sur Send Message */
#contactSuccess:target {
    display: block;
}
/* Message caché */
.thank-message {
    display: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ffcc;
}

/* Quand on clique sur Subscribe */
#thanks:target {
    display: block;
}

