.elementor-641 .elementor-element.elementor-element-983badc{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-4593d65 */@import url('https://fonts.googleapis.com/css2?family=Ysabeau:wght@400;500;600;700;800&display=swap');

/* --- LAYOUT FIX (The Critical Part) --- */
/* Add Padding to Body to compensate for Fixed Header Height */
body { 
    margin: 0; 
    padding: 0; 
    padding-top: 80px; /* Exact height of desktop header */
    font-family: 'Ysabeau', sans-serif; 
}
@media (max-width: 900px) { 
    body { padding-top: 60px; /* Exact height of mobile header */ } 
}

/* 1. HEADER WRAPPER (Fixed at Top) */
.v23-header-wrapper {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 2000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); background: #fff;
    height: 80px; /* Enforce height */
}
@media (max-width: 900px) {
    .v23-header-wrapper { height: 60px; }
}

/* 2. DESKTOP HEADER */
.v23-desktop {
    background: #fff; height: 80px; display: flex; align-items: center; border-bottom: 1px solid #f0f0f0;
}
.v23-container {
    width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 30px;
    display: flex; justify-content: space-between; align-items: center;
}
.v23-logo img { height: 60px; width: auto; }
.v23-nav { display: flex; gap: 25px; align-items: center; }
.v23-nav a { text-decoration: none; color: #000; font-weight: 700; font-size: 14px; text-transform: uppercase; }
.v23-nav a:hover { color: #bc2d3c; }
.v23-more { position: relative; cursor: pointer; font-weight: 700; font-size: 14px; text-transform: uppercase; }
.v23-dropdown {
    position: absolute; top: 100%; left: 0; background: #fff; width: 160px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 10px; border-radius: 8px;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s;
}
.v23-more:hover .v23-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.v23-dropdown a { display: block; padding: 8px 10px; border-bottom: 1px solid #f9f9f9; }

/* Icons */
.v23-icons { display: flex; gap: 20px; align-items: center; }
.v23-icon { width: 24px; height: 24px; cursor: pointer; position: relative; color: #000; }
.v23-icon:hover { color: #bc2d3c; }
.v23-icon svg { width: 100%; height: 100%; }
.v23-badge {
   position: absolute;
    top: -6px;
    right: -8px;
    background: #bc2d3c;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.v23-user-menu {
    position: absolute; top: 100%; right: 0; width: 200px; background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-radius: 8px; padding: 15px;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s;
}
.user-trigger:hover .v23-user-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.um-head { font-weight: 800; padding-bottom: 10px; border-bottom: 1px solid #eee; margin-bottom: 10px; }
.v23-user-menu a { display: block; padding: 8px 0; text-decoration: none; color: #333; font-size: 13px; font-weight: 600; }

/* 3. MOBILE HEADER */
.v23-mobile {
    display: none; background: #fff; padding: 10px 20px; height: 60px;
    justify-content: space-between; align-items: center; border-bottom: 1px solid #f0f0f0;
}
.mob-shop-btn {
    text-decoration: none; color: #000; display: flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.mob-shop-btn svg { width: 24px; }
.mob-logo img { height: 40px; }
.mob-wa { width: 24px; color: #000; cursor: pointer; }
.mob-wa svg { width: 100%; height: 100%; }

/* 4. SEARCH UI */
.v23-search-sheet {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 2500;
    pointer-events: none;
}
.v23-s-wrap {
    background: #fff; padding: 30px; width: 100%; max-width: 800px; margin: 0 auto;
    border-radius: 0 0 20px 20px; box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    transform: translateY(-100%); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto; position: relative; z-index: 2;
}
.v23-search-sheet.active .v23-s-wrap { transform: translateY(0); }
.v23-s-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: 0.3s; pointer-events: auto;
    z-index: 1; display: none;
}
.v23-search-sheet.active .v23-s-backdrop { display: block; opacity: 1; }

.v23-s-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.v23-s-header h3 { margin: 0; font-size: 24px; font-weight: 800; }
.v23-close { width: 30px; cursor: pointer; color: #000; }

.v23-tabs { display: flex; gap: 10px; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.v23-tabs button {
    background: none; border: none; font-weight: 700; font-size: 14px; color: #999;
    padding: 10px 20px; cursor: pointer; display: flex; align-items: center; gap: 5px;
    border-radius: 8px; transition: 0.2s;
}
.v23-tabs button.active { background: #f5f5f5; color: #000; }

.v23-panel { display: none; }
.v23-panel.active { display: block; animation: fadeIn 0.3s; }
.v23-input-wrap { position: relative; }
#v23Input {
    width: 100%; padding: 20px; font-size: 18px; border: 2px solid #f0f0f0;
    border-radius: 12px; outline: none; background: #fbfbfb;
}
#v23Input:focus { border-color: #bc2d3c; background: #fff; }

.v23-dot-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; padding: 10px; border-bottom: 1px solid #f9f9f9; }
.v23-dot-row label { font-weight: 700; text-transform: uppercase; font-size: 13px; }
.v23-dots { display: flex; gap: 8px; }
.v23-dots span {
    width: 15px; height: 15px; border-radius: 50%; background: #eee; cursor: pointer; transition: 0.2s;
}
.v23-dots span.active { background: #bc2d3c; transform: scale(1.2); }

.v23-ideal-grid { display: flex; gap: 15px; justify-content: center; }
.ideal-card {
    border: 2px solid #f0f0f0; padding: 20px; border-radius: 12px; cursor: pointer;
    text-align: center; width: 100px; transition: 0.2s;
}
.ideal-card .icn { font-size: 24px; display: block; margin-bottom: 5px; }
.ideal-card span { font-size: 12px; font-weight: 700; }
.ideal-card.active { border-color: #bc2d3c; background: #fff5f5; }

.v23-search-btn {
    width: 100%; padding: 15px; background: #000; color: #fff; border: none;
    border-radius: 10px; font-weight: 800; margin-top: 20px; cursor: pointer;
}

/* Results */
.v22-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-top: 20px; }
.v22-card { text-decoration: none; color: #000; text-align: center; }
.v22-card img { border-radius: 8px; margin-bottom: 8px; width: 100%; }
.v22-card h5 { margin: 0; font-size: 13px; font-weight: 700; }
.v22-view-all { display: block; text-align: center; margin-top: 20px; font-weight: 800; color: #bc2d3c; text-decoration: underline; }

/* 5. WHATSAPP */
.v23-chat-widget {
    position: fixed; bottom: 100px; right: 20px; width: 320px; background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); border-radius: 16px; z-index: 3000;
    overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(20px); transition: 0.3s;
}
.v23-chat-widget.active { opacity: 1; visibility: visible; transform: translateY(0); }
.ch-head { background: #075e54; color: #fff; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.ch-info { display: flex; gap: 12px; align-items: center; }
.ch-icon-bg { width: 40px; height: 40px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ch-icon-bg svg { width: 24px; color: #25D366; }
.ch-info h4 { margin: 0; font-size: 15px; font-weight: 700; color: #fff; }
.ch-info span { font-size: 11px; opacity: 0.9; }
.ch-close-btn { width: 24px; color: #fff; cursor: pointer; }
.ch-body { height: 250px; background: #e5ddd5; padding: 20px; }
.ch-bub { background: #fff; padding: 10px 15px; border-radius: 0 12px 12px 12px; display: inline-block; font-size: 14px; max-width: 85%; box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.ch-foot { padding: 12px; display: flex; gap: 10px; background: #f0f0f0; align-items: center; }
.ch-foot input { flex-grow: 1; border: none; padding: 12px 15px; border-radius: 25px; outline: none; background: #fff; font-size: 14px; }
.ch-foot button { background: #075e54; border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.ch-foot button svg { width: 18px; fill: #fff; }

.v23-float-wa {
    position: fixed; bottom: 20px; right: 20px; z-index: 2500; cursor: pointer;
    background: #fff; padding: 8px 16px 8px 8px; border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 10px;
    transition: 0.3s; border: 1px solid #f0f0f0;
}
.v23-float-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.wa-icon-box { width: 40px; height: 40px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.wa-icon-box svg { width: 24px; color: #fff; }
.wa-text { font-weight: 700; font-size: 14px; color: #333; }

/* 6. DOCK */
.v23-dock {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: #fff;
    border-top: 1px solid #eee; padding: 15px 20px 10px; justify-content: space-between; z-index: 1000;
}
.dock-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: #000; font-size: 10px; font-weight: 600; text-decoration: none; cursor: pointer;
}
.dock-item svg { width: 24px; }
.dock-item:hover { color: #bc2d3c; }
.rel { position: relative; }

/* Category Drawer */
.v23-drawer {
    position: fixed; top: 0; left: 0; height: 100%; width: 280px; background: #fff; z-index: 3000;
    transition: 0.3s ease; display: flex; flex-direction: column; box-shadow: 10px 0 40px rgba(0,0,0,0.1); transform: translateX(-100%);
}
.v23-drawer.active { transform: translateX(0); }
.d-head { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.d-list a { display: block; padding: 15px 20px; border-bottom: 1px solid #eee; color: #000; text-decoration: none; font-weight: 700; font-size: 14px; }
.v23-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2999; display: none; }
.v23-overlay.active { display: block; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .v23-desktop { display: none; }
    .v23-mobile, .v23-dock { display: flex; }
    .v23-float-wa { bottom: 90px; right: 10px; }
    .v22-grid { grid-template-columns: repeat(2, 1fr); }
    .v23-s-wrap { height: 80vh; overflow-y: auto; }
}
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }/* End custom CSS */