/* ATAMAN WATER GROUP - MAIN CSS DESIGN SYSTEM & MOBILE RESPONSIVE ENGINE */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0284c7;
    --primary-dark: #0f2b5c;
    --primary-light: #38bdf8;
    --secondary-color: #00b4d8;
    --accent-color: #10b981;
    --dark-bg: #091e42;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(2, 132, 199, 0.12);
    --shadow-lg: 0 20px 35px -10px rgba(2, 132, 199, 0.2);
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 0; /* Fixed: was 75px causing unwanted blank space below footer */
}

main {
    flex: 1 0 auto;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- GENERAL FORM & CARD UTILITIES --- */
.form-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1e293b;
    background: #ffffff;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}
.form-row-2, .grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.alert-success {
    background: #dcfce7;
    color: #15803d;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid #bbf7d0;
}
.alert-danger {
    background: #fee2e2;
    color: #b91c1c;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid #fca5a5;
}

/* --- FORM ICONS & CUSTOM SELECTION PILLS --- */
.input-with-icon, .select-with-icon {
    position: relative;
    width: 100%;
}
.input-icon-left, .select-icon-left {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.2s ease;
}
.form-control.with-left-icon {
    padding-left: 42px;
}
.form-control:focus + .input-icon-left,
.input-with-icon:focus-within .input-icon-left,
.select-with-icon:focus-within .select-icon-left {
    color: #0284c7;
}

.select-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 38px;
    cursor: pointer;
}

.place-type-pill {
    cursor: pointer;
    margin: 0;
}
.place-type-pill input {
    display: none;
}
.place-type-pill .pill-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    border-radius: var(--radius-md);
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    transition: all 0.25s ease;
    gap: 4px;
}
.place-type-pill .pill-box i {
    font-size: 1.4rem;
    color: #64748b;
    transition: color 0.25s ease, transform 0.25s ease;
    margin-bottom: 2px;
}
.place-type-pill .pill-box strong {
    font-size: 0.88rem;
    color: #0d2857;
}
.place-type-pill .pill-box small {
    font-size: 0.72rem;
    color: #64748b;
}
.place-type-pill input:checked + .pill-box {
    border-color: #0284c7;
    background: #e0f2fe;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}
.place-type-pill input:checked + .pill-box i {
    color: #0284c7;
    transform: scale(1.1);
}
.place-type-pill input:checked + .pill-box strong {
    color: #0284c7;
}

.btn-discovery-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #0d2857 0%, #0284c7 100%);
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-discovery-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.35);
    color: #ffffff;
}

/* --- PRODUCT PAGE BANNER --- */
.product-page-banner {
    position: relative;
    background: linear-gradient(135deg, #091e42 0%, #0d2857 55%, #0284c7 100%);
    color: #ffffff;
    padding: 50px 0;
    overflow: hidden;
    margin-bottom: 25px;
}
.product-page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.product-banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.product-banner-subtitle {
    display: inline-block;
    color: #38bdf8;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-banner-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.2;
}
.product-banner-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 580px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.product-banner-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.product-banner-badges span {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e0f2fe;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.product-banner-badges i {
    color: #38bdf8;
}

.product-banner-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-banner-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-banner-img {
    height: 230px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
    transition: transform 0.4s ease;
}
.product-banner-img:hover {
    transform: scale(1.04);
}

/* --- CHECKOUT / CART STYLING --- */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 30px;
    align-items: start;
}
.btn-checkout-paytr:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.35);
}

