NOUVEAU
body {
font-family: 'Inter', sans-serif;
background: var(--white);
color: var(--black);
font-size: 15px;
line-height: 1.6;
}
/* ── TOP BAR ── */
.kz-topbar {
background: var(--black);
color: #ccc;
font-size: 12px;
padding: 7px 40px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--gold-dark);
}
.kz-topbar span { display: flex; align-items: center; gap: 6px; }
.kz-topbar .highlight { color: var(--gold-light); }
/* ── HEADER ── */
.kz-header {
background: var(--white);
border-bottom: 1px solid #eee;
padding: 0 40px;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.kz-header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
gap: 24px;
}
.kz-logo-wrap {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
}
.kz-logo-img {
width: 52px;
height: 52px;
object-fit: contain;
border-radius: 6px;
}
.kz-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.kz-logo-text .brand {
font-family: 'Playfair Display', serif;
font-size: 18px;
font-weight: 700;
color: var(--black);
letter-spacing: 0.5px;
}
.kz-logo-text .tagline {
font-size: 10px;
color: var(--gold);
letter-spacing: 1.5px;
text-transform: uppercase;
font-weight: 500;
}
.kz-search-wrap {
flex: 1;
max-width: 440px;
position: relative;
}
.kz-search-wrap input {
width: 100%;
padding: 10px 16px 10px 42px;
border: 1.5px solid #e0e0e0;
border-radius: 8px;
font-size: 14px;
outline: none;
transition: border-color 0.2s;
background: var(--light);
font-family: 'Inter', sans-serif;
}
.kz-search-wrap input:focus { border-color: var(--gold); background: #fff; }
.kz-search-wrap i {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
color: var(--muted);
font-size: 14px;
}
.kz-search-btn {
position: absolute;
right: 8px;
top: 50%;
transform: translateY(-50%);
background: var(--gold);
color: #fff;
border: none;
padding: 5px 14px;
border-radius: 5px;
font-size: 12px;
cursor: pointer;
font-weight: 500;
}
.kz-header-actions { display: flex; align-items: center; gap: 20px; }
.kz-action-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
cursor: pointer;
color: var(--mid);
text-decoration: none;
transition: color 0.2s;
position: relative;
}
.kz-action-item:hover { color: var(--gold); }
.kz-action-item i { font-size: 20px; }
.kz-action-item span { font-size: 10px; font-weight: 500; }
.kz-cart-dot {
position: absolute;
top: -4px;
right: -6px;
background: var(--green);
color: white;
font-size: 9px;
width: 16px;
height: 16px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
}
.kz-btn-devis {
background: var(--green);
color: #fff;
border: none;
padding: 9px 20px;
border-radius: 8px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
font-family: 'Inter', sans-serif;
transition: background 0.2s;
white-space: nowrap;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 6px;
}
.kz-btn-devis:hover { background: var(--green-dark); color: #fff; }
/* ── NAV ── */
.kz-nav {
background: var(--dark);
padding: 0 40px;
}
.kz-nav-inner {
display: flex;
align-items: center;
overflow-x: auto;
gap: 0;
scrollbar-width: none;
}
.kz-nav-inner::-webkit-scrollbar { display: none; }
.kz-nav a {
color: #ccc;
text-decoration: none;
font-size: 13px;
font-weight: 400;
padding: 13px 18px;
white-space: nowrap;
display: flex;
align-items: center;
gap: 6px;
border-bottom: 2px solid transparent;
transition: all 0.2s;
}
.kz-nav a:hover, .kz-nav a.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.kz-nav a i { font-size: 13px; }
.kz-nav-promo {
margin-left: auto;
background: var(--green) !important;
color: #fff !important;
padding: 8px 16px !important;
border-radius: 6px;
border: none !important;
border-bottom: none !important;
margin-top: 10px;
margin-bottom: 10px;
}
/* ── HERO ── */
.kz-hero {
background: linear-gradient(135deg, #1A1A1A 0%, #2C2010 55%, #1A2A1A 100%);
min-height: 480px;
display: flex;
align-items: center;
padding: 60px 40px;
position: relative;
overflow: hidden;
}
.kz-hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
radial-gradient(ellipse at 75% 50%, rgba(74,140,63,0.1) 0%, transparent 60%);
}
.kz-hero-content {
position: relative;
z-index: 1;
max-width: 560px;
}
.kz-hero-badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(201,168,76,0.15);
border: 1px solid rgba(201,168,76,0.4);
color: var(--gold-light);
font-size: 11px;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
padding: 5px 14px;
border-radius: 20px;
margin-bottom: 20px;
}
.kz-hero h1 {
font-family: 'Playfair Display', serif;
font-size: 42px;
color: var(--white);
line-height: 1.15;
margin-bottom: 16px;
font-weight: 700;
}
.kz-hero h1 em {
font-style: normal;
background: linear-gradient(90deg, var(--gold-light), var(--green-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.kz-hero p {
color: #aaa;
font-size: 15px;
margin-bottom: 32px;
line-height: 1.7;
}
.kz-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.kz-btn-gold {
background: var(--gold);
color: #1A1A1A;
border: none;
padding: 13px 28px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
font-family: 'Inter', sans-serif;
transition: all 0.2s;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
}
.kz-btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); color: #1A1A1A; }
.kz-btn-outline {
background: transparent;
color: #ccc;
border: 1px solid rgba(255,255,255,0.25);
padding: 13px 28px;
border-radius: 8px;
font-size: 14px;
cursor: pointer;
font-family: 'Inter', sans-serif;
transition: all 0.2s;
text-decoration: none;
display: inline-flex;
align-items: center;
}
.kz-btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.kz-hero-right {
position: absolute;
right: 60px;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 12px;
z-index: 1;
}
.kz-stat-card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(201,168,76,0.2);
border-radius: 12px;
padding: 14px 20px;
text-align: center;
min-width: 130px;
backdrop-filter: blur(8px);
}
.kz-stat-card .num {
font-family: 'Playfair Display', serif;
font-size: 26px;
font-weight: 700;
color: var(--gold-light);
line-height: 1;
}
.kz-stat-card .lbl { font-size: 11px; color: #888; margin-top: 4px; }
/* ── TRUST BAR ── */
.kz-trust-bar {
background: var(--gold-pale);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 14px 40px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.kz-trust-item { display: flex; align-items: center; gap: 10px; }
.kz-trust-item i { font-size: 20px; color: var(--gold-dark); min-width: 24px; }
.kz-trust-item .trust-title { font-size: 13px; font-weight: 600; color: var(--black); }
.kz-trust-item .trust-sub { font-size: 11px; color: var(--muted); }
/* ── SECTIONS ── */
.kz-section { padding: 60px 40px; }
.kz-section-head {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 32px;
}
.kz-section-label {
font-size: 11px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 6px;
}
.kz-section-title {
font-family: 'Playfair Display', serif;
font-size: 28px;
font-weight: 700;
color: var(--black);
line-height: 1.2;
}
.kz-see-all {
font-size: 13px;
color: var(--green);
text-decoration: none;
font-weight: 500;
display: flex;
align-items: center;
gap: 4px;
white-space: nowrap;
}
.kz-see-all:hover { color: var(--green-dark); }
/* ── CATEGORIES ── */
.kz-categories { background: var(--light); }
.kz-cat-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 14px;
}
.kz-cat-card {
background: var(--white);
border: 1px solid #eee;
border-radius: 12px;
padding: 22px 14px 18px;
text-align: center;
cursor: pointer;
transition: all 0.2s;
text-decoration: none;
color: inherit;
display: block;
}
.kz-cat-card:hover {
border-color: var(--gold);
box-shadow: 0 4px 20px rgba(201,168,76,0.15);
transform: translateY(-2px);
}
.kz-cat-card i { font-size: 30px; color: var(--gold); margin-bottom: 10px; display: block; }
.kz-cat-card:hover i { color: var(--green); }
.kz-cat-card .cat-name { font-size: 12px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.kz-cat-card .cat-count { font-size: 11px; color: var(--muted); }
/* ── PRODUCTS ── */
.kz-products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.kz-product-card {
background: var(--white);
border: 1px solid #eee;
border-radius: 14px;
overflow: hidden;
cursor: pointer;
transition: all 0.2s;
}
.kz-product-card:hover {
border-color: rgba(201,168,76,0.4);
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
transform: translateY(-3px);
}
.kz-product-img-wrap {
background: var(--light);
height: 180px;
display: flex;
align-items: center;
justify-content: center;
font-size: 52px;
position: relative;
overflow: hidden;
}
.kz-product-img-wrap::after {
content: '';
position: absolute;
bottom: 0; left: 0; right: 0;
height: 40px;
background: linear-gradient(transparent, rgba(244,244,242,0.6));
}
.kz-tag {
position: absolute;
top: 10px;
left: 10px;
font-size: 10px;
font-weight: 600;
padding: 3px 9px;
border-radius: 20px;
letter-spacing: 0.5px;
z-index: 2;
}
.kz-tag-promo { background: #FFF0D0; color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.4); }
.kz-tag-new { background: var(--green-pale); color: var(--green-dark); border: 1px solid rgba(74,140,63,0.3); }
.kz-wishlist-btn {
position: absolute;
top: 10px;
right: 10px;
background: rgba(255,255,255,0.85);
border: none;
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--muted);
font-size: 13px;
transition: color 0.2s;
z-index: 2;
}
.kz-wishlist-btn:hover { color: var(--gold); }
.kz-product-body { padding: 14px 16px 16px; }
.kz-product-brand {
font-size: 10px;
font-weight: 600;
color: var(--gold-dark);
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 5px;
}
.kz-product-name {
font-size: 14px;
font-weight: 500;
color: var(--black);
margin-bottom: 8px;
line-height: 1.4;
}
.kz-stars { color: var(--gold); font-size: 12px; margin-bottom: 10px; }
.kz-stars span { color: var(--muted); font-size: 11px; margin-left: 4px; }
.kz-product-price-row {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 10px;
}
.kz-price { font-size: 17px; font-weight: 700; color: var(--black); }
.kz-old-price { font-size: 12px; color: var(--muted); text-decoration: line-through; margin-left: 6px; }
.kz-add-cart {
background: var(--gold);
color: #1A1A1A;
border: none;
width: 34px;
height: 34px;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
font-weight: 700;
}
.kz-add-cart:hover { background: var(--green); color: #fff; }
/* ── PROMO BANNERS ── */
.kz-promo-section { background: var(--dark); padding: 40px; }
.kz-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.kz-promo-card {
border-radius: 16px;
padding: 32px;
position: relative;
overflow: hidden;
}
.kz-promo-card-gold {
background: linear-gradient(135deg, #2C2010 0%, #1A1A1A 100%);
border: 1px solid rgba(201,168,76,0.3);
}
.kz-promo-card-green {
background: linear-gradient(135deg, #1A2A18 0%, #1A1A1A 100%);
border: 1px solid rgba(74,140,63,0.3);
}
.kz-promo-label {
font-size: 11px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 8px;
}
.kz-promo-label-gold { color: var(--gold); }
.kz-promo-label-green { color: var(--green-light); }
.kz-promo-card h3 {
font-family: 'Playfair Display', serif;
font-size: 22px;
color: #fff;
margin-bottom: 10px;
font-weight: 700;
}
.kz-promo-card p { font-size: 13px; color: #888; margin-bottom: 20px; line-height: 1.6; }
.kz-btn-promo-gold {
background: var(--gold);
color: #1A1A1A;
border: none;
padding: 10px 22px;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
font-family: 'Inter', sans-serif;
text-decoration: none;
display: inline-block;
}
.kz-btn-promo-green {
background: var(--green);
color: #fff;
border: none;
padding: 10px 22px;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
cursor: pointer;
font-family: 'Inter', sans-serif;
text-decoration: none;
display: inline-block;
}
.kz-promo-icon {
position: absolute;
right: 24px;
top: 50%;
transform: translateY(-50%);
font-size: 64px;
opacity: 0.08;
}
/* ── BRANDS ── */
.kz-brands-section {
background: var(--white);
padding: 40px;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.kz-brands-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.kz-brands-row > p {
font-size: 11px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--muted);
white-space: nowrap;
}
.kz-brand-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.kz-brand-logo {
font-family: 'Inter', sans-serif;
font-size: 15px;
font-weight: 700;
color: #bbb;
letter-spacing: 1px;
text-transform: uppercase;
transition: color 0.2s;
cursor: pointer;
}
.kz-brand-logo:hover { color: var(--gold); }
/* ── TESTIMONIALS ── */
.kz-testimonials { background: var(--light); }
.kz-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.kz-testi-card {
background: var(--white);
border: 1px solid #eee;
border-radius: 14px;
padding: 24px;
position: relative;
}
.kz-testi-card::before {
content: '"';
font-family: 'Playfair Display', serif;
font-size: 64px;
color: var(--gold-pale);
position: absolute;
top: 12px;
left: 20px;
line-height: 1;
}
.kz-testi-text {
font-size: 14px;
color: var(--mid);
line-height: 1.7;
margin-bottom: 16px;
padding-top: 20px;
}
.kz-testi-author { display: flex; align-items: center; gap: 10px; }
.kz-testi-avatar {
width: 38px;
height: 38px;
border-radius: 50%;
background: linear-gradient(135deg, var(--gold), var(--green));
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 13px;
font-weight: 700;
flex-shrink: 0;
}
.kz-testi-name { font-size: 13px; font-weight: 600; color: var(--black); }
.kz-testi-role { font-size: 11px; color: var(--muted); }
/* ── NEWSLETTER ── */
.kz-newsletter {
background: linear-gradient(135deg, var(--black) 0%, #1E2A1E 100%);
padding: 60px 40px;
text-align: center;
border-top: 2px solid var(--gold-dark);
}
.kz-newsletter i { font-size: 36px; color: var(--gold); margin-bottom: 14px; display: block; }
.kz-newsletter h2 {
font-family: 'Playfair Display', serif;
font-size: 30px;
color: #fff;
margin-bottom: 10px;
}
.kz-newsletter p { font-size: 14px; color: #888; margin-bottom: 28px; }
.kz-newsletter-form {
display: flex;
gap: 10px;
justify-content: center;
max-width: 480px;
margin: 0 auto;
}
.kz-newsletter-form input {
flex: 1;
padding: 12px 18px;
border-radius: 8px;
border: 1px solid #333;
background: #2a2a2a;
color: #fff;
font-size: 14px;
font-family: 'Inter', sans-serif;
outline: none;
}
.kz-newsletter-form input:focus { border-color: var(--gold); }
.kz-newsletter-form button {
background: var(--gold);
color: #1a1a1a;
border: none;
padding: 12px 24px;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
font-family: 'Inter', sans-serif;
white-space: nowrap;
}
/* ── FOOTER ── */
.kz-footer {
background: var(--black);
color: #888;
padding: 50px 40px 24px;
border-top: 1px solid #222;
}
.kz-footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
margin-bottom: 40px;
}
.kz-footer-brand .kz-logo-wrap { margin-bottom: 14px; }
.kz-footer-brand > p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.kz-social-links { display: flex; gap: 10px; }
.kz-social-links a {
width: 34px;
height: 34px;
border: 1px solid #333;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #666;
text-decoration: none;
font-size: 14px;
transition: all 0.2s;
}
.kz-social-links a:hover { border-color: var(--gold); color: var(--gold); }
.kz-footer-col h4 {
font-size: 12px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
color: #ccc;
margin-bottom: 16px;
}
.kz-footer-col ul { list-style: none; }
.kz-footer-col ul li { margin-bottom: 9px; }
.kz-footer-col ul li a {
color: #777;
text-decoration: none;
font-size: 13px;
transition: color 0.2s;
}
.kz-footer-col ul li a:hover { color: var(--gold); }
.kz-footer-bottom {
border-top: 1px solid #222;
padding-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 12px;
}
.kz-footer-bottom .pays {
display: flex;
align-items: center;
gap: 6px;
color: var(--green-light);
font-size: 12px;
}
.kz-pay-icons { display: flex; gap: 8px; }
.kz-pay-icon {
background: #222;
border: 1px solid #333;
border-radius: 5px;
padding: 3px 8px;
font-size: 11px;
color: #777;
font-weight: 600;
}
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
.kz-hero-right { display: none; }
.kz-cat-grid { grid-template-columns: repeat(3, 1fr); }
.kz-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.kz-topbar { padding: 7px 16px; flex-direction: column; gap: 6px; text-align: center; }
.kz-header { padding: 0 16px; }
.kz-header-inner { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 12px; }
.kz-search-wrap { max-width: 100%; order: 3; width: 100%; }
.kz-nav { padding: 0 16px; }
.kz-hero { padding: 40px 20px; min-height: auto; }
.kz-hero h1 { font-size: 28px; }
.kz-trust-bar { grid-template-columns: repeat(2, 1fr); padding: 14px 20px; }
.kz-section { padding: 40px 20px; }
.kz-categories { padding: 40px 20px; }
.kz-cat-grid { grid-template-columns: repeat(2, 1fr); }
.kz-products-grid { grid-template-columns: 1fr 1fr; }
.kz-promo-section { padding: 20px; }
.kz-promo-grid { grid-template-columns: 1fr; }
.kz-brands-section { padding: 24px 20px; }
.kz-brands-row { flex-direction: column; align-items: flex-start; }
.kz-testi-grid { grid-template-columns: 1fr; }
.kz-newsletter { padding: 40px 20px; }
.kz-newsletter-form { flex-direction: column; }
.kz-footer { padding: 40px 20px 20px; }
.kz-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
.kz-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
.kz-products-grid { grid-template-columns: 1fr; }
.kz-cat-grid { grid-template-columns: repeat(3, 1fr); }
.kz-footer-grid { grid-template-columns: 1fr; }
.kz-trust-bar { grid-template-columns: 1fr; }
}