html, body { overflow-x: hidden; }

/* ============================================
   GLOBAL MOBILE RESPONSIVE
   ============================================ */

/* Containers */
.container { padding-left: 16px !important; padding-right: 16px !important; }

@media (max-width: 768px) {
    /* Typography scale */
    .section-title { font-size: clamp(1.3rem, 5vw, 2rem) !important; }

    /* Page heroes */
    .fw-page-hero,
    .fw-contact-hero,
    .fw-services-hero,
    .fw-single-hero { padding: 48px 20px 36px !important; }

    /* Page bodies */
    .fw-page-body,
    .fw-contact-body,
    .fw-single-body { padding: 40px 20px 64px !important; }

    /* Services grid */
    .fw-services-grid { padding: 40px 16px 64px !important; }

    /* Archive hero */
    .fw-services-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem) !important; }

    /* Cards */
    .fw-cards { grid-template-columns: 1fr !important; }

    /* Buttons */
    .fw-back-btn { font-size: 0.82rem; padding: 10px 18px; }
}

@media (max-width: 480px) {
    .fw-nav-inner { padding: 0 16px !important; }
    .fw-logo-text { font-size: 1.25rem !important; }

    /* Single service image */
    .fw-single-thumb { max-height: 220px !important; }

    /* Footer bottom */
    footer .fw-footer-nav a { font-size: 0.85rem; }
}
/* ============================================
   FLOWELL THEME — style.css
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #050008 !important;
    color: #fff !important;
}
html { background: #050008; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Desktop Header ---------- */
.header-section { position: relative; }

.header-bottom {
    background: rgba(5, 0, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 30, 140, 0.25);
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
}

.header-bottom-color--black {
    background: rgba(5, 0, 8, 0.97);
}

/* Logo */
.header-logo .logo a {
    display: flex;
    align-items: center;
}
.header-logo .logo img {
    height: 42px;
    width: auto;
}
.header-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #E91E8C, #F7941D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Main Navigation */
.main-menu nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}
.main-menu nav ul li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 6px;
    transition: all 0.25s ease;
    position: relative;
}
.menu-color--white nav ul li a {
    color: rgba(255, 255, 255, 0.85);
}
.menu-color--white nav ul li.active a,
.menu-color--white nav ul li a:hover,
.menu-hover-color--pink nav ul li a:hover {
    color: #E91E8C;
    background: rgba(233, 30, 140, 0.1);
}




/* ---------- Mobile Header ---------- */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 0, 8, 0.97);
    border-bottom: 1px solid rgba(233, 30, 140, 0.25);
}

.mobile-header-bg-color--white {
    background: rgba(5, 0, 8, 0.97);
}

.header-top {
    background: rgba(233, 30, 140, 0.08);
    border-bottom: 1px solid rgba(233, 30, 140, 0.1);
    padding: 6px 0;
    font-size: 0.8rem;
}

.header-top-contact a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.header-top-contact a:hover { color: #E91E8C; }
.header-top-contact img { width: 14px; height: 14px; display: inline; }

.mobile-menu-logo .logo img {
    height: 38px;
    width: auto;
}

.header-action-link {
    display: flex;
    gap: 12px;
    align-items: center;
}
.header-action-link a {
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.header-action-link a:hover { color: #E91E8C; }
.header-action-link img { width: 20px; height: 20px; }

/* ---------- Offcanvas Mobile Menu ---------- */
.offcanvas {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #0d0010;
    border-left: 1px solid rgba(233, 30, 140, 0.3);
    z-index: 9999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 24px 20px;
}
.offcanvas.active { right: 0; }
.offcanvas-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}
.offcanvas-close {
    background: none;
    border: 1px solid rgba(233,30,140,0.4);
    color: rgba(255,255,255,0.8);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.offcanvas-close:hover { background: rgba(233,30,140,0.2); color: #E91E8C; }

.offcanvas-menu ul li a {
    display: block;
    padding: 12px 0;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, padding-left 0.2s;
}
.offcanvas-menu ul li a:hover {
    color: #E91E8C;
    padding-left: 8px;
}

.mobile-contact-info {
    margin-top: 32px;
}
.mobile-contact-info .logo img { height: 36px; }

/* Overlay for offcanvas */
.offcanvas-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9998;
}
.offcanvas-overlay.active { display: block; }

/* ---------- Search Modal ---------- */
.search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 0, 8, 0.96);
    z-index: 9990;
    align-items: center;
    justify-content: center;
}
.search-modal:target { display: flex; }
.search-modal .close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}
.search-modal .close:hover { color: #E91E8C; }
.search-modal input[type="search"] {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(233,30,140,0.4);
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.2s;
}
.search-modal input[type="search"]:focus { border-color: #E91E8C; }
.search-modal .btn-green {
    margin-top: 12px;
    padding: 12px 28px;
    background: linear-gradient(90deg, #E91E8C, #F7941D);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.search-modal .btn-green:hover { opacity: 0.85; }

/* ---------- Utility ---------- */
.section-fluid { width: 100%; }
.icon-space-right { margin-right: 8px; }
.success-cart,
.success-wishlist {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(90deg, #E91E8C, #F7941D);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(233,30,140,0.4);
}