/* --- BLOG & GENERAL PRODUCT CARDS --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.product-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(13, 40, 87, 0.12);
}
.product-thumb {
    height: 200px;
    background: #f1f5f9;
    overflow: hidden;
    position: relative;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-thumb img {
    transform: scale(1.05);
}
.product-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0d2857;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark), #1e3a8a);
    color: #ffffff;
    padding: 9px 0;
    font-size: 0.86rem;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-info {
    display: flex;
    gap: 20px;
    align-items: center;
}
.top-bar-info a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e0f2fe;
    white-space: nowrap;
}
.top-bar-info a:hover {
    color: #ffffff;
}
.top-bar-location {
    white-space: nowrap;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    gap: 16px;
}

.logo-box {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-box img,
.site-logo-img {
    height: 80px;
    max-height: 82px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}
.logo-box:hover img {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}
.nav-link {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-main);
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
    color: #0d2857;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 3px;
    background: #0d2857;
    border-radius: 3px;
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.instagram-popover-wrapper {
    position: relative;
}
.btn-instagram-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 1.15rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}
.btn-instagram-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.4);
}
.btn-facebook-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1877f2, #0d5cb6);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 1.15rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}
.btn-facebook-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.4);
    color: #ffffff !important;
}
.instagram-popover-menu {
    position: absolute;
    top: 50px;
    right: 0;
    width: 270px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 14px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 1050;
}
.instagram-popover-menu.show {
    display: flex;
}
.ig-popover-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: var(--light-bg);
}
.ig-popover-item:hover {
    background: #f0fdf4;
    border-color: var(--accent-color);
}

.btn-cta-kesif {
    background: linear-gradient(135deg, #0d2857, #0284c7);
    color: #ffffff !important;
    padding: 11px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta-kesif:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 40, 87, 0.3);
}

/* Mobile Hamburger Toggle Button */
.btn-mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: #0d2857;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Mobile Drawer Overlay & Menu */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2500;
}
.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #ffffff;
    padding: 25px 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}
.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-drawer-links a {
    font-size: 1rem;
    font-weight: 700;
    color: #0d2857;
    padding: 10px 14px;
    border-radius: 6px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- MODERN BREADCRUMB NAVIGATION --- */
.breadcrumb-container {
    background: #f8fafc;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.86rem;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.breadcrumb-list::-webkit-scrollbar {
    display: none;
}
.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.breadcrumb-item a,
.breadcrumb-list a {
    color: #475569;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    font-size: 0.84rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.breadcrumb-item a:hover,
.breadcrumb-list a:hover {
    color: #0284c7;
    border-color: #cbd5e1;
    background: #f1f5f9;
    transform: translateY(-1px);
}
.breadcrumb-item a i,
.breadcrumb-list a i {
    color: #0284c7;
    font-size: 0.82rem;
}
.breadcrumb-separator,
.breadcrumb-list > i {
    font-size: 0.65rem;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.breadcrumb-item.active {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}
.breadcrumb-active {
    color: #0d2857;
    font-weight: 700;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.84rem;
    flex-shrink: 0;
}

/* --- CONTACT PAGE STYLING --- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0 50px;
}
.contact-card-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #0284c7;
}
.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.contact-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0d2857;
    margin-bottom: 8px;
}
.contact-card-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}
.contact-card-sub {
    font-size: 0.84rem;
    color: #64748b;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.contact-form-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.contact-form-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0d2857;
    margin-bottom: 8px;
}
.contact-form-sub {
    font-size: 0.92rem;
    color: #64748b;
    margin-bottom: 25px;
}

.form-group-custom {
    margin-bottom: 20px;
}
.form-label-custom {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 6px;
}
.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1e293b;
    background: #ffffff;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control-custom:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.btn-send-contact {
    background: linear-gradient(135deg, #0d2857, #0284c7);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(13, 40, 87, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.25s ease;
}
.btn-send-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.35);
}

.contact-side-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.map-card-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.map-iframe-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    border: 1px solid #e2e8f0;
}
.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.service-areas-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.service-pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.area-pill {
    background: #f1f5f9;
    color: #0d2857;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
}

/* --- PRODUCT DETAIL INNER PAGE STYLING --- */
.product-detail-container {
    padding: 40px 0 70px;
}
.product-detail-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.detail-showcase-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-self: start;
    position: sticky;
    top: 120px;
}
.detail-img-backdrop {
    position: relative;
    background: linear-gradient(180deg, #091e42 0%, #1e3a8a 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}
.detail-img-backdrop img {
    max-height: 320px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}
.detail-img-backdrop:hover img {
    transform: scale(1.05);
}

.detail-price-panel {
    padding: 22px 25px;
    background: #f0f9ff;
    border: 2px solid #0284c7;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.detail-price-num {
    font-size: 2rem;
    font-weight: 800;
    color: #0d2857;
    line-height: 1;
}
.price-sub-info {
    font-size: 0.82rem;
    color: #10b981;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.detail-info-panel {
    display: flex;
    flex-direction: column;
}
.detail-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e0f2fe;
    color: #0284c7;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    width: max-content;
    margin-bottom: 12px;
}
.detail-product-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d2857;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.detail-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 18px;
}
.detail-product-summary {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 18px;
}

.detail-specs-list {
    list-style: none;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
}
.detail-specs-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
}
.detail-specs-list li i {
    color: #10b981;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.detail-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}
.btn-buy-paytr {
    background: linear-gradient(135deg, #0d2857, #0284c7);
    color: #ffffff;
    padding: 15px 24px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(13, 40, 87, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.25s ease;
}
.btn-buy-paytr:hover {
    transform: translateY(-2px);
}
.btn-wa-ask {
    background: #25d366;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}
.btn-wa-ask:hover {
    background: #1eb956;
    transform: translateY(-2px);
}
.btn-discovery-outline {
    background: #ffffff;
    border: 2px solid #0d2857;
    color: #0d2857;
    padding: 13px 24px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.92rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-discovery-outline:hover {
    background: #f8fafc;
}

/* TRUST BADGES GRID (ALWAYS 4 OR 2-SIDE-BY-SIDE) */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border-color);
}
.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}
.trust-badge-item i {
    font-size: 1.4rem;
    color: #0284c7;
}
.trust-badge-item span {
    font-size: 0.78rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.25;
}

/* TABS SECTION - SCROLLABLE ON MOBILE */
.product-tabs-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 50px;
}
.tabs-nav-bar {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}
.tabs-nav-bar::-webkit-scrollbar {
    height: 4px;
}
.tabs-nav-bar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.tab-link-btn {
    padding: 16px 24px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #64748b;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.tab-link-btn.active {
    color: #0d2857;
    background: #ffffff;
    border-bottom-color: #0d2857;
}
.tab-content-panel {
    padding: 30px;
    display: none;
}
.tab-content-panel.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table tr:nth-child(even) {
    background: #f8fafc;
}
.specs-table td {
    padding: 12px 16px;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border-color);
}
.specs-table td:first-child {
    font-weight: 700;
    color: #0d2857;
    width: 35%;
}
.specs-table td:last-child {
    color: #334155;
    font-weight: 500;
}

/* --- HERO SECTION --- */
.hero-custom {
    position: relative;
    background: linear-gradient(90deg, #dbeafe 0%, #eff6ff 45%, #ffffff 75%);
    padding: 50px 0 0;
    overflow: hidden;
}
.hero-custom-container {
    position: relative;
    z-index: 2;
}
.hero-custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    min-height: 440px;
}
.hero-custom-left {
    padding-right: 15px;
    padding-bottom: 50px;
}
.hero-custom-subtitle {
    color: #0284c7;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.hero-custom-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0d2857;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}
.hero-custom-desc {
    font-size: 1.05rem;
    color: #475569;
    max-width: 480px;
    margin-bottom: 30px;
    line-height: 1.6;
}
.hero-custom-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: #0d2857;
    color: #ffffff;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(13, 40, 87, 0.25);
    transition: all 0.25s ease;
}
.btn-hero-primary:hover {
    background: #0284c7;
    transform: translateY(-2px);
}
.btn-hero-secondary {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0d2857;
    padding: 13px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.btn-hero-secondary:hover {
    border-color: #0d2857;
    background: #f8fafc;
}

.hero-custom-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.purifier-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: center;
}
.purifier-img {
    width: 100%;
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
}

/* HERO SPLIT BANNERS */
.hero-split-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    background: #ffffff;
}
.split-banner-card {
    position: relative;
    padding: 40px 45px;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.split-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.split-banner-card:hover .split-banner-bg {
    transform: scale(1.05);
}
.split-banner-overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.3s ease;
}
.industrial-card .split-banner-overlay {
    background: linear-gradient(135deg, rgba(13, 40, 87, 0.94) 0%, rgba(2, 132, 199, 0.88) 100%);
}
.domestic-card .split-banner-overlay {
    background: linear-gradient(135deg, rgba(53, 101, 74, 0.92) 0%, rgba(85, 137, 105, 0.85) 100%);
}
.split-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 580px;
}
.split-banner-icon {
    font-size: 2.6rem;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 4px;
}
.split-banner-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.split-banner-text p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    line-height: 1.5;
}
.banner-link-btn {
    font-weight: 700;
    font-size: 0.88rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 2px;
}

/* --- PRODUCT PAGE BANNER --- */
.product-page-banner {
    position: relative;
    background: linear-gradient(135deg, #091e42 0%, #0d2857 60%, #0284c7 100%);
    color: #ffffff;
    padding: 45px 0;
    overflow: hidden;
}
.product-banner-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 25px;
    align-items: center;
}
.product-banner-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.product-banner-desc {
    font-size: 1.08rem;
    color: #cbd5e1;
    max-width: 540px;
}
.product-banner-img {
    height: 130px;
    object-fit: contain;
}

/* --- CATEGORY FILTER TABS BAR --- */
.filter-tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 30px;
    gap: 16px;
    flex-wrap: wrap;
}
.filter-tabs-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 6px;
    max-width: 100%;
}
.filter-tabs-list::-webkit-scrollbar {
    height: 4px;
}
.filter-tabs-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.tab-btn {
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    background: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.tab-btn:hover {
    border-color: #0d2857;
    color: #0d2857;
}
.tab-btn.active {
    background: #0d2857;
    color: #ffffff;
    border-color: #0d2857;
    box-shadow: 0 4px 12px rgba(13, 40, 87, 0.25);
}
.sort-select {
    padding: 9px 14px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-weight: 600;
    font-size: 0.88rem;
    background: #ffffff;
    color: #1e293b;
    outline: none;
}

/* --- SECTION & CARDS LAYOUT FIXES --- */
.section-padding {
    padding: 55px 0;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}
.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}
.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.category-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0f2fe;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.category-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- MODERN PRODUCT CARDS GRID --- */
/* --- FEATURED FILTER TABS --- */
.featured-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.filter-tag-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}
.filter-tag-btn:hover, .filter-tag-btn.active {
    background: #0d2857;
    color: #ffffff;
    border-color: #0d2857;
    box-shadow: 0 4px 12px rgba(13, 40, 87, 0.18);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.product-card-modern {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(13, 40, 87, 0.12);
}

.card-thumb-backdrop {
    position: relative;
    height: 220px;
    background: linear-gradient(180deg, #091e42 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}
.card-thumb-backdrop img {
    max-height: 185px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}
.product-card-modern:hover .card-thumb-backdrop img {
    transform: scale(1.08);
}

.badge-status {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.badge-best-seller {
    background: linear-gradient(135deg, #ef4444, #f97316);
}
.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
}

.badge-cert-top {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-body-modern {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-product-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0d2857;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-product-title a:hover {
    color: #0284c7;
}
.card-product-subtitle {
    font-size: 0.82rem;
    color: #0284c7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.card-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.rating-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    display: inline-flex;
    gap: 2px;
}
.rating-text {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

.product-specs-checklist {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}
.product-specs-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
}
.product-specs-checklist li i {
    color: #10b981;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.card-price-container {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 16px;
}
.card-price-modern {
    font-size: 1.55rem;
    font-weight: 900;
    color: #0d2857;
    line-height: 1.1;
    margin-bottom: 4px;
}
.price-perks {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 700;
}
.price-perks span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-actions-bar {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 10px;
}
.btn-card-outline {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0d2857;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.86rem;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.btn-card-outline:hover {
    border-color: #0d2857;
    background: #0d2857;
    color: #ffffff;
}
.btn-card-primary {
    background: linear-gradient(135deg, #0d2857, #0284c7);
    color: #ffffff;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.86rem;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(13, 40, 87, 0.2);
    transition: all 0.25s ease;
}
.btn-card-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

/* --- TRUST STRIP UNDER PRODUCTS --- */
.products-trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 45px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
}
.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.trust-strip-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.trust-strip-item strong {
    font-size: 0.95rem;
    color: #0d2857;
    display: block;
    margin-bottom: 2px;
}
.trust-strip-item p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.35;
}

/* --- INFINITE MARQUEE SLIDER --- */
.marquee-wrapper {
    overflow: hidden;
    user-select: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    width: 100%;
    max-width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    width: max-content;
    animation: marquee 25s linear infinite;
    will-change: transform;
}
.marquee-track.reverse {
    animation-direction: reverse;
}
.marquee-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 14px 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 220px;
    height: 68px;
    flex-shrink: 0;
}
.marquee-item img {
    height: 44px;
    width: auto;
    object-fit: contain;
}
.marquee-item span {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- PAGINATION BAR --- */
.pagination-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0 50px;
}
.page-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    color: #1e293b;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.page-num:hover, .page-num.active {
    background: #0d2857;
    color: #ffffff;
    border-color: #0d2857;
    box-shadow: 0 4px 10px rgba(13, 40, 87, 0.2);
}

/* --- FOOTER FEATURES STRIP --- */
.footer-features-strip {
    background: linear-gradient(135deg, #091e42 0%, #0d2857 100%);
    color: #ffffff;
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.features-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.feature-strip-icon {
    font-size: 2.2rem;
    color: #38bdf8;
    flex-shrink: 0;
}
.feature-strip-text h4 {
    font-size: 1.02rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}
.feature-strip-text p {
    font-size: 0.84rem;
    color: #cbd5e1;
}

/* --- MAIN SITE FOOTER --- */
.site-footer {
    background: #091e42;
    color: #94a3b8;
    padding: 55px 0 25px;
    border-top: 1px solid #1e3a8a;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
    gap: 35px;
    margin-bottom: 40px;
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
    position: relative;
    padding-bottom: 8px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #38bdf8;
    border-radius: 3px;
}
.footer-subtitle {
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: #38bdf8;
    font-weight: 700;
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.88rem;
}
.footer-links-list a {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.footer-links-list a i {
    font-size: 0.72rem;
    color: #38bdf8;
    transition: transform 0.25s ease;
}
.footer-links-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.88rem;
}
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}
.footer-contact-list i {
    color: #38bdf8;
    font-size: 1rem;
    flex-shrink: 0;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #1e3a8a;
}
.map-container iframe {
    width: 100%;
    height: 160px;
    border: none;
    display: block;
}

.footer-bottom-bar {
    border-top: 1px solid #1e3a8a;
    padding-top: 20px;
    text-align: center;
    font-size: 0.84rem;
    color: #94a3b8;
}

/* --- STICKY MOBILE BOTTOM BAR --- */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    padding: 10px 14px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border-color);
}
.mobile-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.btn-mobile-call {
    background: #0d2857;
    color: #ffffff;
    padding: 12px;
    border-radius: 50px;
    font-weight: 800;
    text-align: center;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-mobile-call:hover {
    background: #0284c7;
    color: #ffffff;
}
.btn-mobile-wa {
    background: #25d366;
    color: #ffffff;
    padding: 12px;
    border-radius: 50px;
    font-weight: 800;
    text-align: center;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-mobile-wa:hover {
    background: #1eb956;
    color: #ffffff;
}

/* --- ADVANCED RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .nav-menu {
        display: none !important;
    }
    .btn-mobile-menu-toggle {
        display: flex !important;
        flex-shrink: 0;
    }
    .header-actions .btn-cta-kesif .cta-text {
        display: none;
    }
    .header-actions .btn-cta-kesif::after {
        content: 'Ücretsiz Keşif';
    }
    .header-actions {
        gap: 8px;
        flex-shrink: 0;
    }
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .product-detail-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-custom-grid, .hero-split-banners, .two-column-products {
        grid-template-columns: 1fr;
    }
    .hero-custom-left {
        padding-right: 0;
        padding-bottom: 30px;
    }
    .mobile-sticky-bar {
        display: block;
    }
    /* Seamless dark footer extension on mobile above sticky bar */
    .site-footer {
        padding-bottom: 85px;
    }
    /* Checkout & Cart on Tablets/Mobile */
    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .checkout-summary-col {
        order: -1;
    }
    .checkout-summary-col .form-card {
        position: static !important;
    }
    .product-banner-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 20px;
    }
    .product-banner-badges {
        justify-content: center;
    }
    .product-banner-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .product-banner-img {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 38px 0;
    }
    .section-header {
        margin-bottom: 24px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .hero-custom {
        padding: 30px 0 0;
    }
    .hero-custom-title {
        font-size: 2.2rem;
    }
    .top-bar-location {
        display: none;
    }
    .top-bar-info {
        justify-content: center;
        width: 100%;
        gap: 15px;
        font-size: 0.8rem;
    }
    .product-banner-img {
        height: 150px;
        display: block;
    }
    .place-type-selector {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px;
    }
    .features-strip-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 10px;
    }
    .form-card {
        padding: 24px 18px;
    }
    .breadcrumb-container {
        padding: 9px 0;
    }
    .breadcrumb-item a,
    .breadcrumb-list a {
        font-size: 0.78rem;
        padding: 4px 8px;
    }
    .breadcrumb-active {
        max-width: 160px;
        font-size: 0.78rem;
        padding: 4px 9px;
    }
}

@media (max-width: 640px) {
    .form-row-2, .grid-2-col {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-features-strip {
        padding: 25px 0;
    }
}

@media (max-width: 576px) {
    .header-actions .btn-cta-kesif::after {
        content: 'Keşif Al';
    }
    .header-inner {
        height: 72px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    .breadcrumb-active {
        max-width: 120px;
    }
    .header-inner {
        height: 66px;
        gap: 6px;
    }
    .logo-box img,
    .site-logo-img {
        height: 38px;
        max-height: 40px;
    }
    .header-actions .btn-cta-kesif {
        padding: 7px 9px;
        font-size: 0.74rem;
        gap: 4px;
    }
    .header-actions .btn-cta-kesif::after {
        content: 'Keşif';
    }
    .btn-instagram-icon {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
    }
    .btn-facebook-icon {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
    }
    .btn-mobile-menu-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .place-type-selector {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }
    .discovery-trust-strip {
        grid-template-columns: 1fr !important;
    }
    .product-banner-img {
        height: 130px;
    }
    .hero-custom {
        padding: 20px 0 0;
    }
    .hero-custom-title {
        font-size: 1.8rem;
        line-height: 1.15;
    }
    .hero-custom-desc {
        font-size: 0.92rem;
        margin-bottom: 20px;
    }
    .hero-custom-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    .split-banner-card {
        padding: 22px 16px;
        min-height: 160px;
    }
    .split-banner-icon {
        font-size: 1.8rem;
    }
    .split-banner-text h3 {
        font-size: 1.2rem;
    }
    .products-grid, .products-grid-modern {
        grid-template-columns: 1fr;
    }
    .features-strip-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .feature-strip-item {
        gap: 12px;
    }
    .feature-strip-icon {
        font-size: 1.7rem;
    }
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
        padding: 10px 8px;
    }
    .trust-badge-item i {
        font-size: 1.2rem;
    }
    .trust-badge-item span {
        font-size: 0.72rem;
        line-height: 1.2;
    }
    .detail-product-title {
        font-size: 1.6rem;
    }
    .detail-price-num {
        font-size: 1.6rem;
    }
    .detail-price-panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .detail-price-panel .btn-card-primary {
        width: 100%;
    }
    .card-actions-bar {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .detail-specs-list {
        grid-template-columns: 1fr;
    }
}
