:root {
    --aq-blue: #0798bd;
    --aq-blue-dark: #056f8d;
    --aq-blue-light: #eef9fc;
    --aq-blue-soft: rgba(7, 152, 189, 0.07);

    --aq-turquoise: #007d78;
    --aq-red: #e30613;

    --aq-dark: #111827;
    --aq-text: #26313d;
    --aq-muted: #738091;
    --aq-soft-text: #9aa5b2;

    --aq-border: #e9eef3;
    --aq-border-soft: #f2f5f8;

    --aq-page: #ffffff;
    --aq-section: #f9fbfc;
    --aq-section-soft: #f5f8fa;
    --aq-card: #ffffff;

    --aq-footer-bg: #f6f8fa;
    --aq-footer-text: #2d3743;
    --aq-footer-muted: #768292;

    --aq-container: 1560px;

    --aq-shadow-xs: 0 5px 14px rgba(17, 24, 39, 0.028);
    --aq-shadow: 0 10px 26px rgba(17, 24, 39, 0.045);
    --aq-shadow-lg: 0 18px 52px rgba(17, 24, 39, 0.075);

    --aq-radius-xs: 10px;
    --aq-radius-sm: 12px;
    --aq-radius: 16px;
    --aq-radius-lg: 22px;

    --aq-transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--aq-text);
    background:
        radial-gradient(circle at 8% 0%, rgba(7, 152, 189, 0.035), transparent 300px),
        linear-gradient(180deg, #ffffff 0%, #fafcfd 48%, #ffffff 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.aq-menu-open,
body.aq-cart-open {
    overflow: hidden;
}

body.aq-mega-open {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

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

.aq-container {
    width: min(100% - 44px, var(--aq-container));
    margin: 0 auto;
}

/* ÜST DUYURU */

.aq-top-announcement {
    height: 32px;
    background: linear-gradient(90deg, #121821, #18222c, #121821);
    border-top: 2px solid var(--aq-blue);
    overflow: hidden;
}

.aq-announcement-slider {
    position: relative;
    height: 100%;
}

.aq-announcement-slider span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transform: translateY(9px);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-align: center;
    transition: opacity 450ms ease, transform 450ms ease;
}

.aq-announcement-slider span.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER */

.aq-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 6px 20px rgba(17, 24, 39, 0.028);
}

.aq-header-top {
    height: 28px;
    background: #ffffff;
    border-bottom: 1px solid #f2f5f8;
}

.aq-header-top-inner {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aq-header-trust {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #687383;
    font-size: 10.5px;
    font-weight: 500;
}

.aq-header-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.aq-header-trust i {
    color: var(--aq-blue);
    font-size: 13px;
}

.aq-header-mini-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.aq-header-mini-links a {
    color: #687383;
    font-size: 10.5px;
    font-weight: 500;
    transition: color var(--aq-transition);
}

.aq-header-mini-links a:hover {
    color: var(--aq-blue);
}

.aq-header-main {
    background: #ffffff;
}

.aq-header-main-inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: 205px minmax(280px, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.aq-logo {
    width: 205px;
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.aq-logo span {
    font-family: "Playfair Display", Georgia, serif;
    color: #101114;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1.6px;
    white-space: nowrap;
}

.aq-logo span::first-letter {
    color: var(--aq-blue-dark);
}

.aq-logo small {
    margin-top: 6px;
    color: #7a8491;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 1.65px;
    white-space: nowrap;
}

.aq-search {
    height: 44px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.95);
    transition: box-shadow var(--aq-transition), border-color var(--aq-transition), background var(--aq-transition);
}

.aq-search:focus-within {
    background: #ffffff;
    border-color: rgba(7, 152, 189, 0.34);
    box-shadow: 0 0 0 3px rgba(7, 152, 189, 0.075), 0 9px 20px rgba(17, 24, 39, 0.035);
}

.aq-search button {
    width: 46px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--aq-blue);
    display: grid;
    place-items: center;
}

.aq-search button i {
    font-size: 19px;
}

.aq-search input {
    width: 100%;
    height: 44px;
    border: 0;
    outline: none;
    background: transparent;
    color: #222831;
    font-size: 12.5px;
    font-weight: 500;
}

.aq-search input::placeholder {
    color: #818b98;
}

.aq-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.aq-header-action {
    position: relative;
    min-height: 38px;
    padding: 0 8px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #2f3844;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: color var(--aq-transition), background var(--aq-transition), transform var(--aq-transition);
}

.aq-header-action i {
    font-size: 20px;
}

.aq-header-action:hover {
    color: var(--aq-blue);
    background: var(--aq-blue-light);
    transform: translateY(-1px);
}

.aq-header-action em {
    position: absolute;
    top: -4px;
    left: 21px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--aq-blue);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 8.5px;
    font-weight: 700;
}

.aq-header-menu {
    height: 43px;
    background: #ffffff;
    border-top: 1px solid #f2f5f8;
}

.aq-main-menu {
    height: 43px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.aq-main-menu::-webkit-scrollbar {
    display: none;
}

.aq-main-menu a,
.aq-category-menu-btn {
    position: relative;
    height: 43px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #34404c;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
}

.aq-main-menu a::after,
.aq-category-menu-btn::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 2px;
    background: transparent;
    transition: background var(--aq-transition);
}

.aq-main-menu a:hover,
.aq-main-menu a.is-active,
.aq-category-menu-btn:hover,
.aq-category-menu-btn.is-active {
    color: var(--aq-blue);
}

.aq-main-menu a:hover::after,
.aq-main-menu a.is-active::after,
.aq-category-menu-btn:hover::after,
.aq-category-menu-btn.is-active::after {
    background: var(--aq-blue);
}

.aq-category-menu-btn {
    padding-left: 0;
    margin-right: 8px;
}

.aq-category-menu-btn i {
    font-size: 21px;
}

.aq-mobile-menu-btn {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 11px;
    background: #f3f6f8;
    color: #1f2329;
}

.aq-mobile-menu-btn i {
    font-size: 22px;
}

/* MEGA MENÜ */

.aq-mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-7px);
    transition: opacity var(--aq-transition), visibility var(--aq-transition), transform var(--aq-transition);
}

.aq-mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.aq-mega-box {
    min-height: 380px;
    display: grid;
    grid-template-columns: 210px 1fr;
    background: #ffffff;
    border: 1px solid var(--aq-border);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.1);
    overflow: hidden;
}

.aq-mega-sidebar {
    padding: 10px;
    background: linear-gradient(180deg, #fbfcfd, #f5f8fa);
    border-right: 1px solid var(--aq-border);
}

.aq-mega-sidebar button {
    width: 100%;
    min-height: 50px;
    padding: 0 12px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #394554;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 600;
    text-align: left;
    transition: background var(--aq-transition), color var(--aq-transition), transform var(--aq-transition);
}

.aq-mega-sidebar button i {
    color: #647084;
    font-size: 17px;
}

.aq-mega-sidebar button:hover,
.aq-mega-sidebar button.is-active {
    background: #ffffff;
    color: var(--aq-blue-dark);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
    transform: translateX(2px);
}

.aq-mega-content {
    padding: 22px;
}

.aq-mega-pane {
    display: none;
}

.aq-mega-pane.is-active {
    display: block;
}

.aq-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    gap: 28px;
}

.aq-mega-grid h3 {
    margin: 0 0 10px;
    color: var(--aq-blue-dark);
    font-size: 13px;
    font-weight: 700;
}

.aq-mega-grid a {
    display: table;
    margin-bottom: 8px;
    color: #475263;
    font-size: 12.5px;
    font-weight: 400;
}

.aq-mega-grid a:hover {
    color: var(--aq-blue);
}

.aq-mega-promo {
    border-radius: 15px;
    overflow: hidden;
    background: #f8fbfd;
    border: 1px solid var(--aq-border);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.045);
}

.aq-mega-promo img {
    width: 100%;
    height: 126px;
    object-fit: cover;
}

.aq-mega-promo strong {
    display: block;
    padding: 12px 12px 4px;
    color: #17202b;
    font-size: 12.5px;
    font-weight: 700;
}

.aq-mega-promo span {
    display: block;
    padding: 0 12px 12px;
    color: #758092;
    font-size: 11.5px;
    line-height: 1.45;
}

/* MOBİL MENÜ */

.aq-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 160;
    background: rgba(17, 24, 39, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--aq-transition), visibility var(--aq-transition);
}

.aq-mobile-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 170;
    width: min(390px, 91vw);
    height: 100vh;
    background: #ffffff;
    box-shadow: 18px 0 54px rgba(17, 24, 39, 0.16);
    transform: translateX(-104%);
    transition: transform 320ms ease;
    display: flex;
    flex-direction: column;
}

body.aq-menu-open .aq-mobile-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.aq-menu-open .aq-mobile-panel {
    transform: translateX(0);
}

.aq-mobile-panel-head {
    min-height: 78px;
    padding: 17px 19px;
    border-bottom: 1px solid var(--aq-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aq-mobile-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.aq-mobile-logo span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -1.3px;
}

.aq-mobile-logo small {
    margin-top: 6px;
    color: #778291;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 1.45px;
    text-transform: uppercase;
}

.aq-mobile-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 11px;
    background: #f3f6f8;
}

.aq-mobile-search {
    padding: 16px 19px;
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 9px;
    border-bottom: 1px solid var(--aq-border);
}

.aq-mobile-search input {
    height: 44px;
    border: 1px solid var(--aq-border);
    border-radius: 11px;
    padding: 0 13px;
    outline: none;
    font-size: 12.5px;
}

.aq-mobile-search button {
    height: 44px;
    border: 0;
    border-radius: 11px;
    background: var(--aq-blue);
    color: #ffffff;
}

.aq-mobile-nav {
    padding: 8px 19px;
    display: flex;
    flex-direction: column;
}

.aq-mobile-nav a {
    min-height: 50px;
    border-bottom: 1px solid var(--aq-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #34404c;
    font-size: 12.5px;
    font-weight: 600;
}

/* HERO */

.aq-hero-area {
    padding: 28px 0 36px;
    background:
        radial-gradient(circle at 12% 10%, rgba(7, 152, 189, 0.045), transparent 30%),
        linear-gradient(180deg, #ffffff, #fafcfd);
}

.aq-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.28fr) minmax(335px, 0.9fr);
    gap: 20px;
}

.aq-hero-slider {
    position: relative;
    min-height: 395px;
    border-radius: 22px;
    overflow: hidden;
    background: #08131b;
    box-shadow: var(--aq-shadow-lg);
    isolation: isolate;
}

.aq-hero-slider::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    z-index: 8;
    pointer-events: none;
}

.aq-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 700ms ease, visibility 700ms ease, transform 1200ms ease;
}

.aq-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.aq-hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.aq-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(5, 12, 18, 0.76) 0%, rgba(5, 12, 18, 0.50) 46%, rgba(5, 12, 18, 0.12) 100%),
        radial-gradient(circle at 22% 48%, rgba(7, 152, 189, 0.22), transparent 34%);
}

.aq-hero-content {
    position: absolute;
    left: 46px;
    top: 50%;
    z-index: 4;
    width: min(520px, calc(100% - 106px));
    transform: translateY(-50%);
    color: #ffffff;
}

.aq-hero-content span {
    display: inline-flex;
    min-height: 29px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(7, 152, 189, 0.18);
    border: 1px solid rgba(125, 228, 255, 0.24);
    align-items: center;
    color: #c7f6ff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.35px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.aq-hero-content h1 {
    margin: 15px 0 0;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 3.6vw, 58px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -1.6px;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.aq-hero-content p {
    max-width: 485px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.62;
}

.aq-hero-buttons {
    margin-top: 23px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.aq-hero-buttons a {
    min-height: 43px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--aq-blue);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(7, 152, 189, 0.20);
    transition: transform var(--aq-transition), background var(--aq-transition);
}

.aq-hero-buttons a:hover {
    background: #08acd5;
    color: #ffffff;
    transform: translateY(-2px);
}

.aq-hero-buttons .aq-hero-outline {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.aq-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 9;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.aq-hero-prev {
    left: 14px;
}

.aq-hero-next {
    right: 14px;
}

.aq-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 9;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.aq-hero-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    transition: width var(--aq-transition), background var(--aq-transition);
}

.aq-hero-dots button.is-active {
    width: 26px;
    background: var(--aq-blue);
}

.aq-hero-side {
    display: grid;
    gap: 20px;
}

.aq-hero-mini-card {
    position: relative;
    min-height: 187px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #061018;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.075);
    isolation: isolate;
}

.aq-hero-mini-card img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 850ms ease;
}

.aq-hero-mini-card:hover img {
    transform: scale(1.045);
}

.aq-hero-mini-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(3, 9, 14, 0.70), rgba(3, 9, 14, 0.20)),
        radial-gradient(circle at 15% 70%, rgba(7, 152, 189, 0.18), transparent 40%);
}

.aq-hero-mini-card div {
    position: relative;
    z-index: 3;
    padding: 22px;
    color: #ffffff;
}

.aq-hero-mini-card span {
    color: #b8f3ff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.aq-hero-mini-card h2 {
    max-width: 270px;
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.35px;
}

.aq-hero-mini-card strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    font-size: 11px;
    font-weight: 700;
    border-bottom: 1px solid var(--aq-blue);
}

/* ORTAK BAŞLIK */

.aq-section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 20px;
}

.aq-section-title-row span,
.aq-centered-head span {
    display: inline-flex;
    color: var(--aq-blue-dark);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.aq-section-title-row h2,
.aq-centered-head h2 {
    margin: 7px 0 0;
    color: #111827;
    font-size: clamp(23px, 2vw, 32px);
    font-weight: 700;
    letter-spacing: -0.65px;
}

.aq-section-title-row p {
    max-width: 520px;
    margin: 7px 0 0;
    color: #798493;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.58;
}

.aq-title-compact {
    margin-bottom: 18px;
}

.aq-view-all {
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--aq-border);
    color: var(--aq-blue-dark);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.035);
}

.aq-view-all:hover {
    background: var(--aq-blue);
    border-color: var(--aq-blue);
    color: #ffffff;
}

/* KATEGORİ */

.aq-category-section {
    padding: 26px 0 34px;
    background: #ffffff;
}

.aq-small-arrows {
    display: flex;
    align-items: center;
    gap: 7px;
}

.aq-small-arrows button,
.aq-carousel-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid var(--aq-border);
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.045);
}

.aq-category-viewport {
    overflow: hidden;
}

.aq-category-track {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 3px 0 10px;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.aq-category-card {
    width: 122px;
    min-width: 122px;
    flex: 0 0 122px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #2d3238;
    text-align: center;
}

.aq-category-card span {
    width: 76px;
    height: 76px;
    padding: 3px;
    border-radius: 999px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(145deg, rgba(7, 152, 189, 0.58), rgba(53, 215, 243, 0.28), #ffffff) border-box;
    border: 2px solid transparent;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
    overflow: hidden;
    transition: transform var(--aq-transition), box-shadow var(--aq-transition);
}

.aq-category-card span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

.aq-category-card strong {
    width: 100%;
    color: #374151;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.24;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aq-category-card small {
    display: block;
    color: #99a3af;
    font-size: 10.5px;
    font-weight: 500;
}

.aq-category-card:hover span {
    transform: translateY(-3px) scale(1.022);
    box-shadow: 0 13px 28px rgba(7, 152, 189, 0.11);
}

.aq-category-shortcuts {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.aq-category-shortcuts a {
    min-height: 54px;
    padding: 0 16px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid var(--aq-border);
    box-shadow: var(--aq-shadow-xs);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3d4857;
    font-size: 12.5px;
    font-weight: 600;
    transition: transform var(--aq-transition), border-color var(--aq-transition), color var(--aq-transition);
}

.aq-category-shortcuts a i {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--aq-blue-light);
    color: var(--aq-blue-dark);
    display: grid;
    place-items: center;
    font-size: 15px;
}

.aq-category-shortcuts a:hover {
    transform: translateY(-2px);
    border-color: rgba(7, 152, 189, 0.24);
    color: var(--aq-blue-dark);
}

/* ÜRÜN ALANLARI */

.aq-product-section {
    padding: 48px 0 56px;
    background: #ffffff;
}

.aq-soft-block {
    background:
        radial-gradient(circle at 88% 4%, rgba(7, 152, 189, 0.035), transparent 260px),
        linear-gradient(180deg, #f9fbfc 0%, #ffffff 100%);
    border-top: 1px solid #eff4f7;
    border-bottom: 1px solid #eff4f7;
}

.aq-carousel-wrap {
    position: relative;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.035);
    backdrop-filter: blur(12px);
}

.aq-products-viewport {
    overflow: hidden;
    padding: 2px 2px 6px;
}

.aq-products-track {
    display: flex;
    gap: 18px;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aq-products-track .aq-product-card {
    flex: 0 0 calc((100% - 54px) / 4);
}

.aq-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
}

.aq-products-prev {
    left: -1px;
}

.aq-products-next {
    right: -1px;
}

.aq-product-grid {
    display: grid;
    gap: 18px;
}

.aq-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.aq-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aq-product-card {
    position: relative;
    min-width: 0;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.035);
    overflow: hidden;
    transition: transform var(--aq-transition), box-shadow var(--aq-transition), border-color var(--aq-transition);
}

.aq-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(7, 152, 189, 0.20);
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.aq-product-image {
    position: relative;
    height: 202px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%, rgba(7, 152, 189, 0.035), transparent 55%),
        #f8fafc;
}

.aq-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.aq-product-card:hover .aq-product-image img {
    transform: scale(1.04);
}

.aq-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 4;
    min-width: 46px;
    min-height: 23px;
    padding: 0 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e43d45, #ff6570);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.aq-fav-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #101114;
    display: grid;
    place-items: center;
    box-shadow: 0 7px 18px rgba(17, 24, 39, 0.055);
    transition: background var(--aq-transition), color var(--aq-transition), transform var(--aq-transition);
}

.aq-fav-btn i {
    font-size: 15px;
}

.aq-fav-btn:hover,
.aq-fav-btn.is-active {
    background: var(--aq-blue);
    color: #ffffff;
    transform: translateY(-1px);
}

.aq-product-info {
    padding: 13px 13px 14px;
}

.aq-product-cat {
    display: inline-flex;
    min-height: 21px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--aq-blue-light);
    color: var(--aq-blue-dark);
    align-items: center;
    font-size: 9.5px;
    font-weight: 700;
}

.aq-product-info h3 {
    min-height: 39px;
    margin: 8px 0 0;
    color: #1f2937;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
}

.aq-product-info h3 a:hover {
    color: var(--aq-blue);
}

.aq-stars {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
    color: #ff9700;
    font-size: 10px;
}

.aq-stars em {
    margin-left: 4px;
    color: #7d8795;
    font-style: normal;
    font-size: 10.5px;
    font-weight: 600;
}

.aq-product-bottom {
    min-height: 36px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f1f4f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.aq-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.aq-price strong {
    color: #101114;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.25px;
    white-space: nowrap;
}

.aq-price del {
    color: #9aa3af;
    font-size: 11px;
    font-weight: 500;
}

.aq-add-cart {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: var(--aq-turquoise);
    color: #ffffff;
    display: inline-grid;
    place-items: center;
    font-size: 15px;
    transition: background var(--aq-transition), transform var(--aq-transition), box-shadow var(--aq-transition);
}

.aq-add-cart:hover,
.aq-add-cart.is-added {
    background: var(--aq-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(7, 152, 189, 0.18);
}

/* BANNER */

.aq-image-banners {
    padding: 34px 0 52px;
    background: #ffffff;
}

.aq-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.aq-banner-card {
    position: relative;
    min-height: 220px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #08131b;
    box-shadow: var(--aq-shadow);
}

.aq-banner-card img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms ease;
}

.aq-banner-card:hover img {
    transform: scale(1.045);
}

.aq-banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(5, 15, 22, 0.66)),
        radial-gradient(circle at 20% 85%, rgba(7, 152, 189, 0.20), transparent 45%);
}

.aq-banner-card div {
    position: relative;
    z-index: 3;
    padding: 22px;
    color: #ffffff;
}

.aq-banner-card span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.aq-banner-card h2 {
    max-width: 320px;
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.35px;
}

.aq-banner-card strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 700;
}

/* MARKALAR */

.aq-brand-icons {
    padding: 28px 0;
    background:
        linear-gradient(180deg, #ffffff, #f9fbfc);
}

.aq-brand-icons-row,
.aq-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.aq-brand-icons-row span,
.aq-brand-grid a {
    min-height: 60px;
    border: 1px solid var(--aq-border);
    border-radius: 15px;
    background: #ffffff;
    display: grid;
    place-items: center;
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.75px;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.028);
    transition: transform var(--aq-transition), border-color var(--aq-transition), color var(--aq-transition);
}

.aq-brand-icons-row span:hover,
.aq-brand-grid a:hover {
    transform: translateY(-2px);
    border-color: rgba(7, 152, 189, 0.24);
    color: var(--aq-blue-dark);
}

.aq-centered-head {
    max-width: 700px;
    margin: 0 auto 24px;
    text-align: center;
}

.aq-tabs {
    margin-top: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.aq-tabs button {
    min-height: 33px;
    padding: 0 13px;
    border: 1px solid var(--aq-border);
    border-radius: 999px;
    background: #ffffff;
    color: #4b5563;
    font-size: 10.5px;
    font-weight: 700;
}

.aq-tabs button.is-active {
    background: var(--aq-blue);
    border-color: var(--aq-blue);
    color: #ffffff;
}

/* FIRSATLAR */

.aq-limited-section {
    padding: 52px 0 64px;
    background:
        radial-gradient(circle at 10% 8%, rgba(7, 152, 189, 0.045), transparent 290px),
        linear-gradient(180deg, #f8fbfd 0%, #f2f7fa 100%);
    border-top: 1px solid #eef3f6;
    border-bottom: 1px solid #eef3f6;
}

.aq-limited-grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 18px;
}

.aq-limited-feature {
    position: relative;
    min-height: 328px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--aq-shadow);
    display: flex;
    align-items: flex-end;
}

.aq-limited-feature img {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: 58%;
    object-fit: cover;
}

.aq-limited-feature::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 72%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 40%);
}

.aq-limited-feature div {
    position: relative;
    z-index: 3;
    padding: 22px;
}

.aq-limited-feature span {
    color: var(--aq-blue-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.aq-limited-feature h3 {
    margin: 7px 0 0;
    color: #111827;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.12;
}

.aq-limited-feature p {
    margin: 9px 0 0;
    color: var(--aq-muted);
    font-size: 12.5px;
    line-height: 1.55;
}

.aq-limited-feature strong {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--aq-blue-dark);
    font-size: 11px;
    font-weight: 700;
}

.aq-mini-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.aq-mini-product {
    min-height: 132px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.035);
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
}

.aq-mini-product img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    background: #f8fafc;
}

.aq-mini-product h4 {
    margin: 0;
    color: #111827;
    font-size: 12.8px;
    font-weight: 700;
    line-height: 1.35;
}

.aq-mini-product span {
    display: block;
    margin-top: 7px;
    color: var(--aq-blue-dark);
    font-size: 13px;
    font-weight: 700;
}

.aq-mini-product a {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--aq-turquoise);
    color: #ffffff;
    display: inline-grid;
    place-items: center;
    font-size: 15px;
}

.aq-brand-shop {
    padding: 52px 0 64px;
    background: #ffffff;
}

.aq-brand-product-row {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* FOOTER */

.aq-footer {
    background:
        radial-gradient(circle at 8% 0%, rgba(7, 152, 189, 0.045), transparent 300px),
        linear-gradient(180deg, #f8fafc 0%, #eef3f6 100%);
    color: var(--aq-footer-text);
    border-top: 1px solid #e5ebf0;
}

.aq-footer-top {
    border-bottom: 1px solid #e2e8ee;
}

.aq-footer-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 24px 0;
}

.aq-footer-benefits div {
    min-height: 84px;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e6edf2;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.03);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.aq-footer-benefits i {
    color: var(--aq-blue-dark);
    font-size: 21px;
}

.aq-footer-benefits strong {
    color: #17202b;
    font-size: 12.8px;
    font-weight: 700;
}

.aq-footer-benefits span {
    color: var(--aq-footer-muted);
    font-size: 11.5px;
    line-height: 1.45;
}

.aq-footer-main {
    display: grid;
    grid-template-columns: 1.3fr 0.78fr 0.78fr 0.88fr 1.08fr;
    gap: 30px;
    padding: 48px 0 38px;
}

.aq-footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.aq-footer-logo span {
    font-family: "Playfair Display", Georgia, serif;
    color: #101114;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1.6px;
}

.aq-footer-logo span::first-letter {
    color: var(--aq-blue-dark);
}

.aq-footer-logo small {
    margin-top: 7px;
    color: #7a8491;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 1.65px;
    text-transform: uppercase;
}

.aq-footer-brand p,
.aq-footer-newsletter p,
.aq-footer-newsletter small {
    color: var(--aq-footer-muted);
    font-size: 12.5px;
    line-height: 1.65;
}

.aq-footer-brand p {
    max-width: 340px;
    margin: 15px 0 0;
}

.aq-footer-social {
    margin-top: 17px;
    display: flex;
    gap: 9px;
}

.aq-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e1e8ee;
    color: #4b5563;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.028);
    transition: background var(--aq-transition), color var(--aq-transition), transform var(--aq-transition), border-color var(--aq-transition);
}

.aq-footer-social a:hover {
    background: var(--aq-blue);
    border-color: var(--aq-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.aq-footer-col h3,
.aq-footer-newsletter h3 {
    margin: 0 0 15px;
    color: #17202b;
    font-size: 13.5px;
    font-weight: 700;
}

.aq-footer-col a {
    display: table;
    margin-bottom: 9px;
    color: var(--aq-footer-muted);
    font-size: 12.5px;
    font-weight: 400;
    transition: color var(--aq-transition), transform var(--aq-transition);
}

.aq-footer-col a:hover {
    color: var(--aq-blue-dark);
    transform: translateX(2px);
}

.aq-footer-newsletter form {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px;
}

.aq-footer-newsletter input {
    height: 42px;
    border: 1px solid #dfe7ed;
    border-radius: 12px;
    background: #ffffff;
    outline: none;
    color: #17202b;
    padding: 0 13px;
    font-size: 12.5px;
}

.aq-footer-newsletter input::placeholder {
    color: #9aa3af;
}

.aq-footer-newsletter button {
    height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    background: var(--aq-blue);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
}

.aq-footer-newsletter small {
    display: block;
    margin-top: 10px;
    font-size: 11.5px;
}

.aq-footer-bottom {
    min-height: 58px;
    border-top: 1px solid #dfe7ed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.aq-footer-bottom span,
.aq-footer-bottom a {
    color: #7a8491;
    font-size: 11.5px;
}

.aq-footer-bottom div {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* SEPET */

.aq-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 180;
    background: rgba(17, 24, 39, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--aq-transition), visibility var(--aq-transition);
}

.aq-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 190;
    width: min(410px, 92vw);
    height: 100vh;
    background: #ffffff;
    box-shadow: -20px 0 58px rgba(17, 24, 39, 0.16);
    transform: translateX(104%);
    transition: transform 330ms ease;
    display: flex;
    flex-direction: column;
}

body.aq-cart-open .aq-cart-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.aq-cart-open .aq-cart-drawer {
    transform: translateX(0);
}

.aq-cart-head {
    min-height: 78px;
    padding: 19px 21px;
    border-bottom: 1px solid var(--aq-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aq-cart-head strong {
    display: block;
    color: #111827;
    font-size: 19px;
    font-weight: 700;
}

.aq-cart-head span {
    display: block;
    margin-top: 4px;
    color: var(--aq-muted);
    font-size: 12px;
    font-weight: 400;
}

.aq-cart-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 11px;
    background: #f3f6f8;
}

.aq-cart-body {
    flex: 1;
    padding: 22px 21px;
    overflow-y: auto;
}

.aq-cart-empty {
    min-height: 320px;
    border: 1px dashed #cfd8e3;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-align: center;
    padding: 26px;
}

.aq-cart-empty span {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--aq-blue-light);
    color: var(--aq-blue-dark);
    font-size: 25px;
}

.aq-cart-empty h3 {
    margin: 8px 0 0;
    color: #111827;
    font-size: 17px;
    font-weight: 700;
}

.aq-cart-empty p {
    max-width: 270px;
    margin: 0;
    color: var(--aq-muted);
    font-size: 12.5px;
    line-height: 1.55;
}

.aq-cart-foot {
    padding: 19px 21px 21px;
    border-top: 1px solid var(--aq-border);
    background: #f8fafc;
}

.aq-cart-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 13px;
}

.aq-cart-total span {
    color: var(--aq-muted);
    font-size: 12.5px;
    font-weight: 500;
}

.aq-cart-total strong {
    color: #111827;
    font-size: 19px;
    font-weight: 700;
}

.aq-cart-checkout,
.aq-cart-continue {
    width: 100%;
    min-height: 43px;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 700;
}

.aq-cart-checkout {
    border: 0;
    background: var(--aq-blue);
    color: #ffffff;
}

.aq-cart-continue {
    margin-top: 9px;
    border: 1px solid var(--aq-border);
    background: #ffffff;
    color: #111827;
}

/* TOOLTIP */

.aq-floating-tooltip {
    position: fixed;
    z-index: 9999;
    max-width: min(260px, calc(100vw - 28px));
    padding: 7px 10px;
    border-radius: 9px;
    background: #111827;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.20);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-50%, 8px, 0);
    transition: opacity var(--aq-transition), visibility var(--aq-transition), transform var(--aq-transition);
}

.aq-floating-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
}

/* RESPONSIVE */

@media (max-width: 1240px) {
    .aq-header-main-inner {
        grid-template-columns: 195px minmax(250px, 1fr) auto;
        gap: 18px;
    }

    .aq-logo {
        width: 195px;
    }

    .aq-logo span {
        font-size: 32px;
    }

    .aq-header-action span {
        display: none;
    }

    .aq-grid-5 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .aq-products-track .aq-product-card {
        flex-basis: calc((100% - 36px) / 3);
    }

    .aq-footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .aq-footer-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 991px) {
    .aq-header-trust {
        display: none;
    }

    .aq-header-main-inner {
        min-height: 68px;
        grid-template-columns: auto 1fr auto;
        gap: 13px;
    }

    .aq-mobile-menu-btn {
        display: grid;
        place-items: center;
    }

    .aq-logo {
        width: auto;
        max-width: 210px;
    }

    .aq-logo span {
        font-size: 29px;
        letter-spacing: -1.2px;
    }

    .aq-logo small {
        font-size: 7.5px;
        letter-spacing: 1.3px;
    }

    .aq-search {
        grid-column: 1 / -1;
        order: 5;
        height: 42px;
        margin-bottom: 11px;
    }

    .aq-search button,
    .aq-search input {
        height: 42px;
    }

    .aq-header-action {
        width: 38px;
        height: 38px;
        min-height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 11px;
        background: #f3f6f8;
    }

    .aq-header-action i {
        font-size: 19px;
    }

    .aq-header-menu,
    .aq-mega-menu {
        display: none;
    }

    .aq-hero-grid {
        grid-template-columns: 1fr;
    }

    .aq-hero-slider {
        min-height: 405px;
    }

    .aq-hero-content {
        left: 38px;
        width: min(520px, calc(100% - 76px));
    }

    .aq-hero-side {
        grid-template-columns: 1fr 1fr;
    }

    .aq-category-shortcuts {
        grid-template-columns: repeat(2, 1fr);
    }

    .aq-grid-5,
    .aq-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aq-products-track .aq-product-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .aq-banner-grid {
        grid-template-columns: 1fr;
    }

    .aq-brand-icons-row,
    .aq-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .aq-limited-grid {
        grid-template-columns: 1fr;
    }

    .aq-brand-product-row {
        grid-template-columns: 1fr;
    }

    .aq-footer-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .aq-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .aq-footer-brand,
    .aq-footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .aq-container {
        width: min(100% - 24px, var(--aq-container));
    }

    .aq-announcement-slider span {
        padding: 0 13px;
        font-size: 9.5px;
        letter-spacing: 0.7px;
        line-height: 1.35;
        white-space: normal;
    }

    .aq-section-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .aq-carousel-wrap {
        padding: 12px;
        border-radius: 20px;
    }

    .aq-hero-slider {
        min-height: 420px;
        border-radius: 19px;
    }

    .aq-hero-slide::before {
        background: linear-gradient(180deg, rgba(3, 9, 14, 0.18), rgba(3, 9, 14, 0.84));
    }

    .aq-hero-content {
        left: 21px;
        right: 21px;
        top: auto;
        bottom: 66px;
        width: auto;
        transform: none;
    }

    .aq-hero-content h1 {
        font-size: 32px;
    }

    .aq-hero-content p {
        font-size: 12.5px;
    }

    .aq-hero-buttons a {
        min-height: 40px;
        padding: 0 14px;
        font-size: 10.5px;
    }

    .aq-hero-side {
        grid-template-columns: 1fr;
    }

    .aq-category-shortcuts {
        grid-template-columns: 1fr;
    }

    .aq-grid-5,
    .aq-grid-4 {
        grid-template-columns: 1fr;
    }

    .aq-products-track .aq-product-card {
        flex-basis: 84%;
    }

    .aq-product-image {
        height: 210px;
    }

    .aq-mini-products {
        grid-template-columns: 1fr;
    }

    .aq-mini-product {
        grid-template-columns: 84px 1fr auto;
    }

    .aq-mini-product img {
        width: 84px;
        height: 84px;
    }

    .aq-brand-icons-row,
    .aq-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aq-footer-benefits,
    .aq-footer-main {
        grid-template-columns: 1fr;
    }

    .aq-footer-brand,
    .aq-footer-newsletter {
        grid-column: auto;
    }

    .aq-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 17px 0;
    }

    .aq-footer-bottom div {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .aq-logo span {
        font-size: 26px;
    }

    .aq-logo small {
        max-width: 160px;
        letter-spacing: 0.9px;
    }

    .aq-category-card {
        width: 94px;
        min-width: 94px;
        flex-basis: 94px;
    }

    .aq-category-card span {
        width: 66px;
        height: 66px;
    }

    .aq-category-card strong {
        font-size: 10.5px;
    }

    .aq-category-card small {
        font-size: 10px;
    }

    .aq-product-section {
        padding: 38px 0 46px;
    }

    .aq-product-card {
        border-radius: 16px;
    }

    .aq-products-prev {
        left: -5px;
    }

    .aq-products-next {
        right: -5px;
    }

    .aq-footer-newsletter form {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   AquaShop İnce Ayar Paketi
   - Zarif ürün kartları
   - Temiz renk geçişleri
   - Tam ortalı ikonlar
   - Carousel ve tab geçişleri
========================================================= */
body {
    background: #ffffff;
}

.aq-hero-area,
.aq-soft-block,
.aq-footer,
.aq-product-image,
.aq-cart-empty {
    background-image: none;
}

.aq-hero-area {
    background: #ffffff;
}

.aq-soft-block {
    background: #f8fbfc;
    border-top: 1px solid #edf3f6;
    border-bottom: 1px solid #edf3f6;
}

.aq-footer {
    background: #f5f7f9;
}

.aq-product-section {
    padding: 44px 0 52px;
}

.aq-carousel-wrap {
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e8eef3;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.035);
}

.aq-products-viewport {
    overflow: hidden;
    padding: 2px 2px 8px;
}

.aq-products-track {
    display: flex;
    gap: 16px;
    align-items: stretch;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.aq-products-track .aq-product-card {
    flex: 0 0 calc((100% - 48px) / 4);
}

.aq-product-grid {
    gap: 16px;
}

.aq-product-card {
    border-radius: 15px;
    border: 1px solid #e8eef3;
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(17, 24, 39, 0.032);
}

.aq-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(7, 152, 189, 0.24);
    box-shadow: 0 15px 34px rgba(17, 24, 39, 0.065);
}

.aq-product-image {
    height: 194px;
    background: #f8fafc;
}

.aq-product-image img {
    object-fit: cover;
}

.aq-product-info {
    padding: 12px 12px 13px;
}

.aq-product-cat {
    min-height: 20px;
    padding: 0 7px;
    background: #edf8fb;
    color: var(--aq-blue-dark);
    font-size: 9px;
}

.aq-product-info h3 {
    min-height: 38px;
    margin-top: 8px;
    font-size: 12.2px;
    line-height: 1.45;
    letter-spacing: -0.08px;
}

.aq-product-bottom {
    min-height: 34px;
    margin-top: 11px;
    padding-top: 10px;
    gap: 8px;
}

.aq-price strong {
    font-size: 14.4px;
}

.aq-price del {
    font-size: 10.6px;
}

.aq-fav-btn,
.aq-add-cart,
.aq-small-arrows button,
.aq-carousel-arrow,
.aq-footer-social a,
.aq-mini-product a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.aq-fav-btn i,
.aq-add-cart i,
.aq-small-arrows button i,
.aq-carousel-arrow i,
.aq-footer-social a i,
.aq-mini-product a i {
    display: block;
    line-height: 1;
    margin: 0;
    transform: none;
}

.aq-fav-btn {
    width: 33px;
    height: 33px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f2937;
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.055);
}

.aq-fav-btn i {
    font-size: 14px;
}

.aq-fav-btn:hover,
.aq-fav-btn.is-active {
    background: #ffffff;
    color: #e11d48;
    border-color: rgba(225, 29, 72, 0.24);
    transform: translateY(-1px);
}

.aq-add-cart {
    width: 34px;
    min-width: 34px;
    height: 34px;
    background: #0798bd;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(7, 152, 189, 0.16);
}

.aq-add-cart i {
    font-size: 15px;
}

.aq-add-cart:hover,
.aq-add-cart.is-added {
    background: #056f8d;
    transform: translateY(-2px);
    box-shadow: 0 11px 20px rgba(7, 152, 189, 0.22);
}

.aq-badge {
    background: #e30613;
    box-shadow: 0 7px 16px rgba(227, 6, 19, 0.14);
}

.aq-category-section {
    background: #ffffff;
}

.aq-category-track {
    gap: 16px;
}

.aq-category-card span {
    background: #ffffff;
    border: 1px solid #e6eef3;
    box-shadow: 0 7px 18px rgba(17, 24, 39, 0.04);
}

.aq-category-card:hover span {
    border-color: rgba(7, 152, 189, 0.28);
    box-shadow: 0 12px 26px rgba(7, 152, 189, 0.10);
}

.aq-tabs button {
    transition: background var(--aq-transition), border-color var(--aq-transition), color var(--aq-transition), transform var(--aq-transition);
}

.aq-tabs button:hover {
    transform: translateY(-1px);
    border-color: rgba(7, 152, 189, 0.28);
    color: var(--aq-blue-dark);
}

.aq-tab-products .aq-product-card {
    transition: opacity 220ms ease, transform 220ms ease, box-shadow var(--aq-transition), border-color var(--aq-transition);
}

.aq-tab-products .aq-product-card.is-hidden {
    display: none;
}

.aq-carousel-arrow {
    background: #ffffff;
    color: var(--aq-blue-dark);
    border-color: #dfe8ee;
}

.aq-carousel-arrow:hover,
.aq-small-arrows button:hover {
    background: var(--aq-blue);
    border-color: var(--aq-blue);
    color: #ffffff;
}

@media (max-width: 1240px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((100% - 32px) / 3);
    }
}

@media (max-width: 991px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 767px) {
    .aq-carousel-wrap {
        padding: 12px;
    }

    .aq-products-track .aq-product-card {
        flex-basis: 84%;
    }

    .aq-product-image {
        height: 208px;
    }
}

@media (max-width: 480px) {
    .aq-product-section {
        padding: 36px 0 44px;
    }

    .aq-products-track .aq-product-card {
        flex-basis: 88%;
    }
}

/* BLOG VE SON SLIDER DÜZELTMELERİ */
.aq-category-viewport,
.aq-products-viewport {
    overflow: hidden;
    position: relative;
}

.aq-category-track,
.aq-products-track {
    width: max-content;
    will-change: transform;
}

.aq-category-card[data-aq-clone="true"],
.aq-product-card[data-aq-clone="true"] {
    user-select: none;
}

.aq-blog-section {
    padding: 52px 0 64px;
    background: #ffffff;
    border-top: 1px solid #eef3f6;
}

.aq-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.aq-blog-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.04);
    transition: transform var(--aq-transition), box-shadow var(--aq-transition), border-color var(--aq-transition);
}

.aq-blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(7, 152, 189, 0.22);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
}

.aq-blog-image {
    display: block;
    height: 210px;
    overflow: hidden;
    background: #f7fafc;
}

.aq-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 620ms ease;
}

.aq-blog-card:hover .aq-blog-image img {
    transform: scale(1.045);
}

.aq-blog-content {
    padding: 18px 18px 20px;
}

.aq-blog-content > span {
    display: inline-flex;
    min-height: 22px;
    padding: 0 8px;
    align-items: center;
    border-radius: 999px;
    background: var(--aq-blue-light);
    color: var(--aq-blue-dark);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.aq-blog-content h3 {
    margin: 11px 0 0;
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: -0.25px;
}

.aq-blog-content h3 a:hover {
    color: var(--aq-blue-dark);
}

.aq-blog-content p {
    margin: 10px 0 0;
    color: #738091;
    font-size: 12.5px;
    line-height: 1.62;
}

.aq-blog-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--aq-blue-dark);
    font-size: 11.5px;
    font-weight: 700;
}

.aq-blog-link:hover {
    color: var(--aq-blue);
}

@media (max-width: 991px) {
    .aq-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .aq-blog-section {
        padding: 40px 0 48px;
    }

    .aq-blog-grid {
        grid-template-columns: 1fr;
    }

    .aq-blog-image {
        height: 205px;
    }
}

/* =========================================================
   AquaShop V3 - Premium Ürün Kartları ve 5'li Carousel
   Mevcut yapıyı bozmadan en alta eklenen güncelleme
========================================================= */
.aq-carousel-wrap {
    padding: 14px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.055);
}

.aq-products-track {
    gap: 14px;
}

.aq-products-track .aq-product-card {
    flex: 0 0 calc((100% - 56px) / 5);
}

.aq-product-card {
    position: relative;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.96);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
    overflow: hidden;
    isolation: isolate;
}

.aq-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(7, 152, 189, 0.045), rgba(255, 255, 255, 0) 34%);
    opacity: 0;
    transition: opacity 240ms ease;
}

.aq-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 152, 189, 0.26);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.085);
}

.aq-product-card:hover::before {
    opacity: 1;
}

.aq-product-image {
    height: 188px;
    margin: 10px 10px 0;
    border-radius: 16px;
    background: #f7fafc;
    border: 1px solid rgba(238, 242, 246, 0.95);
}

.aq-product-image img {
    border-radius: 16px;
}

.aq-product-info {
    position: relative;
    z-index: 1;
    padding: 12px 13px 14px;
}

.aq-product-cat {
    min-height: 22px;
    padding: 0 8px;
    background: #eef9fc;
    color: #056f8d;
    border: 1px solid rgba(7, 152, 189, 0.10);
    font-size: 9px;
    letter-spacing: 0.35px;
}

.aq-product-info h3 {
    min-height: 41px;
    margin-top: 9px;
    color: #182231;
    font-size: 12.4px;
    font-weight: 650;
    line-height: 1.45;
    letter-spacing: -0.12px;
}

.aq-stars {
    min-height: 16px;
    margin-top: 7px;
    color: #f59e0b;
    font-size: 10px;
}

.aq-stars em {
    color: #7b8794;
    font-size: 10px;
}

.aq-product-bottom {
    margin-top: 10px;
    padding-top: 11px;
    border-top: 1px solid #eef3f7;
}

.aq-price strong {
    color: #111827;
    font-size: 14.5px;
    font-weight: 750;
}

.aq-price del {
    color: #a2acb8;
    font-size: 10.5px;
}

.aq-fav-btn {
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.97);
    color: #334155;
    border: 1px solid rgba(226, 232, 240, 0.94);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.aq-fav-btn i {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-size: 14px;
}

.aq-fav-btn:hover,
.aq-fav-btn.is-active {
    background: #ffffff;
    color: #e30613;
    border-color: rgba(227, 6, 19, 0.22);
    transform: translateY(-1px);
}

.aq-add-cart {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 13px;
    background: #0798bd;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(7, 152, 189, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.aq-add-cart i {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-size: 16px;
}

.aq-add-cart:hover,
.aq-add-cart.is-added {
    background: #056f8d;
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(7, 152, 189, 0.24);
}

.aq-badge {
    left: 12px;
    top: 12px;
    min-width: 44px;
    min-height: 22px;
    background: #e30613;
    border: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: 0 9px 18px rgba(227, 6, 19, 0.16);
    font-size: 9.5px;
}

.aq-carousel-arrow {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-color: #dfe8ef;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.aq-products-prev {
    left: -4px;
}

.aq-products-next {
    right: -4px;
}

@media (max-width: 1440px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((100% - 42px) / 4);
    }
}

@media (max-width: 1240px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((100% - 28px) / 3);
    }
}

@media (max-width: 991px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((100% - 14px) / 2);
    }

    .aq-product-image {
        height: 202px;
    }
}

@media (max-width: 767px) {
    .aq-carousel-wrap {
        padding: 12px;
        border-radius: 21px;
    }

    .aq-products-track .aq-product-card {
        flex-basis: 84%;
    }
}

@media (max-width: 480px) {
    .aq-products-track .aq-product-card {
        flex-basis: 88%;
    }

    .aq-product-image {
        height: 198px;
    }
}

/* =========================================================
   AquaShop V4 - 5 Ürün Görünüm Düzeltmesi
   Mevcut yapıyı bozmadan en alta eklenecek
   - Bugünün Öne Çıkanları
   - En Çok Sevilen Ürünler
   - Yeni Eklenen Ürünler
========================================================= */

/* Carousel alanlarını biraz daha zarif ve düzgün hale getir */
.aq-carousel-wrap {
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e6edf3;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
    overflow: visible;
}

/* İç viewport taşmayı gizler ama kart ölçüsünü bozmaz */
.aq-products-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0 0 6px;
}

/* Ürün track yapısı */
.aq-products-track {
    display: flex;
    align-items: stretch;
    gap: 14px;
    width: max-content;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* MASAÜSTÜ: 5 ürün yan yana */
.aq-products-track .aq-product-card {
    flex: 0 0 calc((100vw - 140px) / 5);
    max-width: calc((var(--aq-container) - 56px) / 5);
}

/* Çok geniş ekranlarda container ölçüsüne göre sabit dengeli 5'li görünüm */
@media (min-width: 1561px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((var(--aq-container) - 56px) / 5);
        max-width: calc((var(--aq-container) - 56px) / 5);
    }
}

/* 1366 / 1440 gibi ekranlarda yine 5 ürün korunsun */
@media (max-width: 1560px) and (min-width: 1200px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((100vw - 112px) / 5);
        max-width: calc((100vw - 112px) / 5);
    }
}

/* Laptop dar ekran: 4 ürün */
@media (max-width: 1199px) and (min-width: 992px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((100vw - 92px) / 4);
        max-width: calc((100vw - 92px) / 4);
    }
}

/* Tablet: 3 ürün */
@media (max-width: 991px) and (min-width: 768px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((100vw - 72px) / 3);
        max-width: calc((100vw - 72px) / 3);
    }
}

/* Mobil geniş: 2 ürün */
@media (max-width: 767px) and (min-width: 521px) {
    .aq-products-track .aq-product-card {
        flex-basis: calc((100vw - 54px) / 2);
        max-width: calc((100vw - 54px) / 2);
    }
}

/* Küçük mobil: tek ürün */
@media (max-width: 520px) {
    .aq-products-track .aq-product-card {
        flex-basis: 86vw;
        max-width: 86vw;
    }
}

/* Premium kart görünümünü daha zarif yap */
.aq-product-card {
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e6edf3;
    box-shadow: 0 9px 24px rgba(15, 23, 42, 0.045);
    overflow: hidden;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.aq-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 152, 189, 0.26);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

/* Ürün görseli daha dengeli */
.aq-product-image {
    height: 180px;
    margin: 10px 10px 0;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #eef3f7;
    overflow: hidden;
}

.aq-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Kart içi yazılar daha zarif */
.aq-product-info {
    padding: 12px 12px 13px;
}

.aq-product-cat {
    min-height: 21px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eef9fc;
    color: #056f8d;
    border: 1px solid rgba(7, 152, 189, 0.10);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25px;
}

.aq-product-info h3 {
    min-height: 39px;
    margin: 8px 0 0;
    color: #17202b;
    font-size: 12.2px;
    font-weight: 650;
    line-height: 1.45;
    letter-spacing: -0.08px;
}

.aq-stars {
    min-height: 16px;
    margin-top: 7px;
    color: #f59e0b;
    font-size: 10px;
}

.aq-stars em {
    color: #768292;
    font-size: 10px;
    font-weight: 600;
}

/* Alt fiyat/sepet alanı */
.aq-product-bottom {
    min-height: 36px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eef3f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.aq-price strong {
    color: #111827;
    font-size: 14.2px;
    font-weight: 750;
    letter-spacing: -0.2px;
}

.aq-price del {
    color: #9aa5b2;
    font-size: 10.5px;
}

/* Favori butonu tam ortalı */
.aq-fav-btn {
    right: 12px;
    top: 12px;
    width: 31px;
    height: 31px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    color: #334155;
    border: 1px solid #e5edf3;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.065);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.aq-fav-btn i {
    display: block;
    width: auto;
    height: auto;
    line-height: 1 !important;
    margin: 0 !important;
    font-size: 13.5px;
}

.aq-fav-btn:hover,
.aq-fav-btn.is-active {
    background: #ffffff;
    color: #e30613;
    border-color: rgba(227, 6, 19, 0.22);
}

/* Sepet butonu daha modern */
.aq-add-cart {
    width: 35px;
    min-width: 35px;
    height: 35px;
    border-radius: 12px;
    background: #0798bd;
    color: #ffffff;
    box-shadow: 0 9px 18px rgba(7, 152, 189, 0.18);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.aq-add-cart i {
    display: block;
    line-height: 1 !important;
    margin: 0 !important;
    font-size: 15.5px;
}

.aq-add-cart:hover,
.aq-add-cart.is-added {
    background: #056f8d;
    transform: translateY(-2px);
    box-shadow: 0 13px 22px rgba(7, 152, 189, 0.24);
}

/* Ok butonları ürün kartlarını ezmesin */
.aq-products-prev {
    left: -7px;
}

.aq-products-next {
    right: -7px;
}

.aq-carousel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #ffffff;
    color: #056f8d;
    border: 1px solid #dfe8ef;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.aq-carousel-arrow i {
    line-height: 1;
    font-size: 15px;
}

/* Rozet daha küçük ve zarif */
.aq-badge {
    left: 12px;
    top: 12px;
    min-width: 42px;
    min-height: 21px;
    padding: 0 8px;
    border-radius: 999px;
    background: #e30613;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.66);
    box-shadow: 0 8px 17px rgba(227, 6, 19, 0.15);
    font-size: 9.3px;
    font-weight: 700;
}

/* Klonlanan carousel kartlarında tıklama ve görünüm düzgün kalsın */
.aq-product-card[data-aq-clone="true"] {
    user-select: none;
}

/* =========================================================
   AquaShop V5 - Tam Hizalı Carousel + Font + Footer İletişim
   Mevcut yapıyı bozmadan en alta eklenecek
========================================================= */

/* Genel fontları bir tık büyütme */
body {
    font-size: 15px;
}

.aq-header-mini-links a,
.aq-header-trust,
.aq-main-menu a,
.aq-category-menu-btn {
    font-size: 12.9px;
}

.aq-search input {
    font-size: 13px;
}

.aq-section-title-row span,
.aq-centered-head span {
    font-size: 11px;
}

.aq-section-title-row h2,
.aq-centered-head h2 {
    font-size: clamp(25px, 2.15vw, 34px);
}

.aq-section-title-row p {
    font-size: 13.6px;
}

.aq-product-info h3 {
    font-size: 13px;
}

.aq-product-cat {
    font-size: 9.6px;
}

.aq-price strong {
    font-size: 15.2px;
}

.aq-price del {
    font-size: 11.2px;
}

.aq-stars,
.aq-stars em {
    font-size: 10.7px;
}

.aq-category-card strong {
    font-size: 12.7px;
}

.aq-category-card small {
    font-size: 11px;
}

/* Carousel ana kutusu */
.aq-carousel-wrap {
    position: relative;
    padding: 14px 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e6edf3;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

/* Okların kart üstüne bindirmesini daha kontrollü yap */
.aq-products-prev {
    left: 8px;
}

.aq-products-next {
    right: 8px;
}

.aq-carousel-arrow {
    width: 36px;
    height: 36px;
    z-index: 8;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #056f8d;
    border: 1px solid #dfe8ef;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(8px);
}

/* Ürün viewport artık oklar için içeriden nefes bırakıyor */
.aq-products-viewport {
    width: 100%;
    overflow: hidden;
    padding: 4px 28px 8px;
}

/* Track genişliği JS tarafından hesaplanacak */
.aq-products-track {
    display: flex;
    align-items: stretch;
    gap: 14px;
    width: max-content;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* Eski tüm responsive flex-basis kurallarını JS yönetecek */
.aq-products-track .aq-product-card {
    flex: 0 0 var(--aq-card-width, 260px) !important;
    width: var(--aq-card-width, 260px) !important;
    max-width: var(--aq-card-width, 260px) !important;
}

/* Ürün kartı premium görünüm */
.aq-product-card {
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e6edf3;
    box-shadow: 0 9px 24px rgba(15, 23, 42, 0.045);
    overflow: hidden;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.aq-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 152, 189, 0.26);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.aq-product-image {
    height: 182px;
    margin: 10px 10px 0;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #eef3f7;
    overflow: hidden;
}

.aq-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.aq-product-info {
    padding: 12px 12px 13px;
}

.aq-product-bottom {
    min-height: 38px;
    margin-top: 11px;
    padding-top: 11px;
    border-top: 1px solid #eef3f7;
}

/* Favori ve sepet ikonları tam ortalı */
.aq-fav-btn,
.aq-add-cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.aq-fav-btn i,
.aq-add-cart i {
    display: block;
    line-height: 1 !important;
    margin: 0 !important;
}

.aq-fav-btn {
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    color: #334155;
    border: 1px solid #e5edf3;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.065);
}

.aq-fav-btn i {
    font-size: 14px;
}

.aq-add-cart {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #0798bd;
    color: #ffffff;
    box-shadow: 0 9px 18px rgba(7, 152, 189, 0.18);
}

.aq-add-cart i {
    font-size: 16px;
}

/* Kategori slider kırpılma düzeltmesi */
.aq-category-viewport {
    width: 100%;
    overflow: hidden;
    padding: 4px 40px 12px;
}

.aq-category-track {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: max-content;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.aq-category-card {
    flex: 0 0 var(--aq-category-card-width, 122px) !important;
    width: var(--aq-category-card-width, 122px) !important;
    min-width: var(--aq-category-card-width, 122px) !important;
}

/* Kategori okları */
.aq-small-arrows button {
    width: 36px;
    height: 36px;
}

/* Footer iletişim alanı */
.aq-footer-contact {
    margin-top: 18px;
    display: grid;
    gap: 9px;
}

.aq-footer-contact-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: flex-start;
}

.aq-footer-contact-item i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e1e8ee;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.028);
}

.aq-footer-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aq-footer-contact-item strong {
    color: #17202b;
    font-size: 12.7px;
    font-weight: 700;
}

.aq-footer-contact-item span,
.aq-footer-contact-item a {
    color: var(--aq-footer-muted);
    font-size: 12.5px;
    line-height: 1.45;
}

.aq-footer-contact-item a:hover {
    color: var(--aq-blue-dark);
}

/* Mobil düzenler */
@media (max-width: 991px) {
    body {
        font-size: 14.5px;
    }

    .aq-products-viewport {
        padding-left: 22px;
        padding-right: 22px;
    }

    .aq-category-viewport {
        padding-left: 28px;
        padding-right: 28px;
    }

    .aq-product-image {
        height: 190px;
    }
}

@media (max-width: 767px) {
    .aq-carousel-wrap {
        padding: 12px 10px;
        border-radius: 20px;
    }

    .aq-products-viewport {
        padding-left: 18px;
        padding-right: 18px;
    }

    .aq-products-prev {
        left: 2px;
    }

    .aq-products-next {
        right: 2px;
    }

    .aq-category-viewport {
        padding-left: 18px;
        padding-right: 18px;
    }

    .aq-product-image {
        height: 188px;
    }

    .aq-section-title-row h2,
    .aq-centered-head h2 {
        font-size: 27px;
    }
}

@media (max-width: 520px) {
    .aq-products-viewport {
        padding-left: 14px;
        padding-right: 14px;
    }

    .aq-product-image {
        height: 186px;
    }

    .aq-category-viewport {
        padding-left: 12px;
        padding-right: 12px;
    }

    .aq-category-card {
        --aq-category-card-width: 98px;
    }

    .aq-category-card span {
        width: 68px;
        height: 68px;
    }

    .aq-category-card strong {
        font-size: 11.2px;
    }

    .aq-category-card small {
        font-size: 10.4px;
    }
}

/* =========================================================
   AquaShop V5 - Kesin Carousel Ölçü Düzeltmesi + Font + Footer
   Mevcut yapıyı bozmadan en alta eklenir.
========================================================= */

/* Genel yazıları bir tık büyüt */
body {
    font-size: 15px;
}

.aq-section-title-row span,
.aq-centered-head span {
    font-size: 11px;
}

.aq-section-title-row h2,
.aq-centered-head h2 {
    font-size: clamp(26px, 2.15vw, 36px);
}

.aq-section-title-row p {
    font-size: 14px;
}

.aq-main-menu a,
.aq-category-menu-btn {
    font-size: 13px;
}

.aq-header-action {
    font-size: 12.5px;
}

.aq-view-all {
    font-size: 12px;
}

/* Carousel alanı artık JS tarafından piksel olarak hesaplanacak */
.aq-carousel-wrap {
    position: relative;
    overflow: visible;
    padding: 14px 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e6edf3;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
}

.aq-products-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0 0 8px;
}

.aq-products-track {
    display: flex;
    align-items: stretch;
    gap: var(--aq-carousel-gap, 14px) !important;
    width: auto !important;
    max-width: none !important;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* Eski tüm breakpoint hesaplarını ezip kartı JS’in hesapladığı genişliğe sabitliyoruz */
.aq-products-track .aq-product-card {
    flex: 0 0 var(--aq-card-width, 220px) !important;
    width: var(--aq-card-width, 220px) !important;
    min-width: var(--aq-card-width, 220px) !important;
    max-width: var(--aq-card-width, 220px) !important;
}

/* Premium ürün kartı */
.aq-product-card {
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 9px 24px rgba(15, 23, 42, 0.045);
    overflow: hidden;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.aq-product-card::before {
    display: none;
}

.aq-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 152, 189, 0.28);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.aq-product-image {
    height: 184px;
    margin: 10px 10px 0;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #eef3f7;
    overflow: hidden;
}

.aq-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.aq-product-info {
    padding: 13px 13px 14px;
}

.aq-product-cat {
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eef9fc;
    color: #056f8d;
    border: 1px solid rgba(7, 152, 189, 0.12);
    font-size: 9.6px;
    font-weight: 700;
    letter-spacing: 0.25px;
}

.aq-product-info h3 {
    min-height: 42px;
    margin: 9px 0 0;
    color: #17202b;
    font-size: 13.2px;
    font-weight: 650;
    line-height: 1.45;
    letter-spacing: -0.08px;
}

.aq-stars {
    min-height: 17px;
    margin-top: 8px;
    color: #f59e0b;
    font-size: 10.8px;
}

.aq-stars em {
    color: #768292;
    font-size: 10.8px;
    font-weight: 600;
}

.aq-product-bottom {
    min-height: 38px;
    margin-top: 11px;
    padding-top: 11px;
    border-top: 1px solid #eef3f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
}

.aq-price strong {
    color: #111827;
    font-size: 15.6px;
    font-weight: 750;
    letter-spacing: -0.2px;
}

.aq-price del {
    color: #9aa5b2;
    font-size: 11.2px;
}

/* Favori butonu tam ortalı */
.aq-fav-btn {
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    color: #334155;
    border: 1px solid #e5edf3;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.065);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.aq-fav-btn i {
    display: block;
    width: auto;
    height: auto;
    line-height: 1 !important;
    margin: 0 !important;
    font-size: 14.5px;
}

.aq-fav-btn:hover,
.aq-fav-btn.is-active {
    background: #ffffff;
    color: #e30613;
    border-color: rgba(227, 6, 19, 0.24);
}

/* Sepet butonu daha modern */
.aq-add-cart {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #0798bd;
    color: #ffffff;
    box-shadow: 0 9px 18px rgba(7, 152, 189, 0.18);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.aq-add-cart i {
    display: block;
    line-height: 1 !important;
    margin: 0 !important;
    font-size: 16px;
}

.aq-add-cart:hover,
.aq-add-cart.is-added {
    background: #056f8d;
    transform: translateY(-2px);
    box-shadow: 0 13px 22px rgba(7, 152, 189, 0.24);
}

/* Rozet daha zarif */
.aq-badge {
    left: 12px;
    top: 12px;
    min-width: 42px;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #e30613;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.66);
    box-shadow: 0 8px 17px rgba(227, 6, 19, 0.15);
    font-size: 9.8px;
    font-weight: 700;
}

/* Oklar kartı kesmesin */
.aq-products-prev {
    left: -2px;
}

.aq-products-next {
    right: -2px;
}

.aq-carousel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #ffffff;
    color: #056f8d;
    border: 1px solid #dfe8ef;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 8;
}

.aq-carousel-arrow i {
    line-height: 1;
    font-size: 15px;
}

/* Kategori slider da aynı mantıkla kesilmesin */
.aq-category-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.aq-category-track {
    display: flex;
    align-items: flex-start;
    gap: var(--aq-category-gap, 16px) !important;
    width: auto !important;
    max-width: none !important;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.aq-category-card {
    flex: 0 0 var(--aq-category-card-width, 122px) !important;
    width: var(--aq-category-card-width, 122px) !important;
    min-width: var(--aq-category-card-width, 122px) !important;
    max-width: var(--aq-category-card-width, 122px) !important;
}

.aq-category-card strong {
    font-size: 12.6px;
}

.aq-category-card small {
    font-size: 11px;
}

/* Footer iletişim bilgileri */
.aq-footer-contact {
    margin-top: 17px;
    display: grid;
    gap: 9px;
}

.aq-footer-contact a,
.aq-footer-contact span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #647182;
    font-size: 13px;
    line-height: 1.5;
}

.aq-footer-contact i {
    width: 18px;
    min-width: 18px;
    color: var(--aq-blue-dark);
    font-size: 15px;
    line-height: 1.45;
}

.aq-footer-brand p {
    font-size: 13px;
}

/* Mobil düzen */
@media (max-width: 991px) {
    body {
        font-size: 14.5px;
    }

    .aq-product-image {
        height: 190px;
    }

    .aq-products-prev {
        left: -4px;
    }

    .aq-products-next {
        right: -4px;
    }
}

@media (max-width: 767px) {
    .aq-carousel-wrap {
        padding: 12px;
        border-radius: 20px;
        overflow: visible;
    }

    .aq-product-image {
        height: 185px;
        margin: 9px 9px 0;
    }

    .aq-product-info h3 {
        font-size: 13px;
    }

    .aq-section-title-row h2,
    .aq-centered-head h2 {
        font-size: 27px;
    }

    .aq-section-title-row p {
        font-size: 13.8px;
    }

    .aq-products-prev {
        left: -6px;
    }

    .aq-products-next {
        right: -6px;
    }
}

@media (max-width: 520px) {
    .aq-product-image {
        height: 190px;
    }

    .aq-category-card strong {
        font-size: 11.5px;
    }

    .aq-category-card small {
        font-size: 10.5px;
    }
}


/* =========================================================
   AquaShop V6 - Sorunsuz Hizalama Paketi
   - Ürün carousel tam oturur, yarım kart göstermez
   - Kategori carousel tam oturur, kaymış görünmez
   - Blog 4 kart
   - Footer toparlama
   Bu blok mevcut kodu bozmadan en sonda tüm eski ölçüleri ezer.
========================================================= */

html,
body {
    overflow-x: hidden;
}

body {
    font-size: 15px;
    background: #ffffff;
}

.aq-container {
    width: min(100% - 44px, var(--aq-container));
}

.aq-section-title-row span,
.aq-centered-head span {
    font-size: 11px;
}

.aq-section-title-row h2,
.aq-centered-head h2 {
    font-size: clamp(26px, 2.1vw, 35px);
}

.aq-section-title-row p {
    font-size: 14px;
}

.aq-main-menu a,
.aq-category-menu-btn {
    font-size: 13px;
}

.aq-view-all {
    font-size: 12px;
}

/* ÜRÜN CAROUSEL - KESİN HİZALAMA */
.aq-carousel-wrap {
    position: relative !important;
    padding: 16px 0 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    border: 1px solid #e6edf3 !important;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.055) !important;
    overflow: visible !important;
}

.aq-products-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

.aq-products-track {
    display: flex !important;
    align-items: stretch !important;
    gap: var(--aq-carousel-gap, 16px) !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.aq-products-track .aq-product-card {
    flex: 0 0 var(--aq-card-width, 240px) !important;
    width: var(--aq-card-width, 240px) !important;
    min-width: var(--aq-card-width, 240px) !important;
    max-width: var(--aq-card-width, 240px) !important;
}

/* Ürün kartı premium ama sade */
.aq-product-card {
    position: relative;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid #e6edf3 !important;
    box-shadow: 0 9px 24px rgba(15, 23, 42, 0.045) !important;
    overflow: hidden !important;
    isolation: isolate;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease !important;
}

.aq-product-card::before {
    display: none !important;
}

.aq-product-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(7, 152, 189, 0.28) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
}

.aq-product-image {
    height: 184px !important;
    margin: 10px 10px 0 !important;
    border-radius: 15px !important;
    background: #f8fafc !important;
    border: 1px solid #eef3f7 !important;
    overflow: hidden !important;
}

.aq-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 15px !important;
}

.aq-product-info {
    padding: 13px 13px 14px !important;
}

.aq-product-cat {
    min-height: 22px !important;
    padding: 0 8px !important;
    border-radius: 999px !important;
    background: #eef9fc !important;
    color: #056f8d !important;
    border: 1px solid rgba(7, 152, 189, 0.12) !important;
    font-size: 9.7px !important;
    font-weight: 700 !important;
    letter-spacing: 0.25px !important;
}

.aq-product-info h3 {
    min-height: 42px !important;
    margin: 9px 0 0 !important;
    color: #17202b !important;
    font-size: 13.2px !important;
    font-weight: 650 !important;
    line-height: 1.45 !important;
    letter-spacing: -0.08px !important;
}

.aq-stars {
    min-height: 17px !important;
    margin-top: 8px !important;
    color: #f59e0b !important;
    font-size: 10.8px !important;
}

.aq-stars em {
    color: #768292 !important;
    font-size: 10.8px !important;
    font-weight: 600 !important;
}

.aq-product-bottom {
    min-height: 38px !important;
    margin-top: 11px !important;
    padding-top: 11px !important;
    border-top: 1px solid #eef3f7 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 9px !important;
}

.aq-price strong {
    color: #111827 !important;
    font-size: 15.6px !important;
    font-weight: 750 !important;
    letter-spacing: -0.2px !important;
}

.aq-price del {
    color: #9aa5b2 !important;
    font-size: 11.2px !important;
}

/* İkonlar */
.aq-fav-btn,
.aq-add-cart,
.aq-carousel-arrow,
.aq-small-arrows button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.aq-fav-btn i,
.aq-add-cart i,
.aq-carousel-arrow i,
.aq-small-arrows button i {
    display: block !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.aq-fav-btn {
    right: 12px !important;
    top: 12px !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: #334155 !important;
    border: 1px solid #e5edf3 !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.065) !important;
}

.aq-fav-btn i {
    font-size: 14.5px !important;
}

.aq-fav-btn:hover,
.aq-fav-btn.is-active {
    background: #ffffff !important;
    color: #e30613 !important;
    border-color: rgba(227, 6, 19, 0.24) !important;
}

.aq-add-cart {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
    background: #0798bd !important;
    color: #ffffff !important;
    box-shadow: 0 9px 18px rgba(7, 152, 189, 0.18) !important;
}

.aq-add-cart i {
    font-size: 16px !important;
}

.aq-add-cart:hover,
.aq-add-cart.is-added {
    background: #056f8d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 13px 22px rgba(7, 152, 189, 0.24) !important;
}

.aq-badge {
    left: 12px !important;
    top: 12px !important;
    min-width: 42px !important;
    min-height: 22px !important;
    padding: 0 8px !important;
    border-radius: 999px !important;
    background: #e30613 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.66) !important;
    box-shadow: 0 8px 17px rgba(227, 6, 19, 0.15) !important;
    font-size: 9.8px !important;
    font-weight: 700 !important;
}

/* Carousel okları artık kart ölçüsünü bozmaz */
.aq-products-prev {
    left: -18px !important;
}

.aq-products-next {
    right: -18px !important;
}

.aq-carousel-arrow {
    width: 38px !important;
    height: 38px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: #056f8d !important;
    border: 1px solid #dfe8ef !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10) !important;
    z-index: 9 !important;
    backdrop-filter: blur(8px);
}

.aq-carousel-arrow i {
    font-size: 15px !important;
}

/* KATEGORİ CAROUSEL - TAM HİZALAMA */
.aq-category-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 4px 0 12px !important;
    margin: 0 !important;
    position: relative !important;
}

.aq-category-track {
    display: flex !important;
    align-items: flex-start !important;
    gap: var(--aq-category-gap, 16px) !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.aq-category-card {
    flex: 0 0 var(--aq-category-card-width, 122px) !important;
    width: var(--aq-category-card-width, 122px) !important;
    min-width: var(--aq-category-card-width, 122px) !important;
    max-width: var(--aq-category-card-width, 122px) !important;
}

.aq-category-card span {
    width: 78px !important;
    height: 78px !important;
    margin-inline: auto;
    background: #ffffff !important;
    border: 1px solid #e6eef3 !important;
    box-shadow: 0 7px 18px rgba(17, 24, 39, 0.04) !important;
}

.aq-category-card strong {
    font-size: 12.7px !important;
}

.aq-category-card small {
    font-size: 11px !important;
}

/* BLOG 4 KART */
.aq-blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.aq-blog-card {
    border-radius: 18px !important;
}

.aq-blog-image {
    height: 190px !important;
}

.aq-blog-content h3 {
    font-size: 15.5px !important;
}

.aq-blog-content p {
    font-size: 12.4px !important;
}

/* FOOTER TOPARLAMA */
.aq-footer {
    background: #f5f7f9 !important;
    border-top: 1px solid #e4ebf1 !important;
}

.aq-footer-main-v6,
.aq-footer-main {
    grid-template-columns: 1.35fr 0.72fr 0.78fr 0.86fr 1.05fr !important;
    gap: 28px !important;
    align-items: start !important;
}

.aq-footer-brand p {
    max-width: 390px !important;
    color: #667386 !important;
    font-size: 13px !important;
}

.aq-footer-contact {
    margin-top: 18px !important;
    display: grid !important;
    gap: 10px !important;
}

.aq-footer-contact-item {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: flex-start !important;
}

.aq-footer-contact-item i {
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    border: 1px solid #e1e8ee !important;
    color: #056f8d !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    box-shadow: 0 6px 16px rgba(17, 24, 39, 0.028) !important;
}

.aq-footer-contact-item div {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    min-width: 0 !important;
}

.aq-footer-contact-item strong {
    color: #17202b !important;
    font-size: 12.8px !important;
    font-weight: 700 !important;
}

.aq-footer-contact-item span,
.aq-footer-contact-item a {
    color: var(--aq-footer-muted) !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    word-break: break-word;
}

.aq-footer-contact-item a:hover {
    color: var(--aq-blue-dark) !important;
}

.aq-footer-col h3,
.aq-footer-newsletter h3 {
    font-size: 14px !important;
}

.aq-footer-col a,
.aq-footer-newsletter p,
.aq-footer-newsletter small {
    font-size: 12.7px !important;
}

@media (max-width: 1240px) {
    .aq-footer-main-v6,
    .aq-footer-main {
        grid-template-columns: 1.2fr 1fr 1fr !important;
    }

    .aq-footer-brand,
    .aq-footer-newsletter {
        grid-column: span 3 !important;
    }

    .aq-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 991px) {
    .aq-container {
        width: min(100% - 30px, var(--aq-container));
    }

    .aq-products-prev {
        left: -10px !important;
    }

    .aq-products-next {
        right: -10px !important;
    }

    .aq-product-image {
        height: 190px !important;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14.5px;
    }

    .aq-container {
        width: min(100% - 24px, var(--aq-container));
    }

    .aq-section-title-row h2,
    .aq-centered-head h2 {
        font-size: 27px !important;
    }

    .aq-carousel-wrap {
        padding: 12px 0 !important;
        border-radius: 20px !important;
    }

    .aq-products-prev {
        left: -8px !important;
    }

    .aq-products-next {
        right: -8px !important;
    }

    .aq-carousel-arrow {
        width: 36px !important;
        height: 36px !important;
    }

    .aq-product-image {
        height: 188px !important;
    }

    .aq-blog-grid {
        grid-template-columns: 1fr !important;
    }

    .aq-blog-image {
        height: 205px !important;
    }

    .aq-footer-benefits,
    .aq-footer-main-v6,
    .aq-footer-main {
        grid-template-columns: 1fr !important;
    }

    .aq-footer-brand,
    .aq-footer-newsletter {
        grid-column: auto !important;
    }
}

@media (max-width: 520px) {
    .aq-products-prev {
        left: -6px !important;
    }

    .aq-products-next {
        right: -6px !important;
    }

    .aq-product-image {
        height: 188px !important;
    }

    .aq-category-card span {
        width: 68px !important;
        height: 68px !important;
    }

    .aq-category-card strong {
        font-size: 11.5px !important;
    }

    .aq-category-card small {
        font-size: 10.5px !important;
    }
}


/* =========================================================
   AquaShop V7 - Son İnce Ayar
   - Ürün carousel arka beyaz kutu kaldırıldı
   - Kart aralıkları daraltıldı, daha fazla ürün hissi verildi
   - Hover yukarı kalkma kaldırıldı, üst border kaybolmaz
   - Kategori aralıkları daraltıldı ve tooltip sorunu desteklendi
   - Footer daha düzenli ve zarif hale getirildi
========================================================= */

/* Bölüm içi genel görünüm */
.aq-product-section {
    padding: 42px 0 50px !important;
}

.aq-soft-block {
    background: #f8fbfc !important;
}

/* Ürün carousel arka kutu temizliği: sağ/sol beyaz boşluk yok */
.aq-carousel-wrap {
    position: relative !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.aq-products-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 2px 0 10px !important;
    margin: 0 !important;
}

.aq-products-track {
    display: flex !important;
    align-items: stretch !important;
    gap: var(--aq-carousel-gap, 12px) !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.aq-products-track .aq-product-card {
    flex: 0 0 var(--aq-card-width, 240px) !important;
    width: var(--aq-card-width, 240px) !important;
    min-width: var(--aq-card-width, 240px) !important;
    max-width: var(--aq-card-width, 240px) !important;
}

/* Kart hover artık yukarı kaçmaz: border her zaman görünür */
.aq-product-card {
    border-radius: 17px !important;
    border: 1px solid #e3ebf1 !important;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04) !important;
    overflow: hidden !important;
    transform: none !important;
    transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease !important;
}

.aq-product-card:hover {
    transform: none !important;
    border-color: rgba(7, 152, 189, 0.36) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.075) !important;
}

.aq-product-card::before {
    display: none !important;
}

.aq-product-image {
    height: 176px !important;
    margin: 10px 10px 0 !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    border: 1px solid #edf2f6 !important;
    overflow: hidden !important;
}

.aq-product-image img {
    border-radius: 14px !important;
    transition: transform 420ms ease !important;
}

.aq-product-card:hover .aq-product-image img {
    transform: scale(1.025) !important;
}

.aq-product-info {
    padding: 12px 12px 13px !important;
}

.aq-product-info h3 {
    min-height: 40px !important;
    font-size: 13px !important;
    line-height: 1.42 !important;
}

.aq-product-bottom {
    margin-top: 10px !important;
    padding-top: 10px !important;
}

/* Oklar kartı örtmesin; dışarıda zarif dursun */
.aq-products-prev {
    left: -18px !important;
}

.aq-products-next {
    right: -18px !important;
}

.aq-carousel-arrow,
.aq-small-arrows button {
    width: 36px !important;
    height: 36px !important;
    background: rgba(255,255,255,0.96) !important;
    border: 1px solid #dfe8ef !important;
    color: #056f8d !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08) !important;
    backdrop-filter: blur(8px);
}

.aq-carousel-arrow:hover,
.aq-small-arrows button:hover {
    background: #0798bd !important;
    border-color: #0798bd !important;
    color: #ffffff !important;
}

/* Kategori aralıkları daha sıkı */
.aq-category-section {
    padding: 24px 0 32px !important;
}

.aq-category-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 4px 0 10px !important;
    position: relative !important;
}

.aq-category-track {
    display: flex !important;
    align-items: flex-start !important;
    gap: var(--aq-category-gap, 8px) !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.aq-category-card {
    flex: 0 0 var(--aq-category-card-width, 108px) !important;
    width: var(--aq-category-card-width, 108px) !important;
    min-width: var(--aq-category-card-width, 108px) !important;
    max-width: var(--aq-category-card-width, 108px) !important;
    gap: 6px !important;
}

.aq-category-card span {
    width: 72px !important;
    height: 72px !important;
    border: 1px solid #e6eef3 !important;
    box-shadow: 0 7px 18px rgba(17, 24, 39, 0.038) !important;
}

.aq-category-card:hover span {
    transform: none !important;
    border-color: rgba(7, 152, 189, 0.34) !important;
    box-shadow: 0 11px 24px rgba(7, 152, 189, 0.10) !important;
}

.aq-category-card strong {
    font-size: 12.4px !important;
}

.aq-category-card small {
    font-size: 10.8px !important;
}

/* Tooltip daha güvenilir ve okunaklı */
.aq-floating-tooltip {
    z-index: 10000 !important;
    padding: 8px 11px !important;
    border-radius: 10px !important;
    background: #111827 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.22) !important;
}

/* Blog 4 kart dengesi */
.aq-blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.aq-blog-card:hover {
    transform: none !important;
}

/* Footer toparlama */
.aq-footer {
    background: #f5f7f9 !important;
}

.aq-footer-benefits {
    gap: 12px !important;
    padding: 22px 0 !important;
}

.aq-footer-benefits div {
    min-height: 76px !important;
    padding: 15px !important;
    border-radius: 15px !important;
}

.aq-footer-main,
.aq-footer-main-v6 {
    grid-template-columns: 1.45fr .76fr .82fr .92fr 1.1fr !important;
    gap: 26px !important;
    padding: 42px 0 34px !important;
}

.aq-footer-logo span {
    font-size: 32px !important;
}

.aq-footer-brand p {
    margin-top: 13px !important;
    max-width: 410px !important;
    font-size: 13px !important;
    line-height: 1.62 !important;
}

.aq-footer-contact {
    margin-top: 16px !important;
    display: grid !important;
    gap: 9px !important;
}

.aq-footer-social {
    margin-top: 16px !important;
}

.aq-footer-col h3,
.aq-footer-newsletter h3 {
    margin-bottom: 13px !important;
    font-size: 14px !important;
}

.aq-footer-col a {
    margin-bottom: 8px !important;
    font-size: 12.6px !important;
}

.aq-footer-newsletter p,
.aq-footer-newsletter small {
    font-size: 12.6px !important;
}

@media (max-width: 1440px) {
    .aq-products-prev {
        left: -14px !important;
    }

    .aq-products-next {
        right: -14px !important;
    }
}

@media (max-width: 1240px) {
    .aq-footer-main,
    .aq-footer-main-v6 {
        grid-template-columns: 1.2fr 1fr 1fr !important;
    }

    .aq-footer-brand,
    .aq-footer-newsletter {
        grid-column: span 3 !important;
    }
}

@media (max-width: 991px) {
    .aq-products-prev {
        left: -10px !important;
    }

    .aq-products-next {
        right: -10px !important;
    }

    .aq-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .aq-footer-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {
    .aq-product-section {
        padding: 36px 0 44px !important;
    }

    .aq-products-prev {
        left: -8px !important;
    }

    .aq-products-next {
        right: -8px !important;
    }

    .aq-product-image {
        height: 182px !important;
    }

    .aq-category-card span {
        width: 66px !important;
        height: 66px !important;
    }

    .aq-blog-grid,
    .aq-footer-benefits,
    .aq-footer-main,
    .aq-footer-main-v6 {
        grid-template-columns: 1fr !important;
    }

    .aq-footer-brand,
    .aq-footer-newsletter {
        grid-column: auto !important;
    }
}

@media (max-width: 520px) {
    .aq-products-prev {
        left: -6px !important;
    }

    .aq-products-next {
        right: -6px !important;
    }

    .aq-product-image {
        height: 178px !important;
    }
}

/* =========================================================
   AquaShop V8 - Kesin Hizalı Ürün/Kategori Slider Düzeltmesi
   - Ürün kartları yarım kalmaz
   - Kategori araları daralır
   - Hover border kaybolmaz
   - Mevcut yapıyı bozmadan en alta eklenir
========================================================= */

/* Sayfa yatay taşma yapmasın */
html,
body {
    overflow-x: hidden;
}

/* Ürün carousel dış kutusu artık kart genişliğini bozmaz */
.aq-carousel-wrap {
    position: relative !important;
    overflow: visible !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Ürün viewport net maske alanı */
.aq-products-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ürün track ölçüsü JS tarafından yönetilecek */
.aq-products-track {
    display: flex !important;
    align-items: stretch !important;
    gap: var(--aq-product-gap, 12px) !important;
    width: max-content !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

/* Eski tüm flex/grid ölçülerini kesin eziyoruz */
.aq-products-track .aq-product-card {
    flex: 0 0 var(--aq-product-card-width, 260px) !important;
    width: var(--aq-product-card-width, 260px) !important;
    min-width: var(--aq-product-card-width, 260px) !important;
    max-width: var(--aq-product-card-width, 260px) !important;
}

/* Ürün kartı hover'da yukarı kalkmasın, çizgi kaybolmasın */
.aq-product-card {
    position: relative;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid #e5edf3 !important;
    box-shadow: 0 9px 24px rgba(15, 23, 42, 0.045) !important;
    overflow: hidden !important;
    transform: none !important;
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease !important;
}

.aq-product-card::before {
    display: none !important;
}

.aq-product-card:hover {
    transform: none !important;
    border-color: rgba(7, 152, 189, 0.30) !important;
    box-shadow: 0 15px 36px rgba(15, 23, 42, 0.075) !important;
}

/* Görsel hover efekti sadece görsele gelsin */
.aq-product-card:hover .aq-product-image img {
    transform: scale(1.025) !important;
}

.aq-product-image {
    height: 184px !important;
    margin: 10px 10px 0 !important;
    border-radius: 15px !important;
    background: #f8fafc !important;
    border: 1px solid #eef3f7 !important;
    overflow: hidden !important;
}

.aq-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    transition: transform 360ms ease !important;
}

/* Ürün iç alanı */
.aq-product-info {
    padding: 13px 13px 14px !important;
}

.aq-product-info h3 {
    min-height: 42px !important;
    margin-top: 9px !important;
    font-size: 13.2px !important;
    line-height: 1.45 !important;
}

.aq-product-bottom {
    min-height: 38px !important;
    margin-top: 11px !important;
    padding-top: 11px !important;
}

/* Oklar kartları kesmesin ama alanı da bozmasın */
.aq-carousel-arrow {
    width: 38px !important;
    height: 38px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #056f8d !important;
    border: 1px solid #dfe8ef !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10) !important;
    backdrop-filter: blur(8px);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
}

.aq-products-prev {
    left: -19px !important;
}

.aq-products-next {
    right: -19px !important;
}

/* Favori ve sepet ikonları tam ortalı */
.aq-fav-btn,
.aq-add-cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
}

.aq-fav-btn i,
.aq-add-cart i,
.aq-carousel-arrow i {
    display: block !important;
    line-height: 1 !important;
    margin: 0 !important;
}

/* =========================================================
   Kategori Slider - Aralıkları Daraltma
========================================================= */

.aq-category-section {
    overflow: hidden !important;
}

.aq-category-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
}

.aq-category-track {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: var(--aq-category-gap, 10px) !important;
    width: max-content !important;
    max-width: none !important;
    padding: 4px 0 12px !important;
    margin: 0 !important;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.aq-category-card {
    flex: 0 0 var(--aq-category-card-width, 108px) !important;
    width: var(--aq-category-card-width, 108px) !important;
    min-width: var(--aq-category-card-width, 108px) !important;
    max-width: var(--aq-category-card-width, 108px) !important;
    gap: 5px !important;
}

.aq-category-card span {
    width: 72px !important;
    height: 72px !important;
}

.aq-category-card strong {
    font-size: 12px !important;
}

.aq-category-card small {
    font-size: 10.5px !important;
}

/* Kategori okları */
.aq-small-arrows button {
    width: 38px !important;
    height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.aq-small-arrows button i {
    line-height: 1 !important;
}

/* Mobil düzen */
@media (max-width: 991px) {
    .aq-products-prev {
        left: -13px !important;
    }

    .aq-products-next {
        right: -13px !important;
    }

    .aq-product-image {
        height: 190px !important;
    }

    .aq-category-card {
        --aq-category-card-width: 100px;
    }

    .aq-category-card span {
        width: 68px !important;
        height: 68px !important;
    }
}

@media (max-width: 767px) {
    .aq-products-track {
        gap: var(--aq-product-gap, 10px) !important;
    }

    .aq-products-prev {
        left: -8px !important;
    }

    .aq-products-next {
        right: -8px !important;
    }

    .aq-product-image {
        height: 188px !important;
    }

    .aq-category-track {
        gap: var(--aq-category-gap, 8px) !important;
    }

    .aq-category-card {
        --aq-category-card-width: 92px;
    }

    .aq-category-card span {
        width: 64px !important;
        height: 64px !important;
    }

    .aq-category-card strong {
        font-size: 11px !important;
    }

    .aq-category-card small {
        font-size: 10px !important;
    }
}

@media (max-width: 520px) {
    .aq-product-image {
        height: 186px !important;
    }

    .aq-products-prev {
        left: -6px !important;
    }

    .aq-products-next {
        right: -6px !important;
    }
}

/* =========================================================
   AquaShop Footer Son Toparlama
   - İletişim bilgileri bant şeklinde alta alındı
   - Sağ taraftaki boşluk dengelendi
   - Diğer alanlara dokunmaz
========================================================= */

.aq-footer-main-clean {
    grid-template-columns: 1.25fr 0.85fr 0.85fr 0.95fr 1.25fr !important;
    gap: 34px !important;
    padding: 44px 0 28px !important;
    align-items: flex-start;
}

.aq-footer-main-clean .aq-footer-brand p {
    max-width: 390px;
    margin-top: 15px;
    color: #667386;
    font-size: 13.2px;
    line-height: 1.7;
}

.aq-footer-main-clean .aq-footer-newsletter p {
    max-width: 420px;
    color: #667386;
    font-size: 13.2px;
    line-height: 1.7;
}

.aq-footer-main-clean .aq-footer-newsletter form {
    max-width: 420px;
}

.aq-footer-contact-band {
    margin: 4px 0 28px;
    padding: 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e3ebf1;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.aq-footer-contact-band .aq-footer-contact-item {
    min-height: 76px;
    padding: 13px 14px;
    border-radius: 16px;
    background: #f8fbfc;
    border: 1px solid #edf3f7;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 11px;
    align-items: center;
}

.aq-footer-contact-band .aq-footer-contact-item i {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dfe9ef;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.045);
}

.aq-footer-contact-band .aq-footer-contact-item div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.aq-footer-contact-band .aq-footer-contact-item strong {
    color: #17202b;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
}

.aq-footer-contact-band .aq-footer-contact-item span,
.aq-footer-contact-band .aq-footer-contact-item a {
    color: #697587;
    font-size: 12.8px;
    font-weight: 500;
    line-height: 1.35;
    word-break: break-word;
}

.aq-footer-contact-band .aq-footer-contact-item a:hover {
    color: #056f8d;
}

.aq-footer-bottom {
    border-top: 1px solid #dfe7ed;
}

/* Eski footer contact yapısı kaldıysa görünümü bozmasın */
.aq-footer-brand > .aq-footer-contact {
    display: none !important;
}

@media (max-width: 1240px) {
    .aq-footer-main-clean {
        grid-template-columns: 1.25fr 1fr 1fr !important;
        gap: 28px !important;
    }

    .aq-footer-main-clean .aq-footer-brand {
        grid-column: span 3;
    }

    .aq-footer-main-clean .aq-footer-newsletter {
        grid-column: span 3;
    }

    .aq-footer-contact-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .aq-footer-main-clean {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 36px 0 24px !important;
    }

    .aq-footer-main-clean .aq-footer-brand,
    .aq-footer-main-clean .aq-footer-newsletter {
        grid-column: auto;
    }

    .aq-footer-contact-band {
        grid-template-columns: 1fr;
        padding: 12px;
        border-radius: 18px;
    }

    .aq-footer-contact-band .aq-footer-contact-item {
        min-height: 70px;
        padding: 12px;
    }
}

/* =========================================================
   AquaShop Hero Slider Tam Genişlik Düzenlemesi
   - Sağdaki küçük bannerlar gizlendi
   - Ana slider boydan boya yapıldı
   - Diğer alanlara dokunmaz
========================================================= */

.aq-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

.aq-hero-side {
    display: none !important;
}

.aq-hero-slider {
    width: 100% !important;
    min-height: 470px !important;
    border-radius: 22px !important;
}

.aq-hero-content {
    max-width: 680px !important;
}

.aq-hero-content h1 {
    max-width: 680px !important;
}

@media (max-width: 991px) {
    .aq-hero-slider {
        min-height: 430px !important;
    }
}

@media (max-width: 767px) {
    .aq-hero-slider {
        min-height: 420px !important;
        border-radius: 18px !important;
    }
}

@media (max-width: 520px) {
    .aq-hero-slider {
        min-height: 390px !important;
    }
}

/* =========================================================
   AquaShop Mobil Üst Bilgi Satırı Gizleme
   - Masaüstünde görünür
   - Mobil/tablette gizlenir
   - Diğer alanlara dokunmaz
========================================================= */

@media (max-width: 991px) {
    .aq-header-top {
        display: none !important;
    }
}

/* =========================================================
   AquaShop Mobil Header Boşluk Düzeltmesi
   - Üst mini satır gizlenince header üst bara yapışmasın
========================================================= */

@media (max-width: 991px) {
    .aq-header-main {
        padding-top: 10px !important;
        padding-bottom: 8px !important;
    }

    .aq-header-main-inner {
        min-height: 64px !important;
        align-items: center !important;
    }

    .aq-search {
        margin-top: 4px !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 520px) {
    .aq-header-main {
        padding-top: 12px !important;
        padding-bottom: 9px !important;
    }
}

/* =========================================================
   AquaShop Mobil Ürün Carousel 2'li Görünüm
   - Mobilde kayan ürünler yan yana 2 kart olur
   - Kart içi görsel/yazı dengesi korunur
========================================================= */

@media (max-width: 767px) {
    .aq-products-track {
        gap: 10px !important;
    }

    .aq-product-image {
        height: 150px !important;
        margin: 8px 8px 0 !important;
        border-radius: 13px !important;
    }

    .aq-product-image img {
        border-radius: 13px !important;
    }

    .aq-product-info {
        padding: 10px 9px 11px !important;
    }

    .aq-product-cat {
        min-height: 19px !important;
        padding: 0 6px !important;
        font-size: 8.4px !important;
    }

    .aq-product-info h3 {
        min-height: 38px !important;
        font-size: 11.2px !important;
        line-height: 1.35 !important;
        margin-top: 7px !important;
    }

    .aq-stars {
        margin-top: 6px !important;
        font-size: 9px !important;
    }

    .aq-stars em {
        font-size: 9px !important;
    }

    .aq-product-bottom {
        min-height: 34px !important;
        margin-top: 8px !important;
        padding-top: 8px !important;
    }

    .aq-price strong {
        font-size: 13px !important;
    }

    .aq-price del {
        font-size: 9.5px !important;
    }

    .aq-add-cart {
        width: 32px !important;
        min-width: 32px !important;
        height: 32px !important;
        border-radius: 11px !important;
    }

    .aq-add-cart i {
        font-size: 14px !important;
    }

    .aq-fav-btn {
        width: 30px !important;
        height: 30px !important;
        right: 10px !important;
        top: 10px !important;
    }

    .aq-fav-btn i {
        font-size: 13px !important;
    }

    .aq-badge {
        min-width: 38px !important;
        min-height: 20px !important;
        left: 10px !important;
        top: 10px !important;
        font-size: 8.8px !important;
    }
}

@media (max-width: 420px) {
    .aq-product-image {
        height: 138px !important;
    }

    .aq-product-info h3 {
        font-size: 10.8px !important;
    }

    .aq-price strong {
        font-size: 12.4px !important;
    }
}

/* =========================================================
   AquaShop Hero Slider Temiz Görsel Modu
   - Yazı ve buton yok
   - Sağ banner yok
   - Tam geniş dikdörtgen görsel
   - Görsele tıklanınca yönlendirme
   - Mobil/desktop uyumlu
========================================================= */

.aq-hero-clean-area {
    padding: 28px 0 34px !important;
    background: #ffffff !important;
}

.aq-hero-clean-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

.aq-hero-side {
    display: none !important;
}

.aq-hero-clean-slider {
    position: relative !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    aspect-ratio: 1560 / 430 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #f4f7f9 !important;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08) !important;
    isolation: isolate;
}

/* Eski iç çerçeve/karartma efektini kaldır */
.aq-hero-clean-slider::after,
.aq-hero-clean-slide::before,
.aq-hero-slide::before {
    display: none !important;
}

/* Slide artık direkt tıklanabilir görsel */
.aq-hero-clean-slide {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition:
        opacity 700ms ease,
        visibility 700ms ease,
        transform 1100ms ease !important;
    cursor: pointer;
}

.aq-hero-clean-slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

.aq-hero-clean-slide img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 1 !important;
    transition: transform 900ms ease;
}

.aq-hero-clean-slider:hover .aq-hero-clean-slide.is-active img {
    transform: scale(1.018);
}

/* Eski yazı/buton alanı tamamen gizli */
.aq-hero-content,
.aq-hero-buttons {
    display: none !important;
}

/* Oklar sade ve görsel üstünde kalsın */
.aq-hero-clean-slider .aq-hero-arrow {
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18) !important;
    z-index: 10 !important;
}

.aq-hero-clean-slider .aq-hero-arrow:hover {
    background: rgba(7, 152, 189, 0.88) !important;
    border-color: rgba(7, 152, 189, 0.88) !important;
}

.aq-hero-clean-slider .aq-hero-prev {
    left: 16px !important;
}

.aq-hero-clean-slider .aq-hero-next {
    right: 16px !important;
}

/* Dots sade */
.aq-hero-clean-slider .aq-hero-dots {
    bottom: 18px !important;
    z-index: 10 !important;
}

.aq-hero-clean-slider .aq-hero-dots button {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.58) !important;
}

.aq-hero-clean-slider .aq-hero-dots button.is-active {
    width: 28px !important;
    background: #0798bd !important;
}

/* Tablet */
@media (max-width: 991px) {
    .aq-hero-clean-area {
        padding: 20px 0 28px !important;
    }

    .aq-hero-clean-slider {
        aspect-ratio: 16 / 7 !important;
        border-radius: 20px !important;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .aq-hero-clean-area {
        padding: 16px 0 24px !important;
    }

    .aq-hero-clean-slider {
        aspect-ratio: 16 / 8.2 !important;
        border-radius: 18px !important;
    }

    .aq-hero-clean-slider .aq-hero-arrow {
        width: 34px !important;
        height: 34px !important;
    }

    .aq-hero-clean-slider .aq-hero-prev {
        left: 10px !important;
    }

    .aq-hero-clean-slider .aq-hero-next {
        right: 10px !important;
    }

    .aq-hero-clean-slider .aq-hero-dots {
        bottom: 12px !important;
    }
}

/* Küçük mobil */
@media (max-width: 480px) {
    .aq-hero-clean-slider {
        aspect-ratio: 16 / 9 !important;
        border-radius: 16px !important;
    }
}

/* =========================================================
   AquaShop Kategori Alanı Başlıksız Slider
   - Sadece kategori başlığı/açıklaması kaldırıldı
   - Diğer ürün başlıklarına dokunmaz
========================================================= */

.aq-category-clean-section {
    padding: 28px 0 34px !important;
    background: #ffffff !important;
}

.aq-category-slider-wrap {
    position: relative;
    width: 100%;
    padding: 0 46px;
}

.aq-category-slider-wrap .aq-category-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 4px 0 12px !important;
}

/* Kategori okları sağ/sol ortalı */
.aq-category-side-arrow {
    position: absolute;
    top: 50%;
    z-index: 12;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid #dfe8ef !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: #056f8d !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.aq-category-side-arrow i {
    display: block;
    line-height: 1;
    font-size: 15px;
}

.aq-category-side-arrow:hover {
    background: #0798bd !important;
    border-color: #0798bd !important;
    color: #ffffff !important;
}

.aq-category-side-prev {
    left: 0;
}

.aq-category-side-next {
    right: 0;
}

@media (max-width: 767px) {
    .aq-category-clean-section {
        padding: 22px 0 28px !important;
    }

    .aq-category-slider-wrap {
        padding: 0 34px;
    }

    .aq-category-side-arrow {
        width: 34px !important;
        height: 34px !important;
    }

    .aq-category-side-prev {
        left: -2px;
    }

    .aq-category-side-next {
        right: -2px;
    }
}

/* =========================================================
   AquaShop Kategori Slider Kesin Hizalama + Touch
   - Yarım kategori görünmez
   - Oklar sağ/sol ortalı kalır
   - Mobilde parmakla kaydırma desteklenir
========================================================= */

.aq-category-clean-section {
    padding: 24px 0 30px !important;
    background: #ffffff !important;
    overflow: hidden !important;
}

.aq-category-slider-wrap {
    position: relative !important;
    width: 100% !important;
    padding: 0 46px !important;
    overflow: visible !important;
}

.aq-category-slider-wrap .aq-category-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 4px 0 12px !important;
    margin: 0 !important;
    touch-action: pan-y !important;
}

.aq-category-slider-wrap .aq-category-track {
    display: flex !important;
    align-items: flex-start !important;
    gap: var(--aq-category-gap, 10px) !important;
    width: max-content !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.aq-category-slider-wrap .aq-category-card {
    flex: 0 0 var(--aq-category-card-width, 110px) !important;
    width: var(--aq-category-card-width, 110px) !important;
    min-width: var(--aq-category-card-width, 110px) !important;
    max-width: var(--aq-category-card-width, 110px) !important;
}

.aq-category-slider-wrap .aq-category-card span {
    width: 72px !important;
    height: 72px !important;
}

.aq-category-side-arrow {
    position: absolute !important;
    top: 50% !important;
    z-index: 12 !important;
    width: 38px !important;
    height: 38px !important;
    border: 1px solid #dfe8ef !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: #056f8d !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: translateY(-50%) !important;
    backdrop-filter: blur(8px);
}

.aq-category-side-prev {
    left: 0 !important;
}

.aq-category-side-next {
    right: 0 !important;
}

.aq-category-side-arrow i {
    display: block !important;
    line-height: 1 !important;
}

.aq-category-side-arrow:hover {
    background: #0798bd !important;
    border-color: #0798bd !important;
    color: #ffffff !important;
}

/* Ürün ve kategori sliderlarında dokunmatik kaydırma daha sağlıklı olsun */
.aq-products-viewport,
.aq-category-viewport {
    touch-action: pan-y !important;
}

/* Ürün bölüm başlıklarında açıklama olmayacak */
.aq-product-section .aq-section-title-row p {
    display: none !important;
}

/* Başlık satırı açıklama kalkınca daha sıkı dursun */
.aq-product-section .aq-section-title-row {
    margin-bottom: 18px !important;
}

/* Mobilde bloglar 2'li görünsün */
@media (max-width: 767px) {
    .aq-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .aq-blog-image {
        height: 128px !important;
    }

    .aq-blog-content {
        padding: 12px 11px 14px !important;
    }

    .aq-blog-content > span {
        min-height: 19px !important;
        padding: 0 6px !important;
        font-size: 8px !important;
    }

    .aq-blog-content h3 {
        margin-top: 8px !important;
        font-size: 11.5px !important;
        line-height: 1.35 !important;
    }

    .aq-blog-content p {
        display: none !important;
    }

    .aq-blog-link {
        margin-top: 9px !important;
        font-size: 10px !important;
    }

    .aq-category-clean-section {
        padding: 20px 0 24px !important;
    }

    .aq-category-slider-wrap {
        padding: 0 36px !important;
    }

    .aq-category-side-arrow {
        width: 34px !important;
        height: 34px !important;
    }

    .aq-category-side-prev {
        left: -2px !important;
    }

    .aq-category-side-next {
        right: -2px !important;
    }
}

@media (max-width: 420px) {
    .aq-blog-grid {
        gap: 10px !important;
    }

    .aq-blog-image {
        height: 116px !important;
    }

    .aq-blog-content h3 {
        font-size: 10.8px !important;
    }
}

/* =========================================================
   AquaShop Mobil Kategori + Blog Son Düzeltme
   - Mobilde kategori yarım kalmaz
   - Mobilde blog 2'li görünür
   - Masaüstü blog 4'lü kalır
========================================================= */

/* Kategori sliderın dış ölçüsü daha kontrollü */
.aq-category-slider-wrap {
    position: relative !important;
    width: 100% !important;
    overflow: visible !important;
}

/* Mobilde kategori viewport tam genişlik çalışsın */
.aq-category-slider-wrap .aq-category-viewport {
    width: 100% !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 4px 0 12px !important;
}

/* Kategori track ölçüsü JS ile gelsin */
.aq-category-slider-wrap .aq-category-track {
    display: flex !important;
    align-items: flex-start !important;
    gap: var(--aq-category-gap, 8px) !important;
    width: max-content !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

/* Kategori kartı JS'in verdiği genişliği kullanacak */
.aq-category-slider-wrap .aq-category-card {
    flex: 0 0 var(--aq-category-card-width, 90px) !important;
    width: var(--aq-category-card-width, 90px) !important;
    min-width: var(--aq-category-card-width, 90px) !important;
    max-width: var(--aq-category-card-width, 90px) !important;
}

/* Mobilde oklar alanı bozmasın */
@media (max-width: 767px) {
    .aq-category-slider-wrap {
        padding-left: 34px !important;
        padding-right: 34px !important;
    }

    .aq-category-side-arrow {
        width: 32px !important;
        height: 32px !important;
    }

    .aq-category-side-prev {
        left: 0 !important;
    }

    .aq-category-side-next {
        right: 0 !important;
    }

    .aq-category-slider-wrap .aq-category-card span {
        width: 62px !important;
        height: 62px !important;
    }

    .aq-category-slider-wrap .aq-category-card strong {
        font-size: 10.8px !important;
        line-height: 1.2 !important;
    }

    .aq-category-slider-wrap .aq-category-card small {
        font-size: 9.8px !important;
    }
}

/* Çok küçük mobilde de 4 kategori tam sığacak */
@media (max-width: 420px) {
    .aq-category-slider-wrap {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .aq-category-slider-wrap .aq-category-card span {
        width: 58px !important;
        height: 58px !important;
    }

    .aq-category-slider-wrap .aq-category-card strong {
        font-size: 10.3px !important;
    }

    .aq-category-slider-wrap .aq-category-card small {
        font-size: 9.4px !important;
    }
}

/* Blog masaüstünde 4 kart */
.aq-blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* Blog mobilde kesin 2 kart */
@media (max-width: 767px) {
    .aq-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .aq-blog-card {
        border-radius: 15px !important;
    }

    .aq-blog-image {
        height: 118px !important;
    }

    .aq-blog-content {
        padding: 11px 10px 13px !important;
    }

    .aq-blog-content > span {
        min-height: 18px !important;
        padding: 0 6px !important;
        font-size: 7.8px !important;
    }

    .aq-blog-content h3 {
        margin-top: 8px !important;
        font-size: 10.8px !important;
        line-height: 1.34 !important;
    }

    .aq-blog-content p {
        display: none !important;
    }

    .aq-blog-link {
        margin-top: 8px !important;
        font-size: 9.8px !important;
    }
}

/* =========================================================
   AquaShop Ürün Bölümü Başlık Ortalama
   - En Çok Satanlar / Yeni Ürünler başlıkları ortalanır
   - Tümünü Gör butonu slider altında ortalanır
   - Diğer alanları bozmaz
========================================================= */

.aq-section-title-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 22px !important;
}

.aq-section-title-center > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aq-section-title-center span {
    justify-content: center !important;
    text-align: center !important;
}

.aq-section-title-center h2 {
    text-align: center !important;
}

.aq-section-title-center p {
    display: none !important;
}

/* Slider altındaki Tümünü Gör butonu */
.aq-view-all-bottom {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aq-view-all-bottom .aq-view-all {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dfe8ef;
    color: #056f8d;
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.045);
}

.aq-view-all-bottom .aq-view-all:hover {
    background: #0798bd;
    border-color: #0798bd;
    color: #ffffff;
}

/* Mobilde başlıklar daha dengeli dursun */
@media (max-width: 767px) {
    .aq-section-title-center {
        margin-bottom: 18px !important;
    }

    .aq-section-title-center h2 {
        font-size: 25px !important;
    }

    .aq-view-all-bottom {
        margin-top: 18px;
    }

    .aq-view-all-bottom .aq-view-all {
        min-height: 40px;
        padding: 0 18px;
        font-size: 11.5px !important;
    }
}

/* =========================================================
   AquaShop Başlık Ortalama + Alt Buton Düzeni
   - En Çok Satanlar / Yeni Ürünler / Blog başlıkları ortalı
   - Tümünü Gör butonları altta ortalı
   - Mevcut slider ve kart yapısını bozmaz
========================================================= */

.aq-section-title-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 22px !important;
}

.aq-section-title-center > div {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.aq-section-title-center h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.aq-section-title-center span,
.aq-section-title-center p {
    display: none !important;
}

.aq-view-all-bottom {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aq-view-all-bottom .aq-view-all {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dfe8ef;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.045);
}

.aq-view-all-bottom .aq-view-all:hover {
    background: #0798bd;
    border-color: #0798bd;
    color: #ffffff;
}

.aq-section-title-center .aq-view-all {
    display: none !important;
}

@media (max-width: 767px) {
    .aq-section-title-center {
        margin-bottom: 18px !important;
    }

    .aq-section-title-center h2 {
        font-size: 25px !important;
        line-height: 1.2 !important;
    }

    .aq-view-all-bottom {
        margin-top: 18px;
    }

    .aq-view-all-bottom .aq-view-all {
        min-height: 40px;
        padding: 0 18px;
        font-size: 11.5px !important;
    }
}

/* =========================================================
   AquaShop Son Sağlam Ek Paket
   - Kategori mobilde yarım kalmaz
   - Tüm kategori tooltipleri çalışır
   - Google yorumları ve Instagram kaydırma alanları
   - Blog mobilde 2 kart, masaüstünde 4 kart
   - Mevcut buton/slider yapısını bozmaz
========================================================= */

.aq-category-slider-wrap {
    position: relative !important;
    width: 100% !important;
    padding: 0 40px !important;
    overflow: visible !important;
}

.aq-category-slider-wrap .aq-category-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 4px 0 12px !important;
    margin: 0 !important;
    touch-action: pan-y !important;
}

.aq-category-slider-wrap .aq-category-track {
    display: flex !important;
    align-items: flex-start !important;
    gap: var(--aq-category-gap, 10px) !important;
    width: max-content !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.aq-category-slider-wrap .aq-category-card {
    flex: 0 0 var(--aq-category-card-width, 110px) !important;
    width: var(--aq-category-card-width, 110px) !important;
    min-width: var(--aq-category-card-width, 110px) !important;
    max-width: var(--aq-category-card-width, 110px) !important;
}

.aq-category-side-arrow {
    position: absolute !important;
    top: 50% !important;
    z-index: 12 !important;
    width: 34px !important;
    height: 34px !important;
    border: 1px solid #dfe8ef !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: #056f8d !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: translateY(-50%) !important;
    backdrop-filter: blur(8px);
}

.aq-category-side-prev {
    left: 0 !important;
}

.aq-category-side-next {
    right: 0 !important;
}

.aq-category-side-arrow:hover {
    background: #0798bd !important;
    border-color: #0798bd !important;
    color: #ffffff !important;
}

.aq-floating-tooltip {
    z-index: 10000 !important;
}

.aq-google-reviews-section {
    padding: 48px 0 54px;
    background: #ffffff;
    border-top: 1px solid #eef3f6;
}

.aq-instagram-section {
    padding: 48px 0 58px;
    background: #ffffff;
    border-top: 1px solid #eef3f6;
}

.aq-loop-carousel {
    position: relative;
    overflow: visible;
}

.aq-loop-viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.aq-loop-track {
    display: flex;
    align-items: stretch;
    gap: var(--aq-loop-gap, 14px);
    width: max-content;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.aq-loop-prev {
    left: -18px !important;
}

.aq-loop-next {
    right: -18px !important;
}

.aq-review-card {
    min-height: 185px;
    padding: 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.aq-review-head {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 11px;
    align-items: center;
}

.aq-review-head > span {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #eef9fc;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.aq-review-head strong {
    display: block;
    color: #17202b;
    font-size: 13.5px;
    font-weight: 750;
}

.aq-review-head small {
    display: block;
    margin-top: 3px;
    color: #7a8491;
    font-size: 11px;
    font-weight: 600;
}

.aq-review-stars {
    margin-top: 14px;
    color: #f59e0b;
    display: flex;
    gap: 2px;
    font-size: 13px;
}

.aq-review-card p {
    margin: 12px 0 0;
    color: #647182;
    font-size: 12.8px;
    line-height: 1.62;
}

.aq-instagram-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: #f7fafc;
    border: 1px solid #e5edf3;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.aq-instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.aq-instagram-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.52));
    z-index: 1;
}

.aq-instagram-card span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 750;
    line-height: 1.25;
}

.aq-instagram-card:hover img {
    transform: scale(1.045);
}

.aq-blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 991px) {
    .aq-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .aq-loop-prev {
        left: -10px !important;
    }

    .aq-loop-next {
        right: -10px !important;
    }
}

@media (max-width: 767px) {
    .aq-category-slider-wrap {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .aq-category-slider-wrap .aq-category-card span {
        width: 58px !important;
        height: 58px !important;
    }

    .aq-category-slider-wrap .aq-category-card strong {
        font-size: 10.2px !important;
        line-height: 1.2 !important;
    }

    .aq-category-slider-wrap .aq-category-card small {
        font-size: 9.2px !important;
    }

    .aq-google-reviews-section,
    .aq-instagram-section {
        padding: 38px 0 44px;
    }

    .aq-loop-prev {
        left: -8px !important;
    }

    .aq-loop-next {
        right: -8px !important;
    }

    .aq-review-card {
        min-height: 178px;
        padding: 14px;
        border-radius: 16px;
    }

    .aq-review-head {
        grid-template-columns: 36px 1fr;
        gap: 9px;
    }

    .aq-review-head > span {
        width: 36px;
        height: 36px;
        font-size: 11.5px;
    }

    .aq-review-head strong {
        font-size: 12px;
    }

    .aq-review-head small {
        font-size: 9.8px;
    }

    .aq-review-stars {
        margin-top: 11px;
        font-size: 11px;
    }

    .aq-review-card p {
        font-size: 11.2px;
        line-height: 1.52;
    }

    .aq-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .aq-blog-image {
        height: 120px !important;
    }

    .aq-blog-content {
        padding: 11px 10px 13px !important;
    }

    .aq-blog-content > span {
        min-height: 18px !important;
        padding: 0 6px !important;
        font-size: 7.8px !important;
    }

    .aq-blog-content h3 {
        margin-top: 8px !important;
        font-size: 10.8px !important;
        line-height: 1.34 !important;
    }

    .aq-blog-content p {
        display: none !important;
    }

    .aq-blog-link {
        margin-top: 8px !important;
        font-size: 9.8px !important;
    }
}

@media (max-width: 420px) {
    .aq-category-slider-wrap {
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    .aq-category-side-arrow {
        width: 30px !important;
        height: 30px !important;
    }

    .aq-blog-grid {
        gap: 10px !important;
    }

    .aq-blog-image {
        height: 112px !important;
    }
}
/* =========================================================
   AquaShop - Google Yorumları + Instagram Son Görünüm
   - Google yorum kartlarının arkasındaki gri/gölge hissi kaldırıldı
   - Instagram kartlarında yazı başlığı kaldırıldı
   - Instagram görselleri normalde blur/karartmalı
   - Ortada beyaz Instagram logosu görünür
   - Hover olunca görsel normale döner
========================================================= */

/* Google yorumları alanı daha temiz beyaz dursun */
.aq-google-reviews-section {
    background: #ffffff !important;
}

.aq-google-reviews-section .aq-loop-carousel,
.aq-google-reviews-section .aq-loop-viewport,
.aq-google-reviews-section .aq-loop-track {
    background: transparent !important;
    box-shadow: none !important;
}

/* Google yorum kartlarındaki gri gölge/kutu hissini kaldır */
.aq-review-card {
    background: #ffffff !important;
    border: 1px solid #e8eef3 !important;
    box-shadow: none !important;
}

.aq-review-card:hover {
    box-shadow: none !important;
    border-color: rgba(7, 152, 189, 0.26) !important;
}

/* Instagram alanı temiz */
.aq-instagram-section {
    background: #ffffff !important;
}

/* Instagram kartı */
.aq-instagram-card {
    position: relative !important;
    display: block !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #eef3f6 !important;
    border: 1px solid #e5edf3 !important;
    box-shadow: none !important;
}

/* Instagram görseli normalde blur + hafif yakın */
.aq-instagram-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: blur(3px) brightness(0.72) saturate(0.9) !important;
    transform: scale(1.045) !important;
    transition:
        filter 360ms ease,
        transform 520ms ease !important;
}

/* Eski alttaki yazılı overlay görünmesin */
.aq-instagram-card span {
    display: none !important;
}

/* Ortadaki beyaz Instagram logosu */
.aq-instagram-card::before {
    content: "\F437";
    font-family: "bootstrap-icons" !important;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.54);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
    transition:
        opacity 280ms ease,
        transform 280ms ease,
        background 280ms ease;
}

/* Hafif koyu perde */
.aq-instagram-card::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: rgba(5, 12, 18, 0.24) !important;
    transition: opacity 320ms ease !important;
}

/* Hover olunca görsel normale dönsün */
.aq-instagram-card:hover img {
    filter: blur(0) brightness(1) saturate(1) !important;
    transform: scale(1) !important;
}

/* Hover olunca logo zarifçe kaybolsun */
.aq-instagram-card:hover::before {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
}

/* Hover olunca koyu perde kalksın */
.aq-instagram-card:hover::after {
    opacity: 0 !important;
}

/* Mobilde logo biraz küçük olsun */
@media (max-width: 767px) {
    .aq-instagram-card::before {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .aq-instagram-card img {
        filter: blur(2.4px) brightness(0.74) saturate(0.92) !important;
    }
}

/* =========================================================
   AquaShop Header Sticky Kesin Düzeltme
   - Masaüstü ve mobilde header üstte sabit kalır
   - Duyuru barı normal akar
   - Header scroll olunca üstte kalır
   - Diğer alanlara dokunmaz
========================================================= */

html,
body {
    overflow-x: hidden !important;
}

/* Sticky davranışı bozulmasın */
body,
.aq-header,
.aq-header-main,
.aq-header-menu {
    transform: none !important;
}

/* Ana header her ekranda sticky */
.aq-header {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.055) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

/* Duyuru barı normal kalsın, header onun altında sticky çalışsın */
.aq-top-announcement {
    position: relative !important;
    z-index: 9998 !important;
}

/* Header iç katmanları arka planı kaybetmesin */
.aq-header-top,
.aq-header-main,
.aq-header-menu {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Mega menü sticky header altında düzgün açılsın */
.aq-mega-menu {
    z-index: 9997 !important;
}

/* Mobil menü her şeyin üstünde kalsın */
.aq-mobile-panel {
    z-index: 12000 !important;
}

.aq-mobile-backdrop {
    z-index: 11990 !important;
}

/* Sepet drawer da header üstünde açılsın */
.aq-cart-drawer {
    z-index: 12100 !important;
}

.aq-cart-backdrop {
    z-index: 12090 !important;
}

/* Mobilde üst satır gizliyse header yine yapışmasın, nefesli dursun */
@media (max-width: 991px) {
    .aq-header {
        top: 0 !important;
    }

    .aq-header-main {
        padding-top: 10px !important;
        padding-bottom: 8px !important;
    }

    .aq-header-main-inner {
        align-items: center !important;
    }
}

/* =========================================================
   AquaShop Header Sticky Final Güvenli Çözüm
   - Fixed kullanılmaz, sayfa akışı bozulmaz
   - Masaüstü ve mobilde üst alan sabit kalır
   - Slider, ürün kartları, kategori, footer ve JS yapısına dokunmaz
========================================================= */

/* Sayfa yatay taşma yapmasın */
html,
body {
    overflow-x: hidden !important;
}

/* Sticky davranışı için header ve üst bar doğal akışta kalır */
.aq-top-announcement,
.aq-header {
    transform: none !important;
}

/* Üst duyuru barı en üstte kalsın */
.aq-top-announcement {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 0 !important;
    z-index: 10050 !important;
}

/* Header duyuru barının altında sticky kalsın */
.aq-header {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 32px !important;
    z-index: 10040 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.055) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

/* Header iç bölümleri beyaz kalsın */
.aq-header-top,
.aq-header-main,
.aq-header-menu {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Mega menü header altında düzgün açılsın */
.aq-mega-menu {
    z-index: 10030 !important;
}

/* Mobil menü ve sepet her şeyin üstünde açılsın */
.aq-mobile-panel {
    z-index: 12000 !important;
}

.aq-mobile-backdrop {
    z-index: 11990 !important;
}

.aq-cart-drawer {
    z-index: 12100 !important;
}

.aq-cart-backdrop {
    z-index: 12090 !important;
}

/* Mobilde üst mini header satırı gizli olduğu için boşluk dengesi */
@media (max-width: 991px) {
    .aq-header-top {
        display: none !important;
    }

    .aq-header {
        top: 32px !important;
    }

    .aq-header-main {
        padding-top: 10px !important;
        padding-bottom: 8px !important;
    }

    .aq-header-main-inner {
        min-height: 64px !important;
        align-items: center !important;
    }

    .aq-search {
        margin-top: 4px !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 520px) {
    .aq-header-main {
        padding-top: 12px !important;
        padding-bottom: 9px !important;
    }
}

/* =========================================================
   AquaShop Header Fixed Final Çalışan Çözüm
   - Header aşağı kaydırmada ekranda sabit kalır
   - Sayfa içeriği header altında ezilmez
   - Masaüstü ve mobil uyumlu
   - Slider, ürünler, kategori ve footer bozulmaz
========================================================= */

:root {
    --aq-fixed-header-height: 0px;
}

/* Sayfanın header altında ezilmesini engeller */
body.aq-fixed-header-ready {
    padding-top: var(--aq-fixed-header-height) !important;
}

/* Duyuru barı + header birlikte sabitlenir */
.aq-top-announcement {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10050 !important;
    width: 100% !important;
}

.aq-header {
    position: fixed !important;
    top: 32px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10040 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.985) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    transform: none !important;
}

/* Header iç katmanları beyaz kalsın */
.aq-header-top,
.aq-header-main,
.aq-header-menu {
    background: rgba(255, 255, 255, 0.985) !important;
}

/* Mega menü headerın altında doğru açılsın */
.aq-mega-menu {
    z-index: 10030 !important;
}

/* Mobil menü ve sepet her şeyin üstünde kalsın */
.aq-mobile-backdrop {
    z-index: 11990 !important;
}

.aq-mobile-panel {
    z-index: 12000 !important;
}

.aq-cart-backdrop {
    z-index: 12090 !important;
}

.aq-cart-drawer {
    z-index: 12100 !important;
}

/* Mobilde üst mini satır gizli olduğu için header yine duyuru barının altında sabit kalır */
@media (max-width: 991px) {
    .aq-header-top {
        display: none !important;
    }

    .aq-header {
        top: 32px !important;
    }

    .aq-header-main {
        padding-top: 10px !important;
        padding-bottom: 8px !important;
    }

    .aq-header-main-inner {
        min-height: 64px !important;
        align-items: center !important;
    }

    .aq-search {
        margin-top: 4px !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 520px) {
    .aq-header-main {
        padding-top: 12px !important;
        padding-bottom: 9px !important;
    }
}

/* =========================================================
   AquaShop Header Scroll Sonrası Sabitlenme
   - Sayfa ilk açıldığında header normal yerinde kalır
   - Aşağı kaydırınca header üstte sabitlenir
   - Slider ilk açılışta header arkasında kalmaz
========================================================= */

/* Önceki fixed/sticky denemelerini sıfırla */
body {
    padding-top: 0 !important;
}

.aq-top-announcement {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: 100;
}

.aq-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 6px 20px rgba(17, 24, 39, 0.028) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

/* Scroll sonrası sadece header sabitlenir */
body.aq-header-is-fixed .aq-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10040 !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.075) !important;
    animation: aqHeaderDrop 220ms ease both;
}

/* Header fixed olunca içerik yukarı zıplamasın */
body.aq-header-is-fixed {
    padding-top: var(--aq-scroll-header-height, 0px) !important;
}

/* Duyuru barı scroll sonrası yukarıda kalmaz, normal akar */
body.aq-header-is-fixed .aq-top-announcement {
    position: relative !important;
}

/* Header içleri beyaz kalsın */
.aq-header-top,
.aq-header-main,
.aq-header-menu {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Mega menü sabit header altında düzgün açılsın */
.aq-mega-menu {
    z-index: 10030 !important;
}

/* Mobil menü ve sepet her şeyin üstünde kalsın */
.aq-mobile-backdrop {
    z-index: 11990 !important;
}

.aq-mobile-panel {
    z-index: 12000 !important;
}

.aq-cart-backdrop {
    z-index: 12090 !important;
}

.aq-cart-drawer {
    z-index: 12100 !important;
}

@keyframes aqHeaderDrop {
    from {
        transform: translateY(-8px);
    }

    to {
        transform: translateY(0);
    }
}

/* Mobilde üst mini satır zaten gizli kalsın */
@media (max-width: 991px) {
    .aq-header-top {
        display: none !important;
    }

    .aq-header-main {
        padding-top: 10px !important;
        padding-bottom: 8px !important;
    }

    .aq-header-main-inner {
        min-height: 64px !important;
        align-items: center !important;
    }

    .aq-search {
        margin-top: 4px !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 520px) {
    .aq-header-main {
        padding-top: 12px !important;
        padding-bottom: 9px !important;
    }
}

/* =========================================================
   AquaShop Header + Siyah Duyuru Barı Scroll Takip Final
   - İlk açılışta normal akışta durur
   - Scroll sonrası siyah bar + header beraber sabitlenir
   - Slider ilk girişte arkada kalmaz
   - Sayfa zıplamaz
========================================================= */

:root {
    --aq-scroll-fixed-total-height: 0px;
    --aq-scroll-topbar-height: 32px;
}

/* Önceki fixed/sticky denemelerini güvenli şekilde sıfırla */
body {
    padding-top: 0 !important;
}

.aq-top-announcement,
.aq-header {
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    transform: none !important;
}

/* İlk açılışta siyah bar normal yerinde */
.aq-top-announcement {
    position: relative !important;
    top: auto !important;
    z-index: 10050 !important;
}

/* İlk açılışta header normal yerinde */
.aq-header {
    position: relative !important;
    top: auto !important;
    z-index: 10040 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 6px 20px rgba(17, 24, 39, 0.028) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

/* Scroll sonrası siyah duyuru barı en üstte sabitlenir */
body.aq-header-is-fixed .aq-top-announcement {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10060 !important;
}

/* Scroll sonrası header siyah barın hemen altında sabitlenir */
body.aq-header-is-fixed .aq-header {
    position: fixed !important;
    top: var(--aq-scroll-topbar-height, 32px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10050 !important;
    background: rgba(255, 255, 255, 0.985) !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.075) !important;
    animation: aqHeaderDropFinal 220ms ease both;
}

/* Fixed olunca içerik yukarı zıplamasın */
body.aq-header-is-fixed {
    padding-top: var(--aq-scroll-fixed-total-height, 0px) !important;
}

/* Header iç bölümler beyaz kalsın */
.aq-header-top,
.aq-header-main,
.aq-header-menu {
    background: rgba(255, 255, 255, 0.985) !important;
}

/* Mega menü sabit header altında düzgün açılsın */
.aq-mega-menu {
    z-index: 10040 !important;
}

/* Mobil menü ve sepet her şeyin üstünde kalsın */
.aq-mobile-backdrop {
    z-index: 11990 !important;
}

.aq-mobile-panel {
    z-index: 12000 !important;
}

.aq-cart-backdrop {
    z-index: 12090 !important;
}

.aq-cart-drawer {
    z-index: 12100 !important;
}

@keyframes aqHeaderDropFinal {
    from {
        transform: translateY(-8px);
    }

    to {
        transform: translateY(0);
    }
}

/* Mobilde mini üst satır gizli; siyah bar + ana header beraber sabit kalır */
@media (max-width: 991px) {
    .aq-header-top {
        display: none !important;
    }

    .aq-header-main {
        padding-top: 10px !important;
        padding-bottom: 8px !important;
    }

    .aq-header-main-inner {
        min-height: 64px !important;
        align-items: center !important;
    }

    .aq-search {
        margin-top: 4px !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 520px) {
    .aq-header-main {
        padding-top: 12px !important;
        padding-bottom: 9px !important;
    }
}

/* =========================================================
   AquaShop Header + Siyah Bar Anında Sabit Final
   - Scroll beklemez, mobilde gecikme/patlama olmaz
   - Slider/header arkasında kalmaz
   - Sayfa açılışında doğal görünüm korunur
========================================================= */

:root {
    --aq-fixed-stack-height: 171px;
    --aq-topbar-height: 32px;
}

/* Sayfa içeriği sabit header altında ezilmesin */
body {
    padding-top: var(--aq-fixed-stack-height) !important;
}

/* Siyah duyuru barı her zaman üstte sabit */
.aq-top-announcement {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10060 !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    will-change: transform !important;
}

/* Header siyah barın hemen altında her zaman sabit */
.aq-header {
    position: fixed !important;
    top: var(--aq-topbar-height, 32px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10050 !important;
    background: rgba(255, 255, 255, 0.985) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.055) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    will-change: transform !important;
}

/* Header iç katmanları beyaz kalsın */
.aq-header-top,
.aq-header-main,
.aq-header-menu {
    background: rgba(255, 255, 255, 0.985) !important;
}

/* Önceki scroll class'ları kalmışsa etki etmesin */
body.aq-header-is-fixed {
    padding-top: var(--aq-fixed-stack-height) !important;
}

body.aq-header-is-fixed .aq-top-announcement,
body.aq-header-is-fixed .aq-header {
    animation: none !important;
}

/* Mega menü, sepet ve mobil menü katmanları */
.aq-mega-menu {
    z-index: 10040 !important;
}

.aq-mobile-backdrop {
    z-index: 11990 !important;
}

.aq-mobile-panel {
    z-index: 12000 !important;
}

.aq-cart-backdrop {
    z-index: 12090 !important;
}

.aq-cart-drawer {
    z-index: 12100 !important;
}

/* Mobilde üst mini satır gizli kalacak */
@media (max-width: 991px) {
    .aq-header-top {
        display: none !important;
    }

    .aq-header-main {
        padding-top: 10px !important;
        padding-bottom: 8px !important;
    }

    .aq-header-main-inner {
        min-height: 64px !important;
        align-items: center !important;
    }

    .aq-search {
        margin-top: 4px !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 520px) {
    .aq-header-main {
        padding-top: 12px !important;
        padding-bottom: 9px !important;
    }
}

/* =========================================================
   AquaShop Hesabım Dropdown
   - Giriş yoksa Üye Ol / Giriş Yap
   - Giriş varsa hesap menüsü
========================================================= */

.aq-account-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.aq-account-trigger {
    position: relative;
}

.aq-account-dropdown {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    z-index: 260;
    width: 270px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e8eef3;
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.aq-account-dropdown::before {
    content: "";
    position: absolute;
    right: 25px;
    top: -7px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid #e8eef3;
    border-top: 1px solid #e8eef3;
    transform: rotate(45deg);
}

.aq-account-menu:hover .aq-account-dropdown,
.aq-account-menu.is-open .aq-account-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.aq-account-user {
    padding: 10px 12px 12px;
    border-bottom: 1px solid #eef3f7;
    margin-bottom: 4px;
}

.aq-account-user strong {
    display: block;
    color: #f26b2c;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.aq-account-dropdown-link {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-size: 13px;
    font-weight: 550;
    transition: background 180ms ease, color 180ms ease;
}

.aq-account-dropdown-link i {
    width: 18px;
    min-width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 17px;
    line-height: 1;
}

.aq-account-dropdown-link:hover,
.aq-account-dropdown-link.is-active {
    background: #fff4ec;
    color: #e96522;
}

.aq-account-dropdown-link:hover i,
.aq-account-dropdown-link.is-active i {
    color: #e96522;
}

.aq-account-logout-form {
    margin: 4px 0 0;
    padding-top: 4px;
    border-top: 1px solid #eef3f7;
}

.aq-account-logout-btn {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
}

.aq-account-guest-head {
    padding: 10px 12px 12px;
}

.aq-account-guest-head strong {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}

.aq-account-guest-head span {
    display: block;
    margin-top: 5px;
    color: #738091;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.aq-account-auth-btn {
    min-height: 42px;
    margin: 6px 6px 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
}

.aq-account-register-btn {
    background: #0798bd;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(7, 152, 189, 0.16);
}

.aq-account-register-btn:hover {
    background: #056f8d;
    color: #ffffff;
}

.aq-account-login-btn {
    background: #f8fafc;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.aq-account-login-btn:hover {
    background: #eef9fc;
    color: #056f8d;
    border-color: rgba(7, 152, 189, 0.22);
}

@media (max-width: 991px) {
    .aq-account-dropdown {
        right: -96px;
        width: 265px;
    }

    .aq-account-dropdown::before {
        right: 110px;
    }
}

@media (max-width: 480px) {
    .aq-account-dropdown {
        position: fixed;
        top: var(--aq-fixed-stack-height, 118px);
        left: 12px;
        right: 12px;
        width: auto;
        border-radius: 18px;
    }

    .aq-account-dropdown::before {
        display: none;
    }
}

/* =========================================================
   AquaShop Hesabım Dropdown Fix
   - Hover ile kapanma/açılma iptal
   - Sadece JS is-open classı ile açılır
   - Admin/kasiyer frontend müşteri gibi görünmez
========================================================= */

.aq-account-menu:hover .aq-account-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
}

.aq-account-menu.is-open .aq-account-dropdown,
.aq-account-menu.is-open:hover .aq-account-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.aq-account-dropdown {
    top: calc(100% + 14px);
}

.aq-account-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
    background: transparent;
}

.aq-account-trigger.is-active,
.aq-account-menu.is-open .aq-account-trigger {
    color: var(--aq-blue);
    background: var(--aq-blue-light);
}

/* =========================================================
   AquaShop Hesabım Dropdown Renk Düzeltmesi
   - Turuncu tonlar kaldırıldı
   - Site rengine uygun turkuaz/mavi tonlar kullanıldı
========================================================= */

.aq-account-user strong {
    color: #0798bd !important;
}

.aq-account-dropdown-link:hover,
.aq-account-dropdown-link.is-active {
    background: #eef9fc !important;
    color: #056f8d !important;
}

.aq-account-dropdown-link:hover i,
.aq-account-dropdown-link.is-active i {
    color: #0798bd !important;
}

.aq-account-trigger.is-active,
.aq-account-menu.is-open .aq-account-trigger {
    color: #0798bd !important;
    background: #eef9fc !important;
}

.aq-account-logout-btn:hover {
    background: #eef9fc !important;
    color: #056f8d !important;
}

.aq-account-logout-btn:hover i {
    color: #0798bd !important;
}

/* =========================================================
   AquaShop Header Kategori Menü Final
   - Tüm Kategoriler artık sayfaya gider
   - Açılır mega menü kaldırıldı
   - Kategoriler genişliğe göre görünür
   - Taşanlar Devamı altında açılır
========================================================= */

.aq-mega-menu {
    display: none !important;
}

.aq-header-menu-overflow {
    position: relative !important;
    z-index: 120 !important;
    height: 43px !important;
    background: #ffffff !important;
    border-top: 1px solid #f2f5f8 !important;
    overflow: visible !important;
}

.aq-header-menu-overflow .aq-container {
    height: 43px !important;
    overflow: visible !important;
}

.aq-main-menu-overflow {
    position: relative !important;
    height: 43px !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    overflow: visible !important;
    scrollbar-width: none !important;
}

.aq-main-menu-overflow::-webkit-scrollbar {
    display: none !important;
}

.aq-all-categories-btn {
    flex: 0 0 auto !important;
    padding-left: 0 !important;
    padding-right: 14px !important;
    margin-right: 8px !important;
    color: #263241 !important;
    font-weight: 800 !important;
}

.aq-all-categories-btn i {
    font-size: 21px !important;
    color: #0798bd !important;
}

.aq-all-categories-btn span {
    display: inline-flex !important;
}

.aq-menu-visible-categories {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    height: 43px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

.aq-menu-category-link,
.aq-menu-static-link,
.aq-menu-more-btn {
    position: relative !important;
    height: 43px !important;
    padding: 0 12px !important;
    border: 0 !important;
    background: transparent !important;
    color: #34404c !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    cursor: pointer !important;
    flex: 0 0 auto !important;
    transition: color 180ms ease !important;
}

.aq-menu-category-link::after,
.aq-menu-static-link::after,
.aq-menu-more-btn::after,
.aq-all-categories-btn::after {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 0 !important;
    height: 2px !important;
    background: transparent !important;
    border-radius: 999px !important;
    transition: background 180ms ease !important;
}

.aq-all-categories-btn::after {
    left: 0 !important;
    right: 14px !important;
}

.aq-menu-category-link:hover,
.aq-menu-category-link.is-active,
.aq-menu-static-link:hover,
.aq-menu-static-link.is-active,
.aq-menu-more.is-open .aq-menu-more-btn,
.aq-menu-more-btn:hover,
.aq-all-categories-btn:hover {
    color: #0798bd !important;
}

.aq-menu-category-link:hover::after,
.aq-menu-category-link.is-active::after,
.aq-menu-static-link:hover::after,
.aq-menu-static-link.is-active::after,
.aq-menu-more.is-open .aq-menu-more-btn::after,
.aq-menu-more-btn:hover::after,
.aq-all-categories-btn:hover::after {
    background: #0798bd !important;
}

.aq-menu-more {
    position: relative !important;
    flex: 0 0 auto !important;
    height: 43px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.aq-menu-more[hidden] {
    display: none !important;
}

.aq-menu-more-btn i {
    font-size: 11px !important;
    transition: transform 180ms ease !important;
}

.aq-menu-more.is-open .aq-menu-more-btn i {
    transform: rotate(180deg) !important;
}

.aq-menu-more-dropdown {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    z-index: 9999 !important;
    min-width: 235px !important;
    max-width: min(320px, calc(100vw - 28px)) !important;
    max-height: 410px !important;
    overflow-y: auto !important;
    padding: 8px !important;
    border-radius: 0 0 16px 16px !important;
    background: #ffffff !important;
    border: 1px solid #e5edf3 !important;
    border-top: 0 !important;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.16) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(8px) !important;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease !important;
}

.aq-menu-more.is-open .aq-menu-more-dropdown,
.aq-menu-more:hover .aq-menu-more-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

.aq-menu-more-dropdown a {
    min-height: 38px !important;
    padding: 0 11px !important;
    border-radius: 11px !important;
    color: #334155 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    font-size: 12.7px !important;
    font-weight: 700 !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    transition: background 170ms ease, color 170ms ease !important;
}

.aq-menu-more-dropdown a:hover {
    background: #eef9fc !important;
    color: #056f8d !important;
}

.aq-menu-static-link {
    flex: 0 0 auto !important;
}

/* Slider/dropdown üst üste binme koruması */
.aq-header,
.aq-header-menu-overflow,
.aq-main-menu-overflow {
    z-index: 9990 !important;
}

.aq-hero-area,
.aq-hero-clean-area,
.aq-category-section,
.aq-product-section {
    position: relative !important;
    z-index: 1 !important;
}

@media (max-width: 991px) {
    .aq-header-menu-overflow {
        display: none !important;
    }
}

/* =========================================================
   AquaShop Devamı Menü - Scrollsuz Çok Sıralı Görünüm
   - Scroll kaldırıldı
   - Az kategori varsa tek sıra gibi durur
   - Çok kategori varsa 2 / 3 sıra halinde genişler
   - Header ve mevcut JS yapısını bozmaz
========================================================= */

.aq-menu-more-dropdown {
    width: max-content !important;
    min-width: 235px !important;
    max-width: min(760px, calc(100vw - 32px)) !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;

    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
    grid-auto-flow: row !important;
    gap: 5px !important;

    padding: 10px !important;
    border-radius: 0 0 16px 16px !important;
    background: #ffffff !important;
    border: 1px solid #e5edf3 !important;
    border-top: 0 !important;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.16) !important;
}

.aq-menu-more-dropdown a,
.aq-menu-more-dropdown .js-aq-menu-category {
    width: 100% !important;
    min-width: 170px !important;
    min-height: 38px !important;
    padding: 0 11px !important;
    border-radius: 11px !important;

    color: #334155 !important;
    background: transparent !important;

    display: flex !important;
    align-items: center !important;

    font-size: 12.7px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    text-decoration: none !important;

    transition: background 170ms ease, color 170ms ease !important;
}

.aq-menu-more-dropdown a:hover,
.aq-menu-more-dropdown .js-aq-menu-category:hover {
    background: #eef9fc !important;
    color: #056f8d !important;
}

/* 4 ve üzeri kategori varsa menü daha ferah genişler */
.aq-menu-more-dropdown:has(a:nth-child(4)) {
    grid-template-columns: repeat(2, minmax(170px, 1fr)) !important;
}

/* 8 ve üzeri kategori varsa 3 kolonlu görünür */
.aq-menu-more-dropdown:has(a:nth-child(8)) {
    grid-template-columns: repeat(3, minmax(170px, 1fr)) !important;
}

/* Ekran daralınca taşmasın */
@media (max-width: 767px) {
    .aq-menu-more-dropdown {
        right: auto !important;
        left: 0 !important;
        width: min(520px, calc(100vw - 24px)) !important;
        max-width: calc(100vw - 24px) !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .aq-menu-more-dropdown a,
    .aq-menu-more-dropdown .js-aq-menu-category {
        min-width: 0 !important;
    }
}

@media (max-width: 520px) {
    .aq-menu-more-dropdown {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   AquaShop Devamı Menü - Üst Menü Gibi Düz Link Görünümü
   - Buton/kart hissi kaldırıldı
   - Hover/aktif durumda renk değişir
   - Alt çizgi gelir
========================================================= */

.aq-menu-more-dropdown {
    gap: 0 18px !important;
    padding: 12px 14px !important;
    align-items: start !important;
}

.aq-menu-more-dropdown a,
.aq-menu-more-dropdown .js-aq-menu-category {
    position: relative !important;
    width: 100% !important;
    min-width: 170px !important;
    min-height: 38px !important;

    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;

    color: #34404c !important;
    display: inline-flex !important;
    align-items: center !important;

    font-size: 12.8px !important;
    font-weight: 650 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    text-decoration: none !important;

    transition: color 180ms ease !important;
}

.aq-menu-more-dropdown a::after,
.aq-menu-more-dropdown .js-aq-menu-category::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 4px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: transparent !important;
    transition: background 180ms ease !important;
}

.aq-menu-more-dropdown a:hover,
.aq-menu-more-dropdown .js-aq-menu-category:hover {
    background: transparent !important;
    color: #0798bd !important;
}

.aq-menu-more-dropdown a:hover::after,
.aq-menu-more-dropdown .js-aq-menu-category:hover::after {
    background: #0798bd !important;
}

/* Uzun kategori isimleri taşmasın */
.aq-menu-more-dropdown a,
.aq-menu-more-dropdown .js-aq-menu-category {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Çok kolonlu yapıda linkler daha düzgün hizalansın */
.aq-menu-more-dropdown:has(a:nth-child(4)) {
    column-gap: 22px !important;
    row-gap: 2px !important;
}

.aq-menu-more-dropdown:has(a:nth-child(8)) {
    column-gap: 24px !important;
    row-gap: 2px !important;
}

@media (max-width: 767px) {
    .aq-menu-more-dropdown a,
    .aq-menu-more-dropdown .js-aq-menu-category {
        min-width: 0 !important;
        white-space: normal !important;
    }
}

/* =========================================================
   AquaShop Mobil Menü Final
   - Hesap / giriş alanı
   - Ana kategori + alt kategori accordion
   - Scroll var ama scrollbar görünmez
========================================================= */

.aq-mobile-panel {
    overflow: hidden !important;
}

.aq-mobile-panel-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-bottom: 22px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.aq-mobile-panel-body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

.aq-mobile-account-area {
    padding: 16px 19px 15px !important;
    border-bottom: 1px solid #eef3f7 !important;
    background:
        radial-gradient(circle at 0 0, rgba(7, 152, 189, 0.08), transparent 210px),
        #ffffff !important;
}

.aq-mobile-guest-text strong {
    display: block !important;
    color: #111827 !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
}

.aq-mobile-guest-text span {
    display: block !important;
    margin-top: 5px !important;
    color: #738091 !important;
    font-size: 12px !important;
    font-weight: 550 !important;
    line-height: 1.5 !important;
}

.aq-mobile-auth-buttons {
    margin-top: 13px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
}

.aq-mobile-login-btn,
.aq-mobile-register-btn,
.aq-mobile-account-btn {
    min-height: 42px !important;
    border-radius: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 12.7px !important;
    font-weight: 850 !important;
    text-decoration: none !important;
}

.aq-mobile-login-btn {
    background: #f8fafc !important;
    color: #334155 !important;
    border: 1px solid #e2e8f0 !important;
}

.aq-mobile-login-btn:hover {
    background: #eef9fc !important;
    color: #056f8d !important;
    border-color: rgba(7, 152, 189, 0.22) !important;
}

.aq-mobile-register-btn,
.aq-mobile-account-btn {
    background: #0798bd !important;
    color: #ffffff !important;
    border: 1px solid #0798bd !important;
    box-shadow: 0 10px 20px rgba(7, 152, 189, 0.15) !important;
}

.aq-mobile-register-btn:hover,
.aq-mobile-account-btn:hover {
    background: #056f8d !important;
    color: #ffffff !important;
}

.aq-mobile-user-card {
    display: grid !important;
    grid-template-columns: 42px 1fr !important;
    gap: 11px !important;
    align-items: center !important;
    margin-bottom: 12px !important;
}

.aq-mobile-user-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 15px !important;
    background: #eef9fc !important;
    color: #0798bd !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
}

.aq-mobile-user-card strong {
    display: block !important;
    color: #111827 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
}

.aq-mobile-user-card span {
    display: block !important;
    margin-top: 3px !important;
    color: #738091 !important;
    font-size: 11.5px !important;
    font-weight: 550 !important;
}

.aq-mobile-search {
    padding: 15px 19px !important;
    display: grid !important;
    grid-template-columns: 1fr 44px !important;
    gap: 9px !important;
    border-bottom: 1px solid #eef3f7 !important;
}

.aq-mobile-search input {
    height: 44px !important;
    border: 1px solid #dfe7ee !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    color: #111827 !important;
    padding: 0 13px !important;
    outline: none !important;
    font-size: 12.8px !important;
    font-weight: 600 !important;
}

.aq-mobile-search input:focus {
    background: #ffffff !important;
    border-color: rgba(7, 152, 189, 0.42) !important;
    box-shadow: 0 0 0 3px rgba(7, 152, 189, 0.08) !important;
}

.aq-mobile-search button {
    height: 44px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #0798bd !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.aq-mobile-nav {
    padding: 8px 19px 18px !important;
    display: grid !important;
    gap: 0 !important;
}

.aq-mobile-main-link,
.aq-mobile-category-row {
    min-height: 49px !important;
    border-bottom: 1px solid #eef3f7 !important;
    color: #34404c !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 750 !important;
}

.aq-mobile-main-link span {
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
}

.aq-mobile-main-link i,
.aq-mobile-category-direct i {
    color: #94a3b8 !important;
    font-size: 13px !important;
}

.aq-mobile-all-categories {
    color: #056f8d !important;
    font-weight: 900 !important;
}

.aq-mobile-all-categories span i {
    width: 28px !important;
    height: 28px !important;
    border-radius: 10px !important;
    background: #eef9fc !important;
    color: #0798bd !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
}

.aq-mobile-category-item {
    border-bottom: 0 !important;
}

.aq-mobile-category-link {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    min-height: 49px !important;
    color: #34404c !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 750 !important;
}

.aq-mobile-category-link span {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.aq-mobile-category-toggle,
.aq-mobile-category-direct {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: transparent !important;
    color: #64748b !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: background 180ms ease, color 180ms ease !important;
}

.aq-mobile-category-toggle:hover,
.aq-mobile-category-direct:hover,
.aq-mobile-category-item.is-open .aq-mobile-category-toggle {
    background: #eef9fc !important;
    color: #0798bd !important;
}

.aq-mobile-category-toggle i {
    font-size: 14px !important;
    transition: transform 180ms ease !important;
}

.aq-mobile-category-item.is-open .aq-mobile-category-toggle i {
    transform: rotate(180deg) !important;
}

.aq-mobile-subcategory-list {
    display: none !important;
    padding: 4px 0 10px 12px !important;
    border-bottom: 1px solid #eef3f7 !important;
}

.aq-mobile-category-item.is-open .aq-mobile-subcategory-list {
    display: grid !important;
    gap: 2px !important;
}

.aq-mobile-subcategory-list a {
    position: relative !important;
    min-height: 38px !important;
    padding: 0 8px 0 18px !important;
    border-radius: 11px !important;
    color: #5b6777 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    font-size: 12.3px !important;
    font-weight: 650 !important;
    line-height: 1.35 !important;
}

.aq-mobile-subcategory-list a::before {
    content: "" !important;
    position: absolute !important;
    left: 6px !important;
    top: 50% !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 999px !important;
    background: #cbd5e1 !important;
    transform: translateY(-50%) !important;
}

.aq-mobile-subcategory-list a:hover {
    background: #eef9fc !important;
    color: #056f8d !important;
}

.aq-mobile-subcategory-list a:hover::before,
.aq-mobile-subcategory-all::before {
    background: #0798bd !important;
}

.aq-mobile-subcategory-all {
    color: #056f8d !important;
    font-weight: 850 !important;
}

@media (max-width: 390px) {
    .aq-mobile-auth-buttons {
        grid-template-columns: 1fr !important;
    }

    .aq-mobile-panel-head,
    .aq-mobile-account-area,
    .aq-mobile-search,
    .aq-mobile-nav {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* =========================================================
   AquaShop Mobil Menü Profesyonel Final
   - Arama üstte
   - Hesap alanı sade kart
   - Tüm Kategoriler kaldırıldı
   - Ana kategori accordion
   - İç scroll var ama scrollbar görünmez
========================================================= */

.aq-mobile-panel {
    overflow: hidden !important;
    background: #ffffff !important;
}

.aq-mobile-panel-head-final {
    min-height: 92px !important;
    padding: 20px 22px !important;
    border-bottom: 1px solid #edf2f6 !important;
    background: #ffffff !important;
}

.aq-mobile-panel-head-final .aq-mobile-logo span {
    color: #17202b !important;
    font-size: 32px !important;
    letter-spacing: -1.25px !important;
}

.aq-mobile-panel-head-final .aq-mobile-logo small {
    margin-top: 7px !important;
    color: #7a8491 !important;
    font-size: 7.4px !important;
    letter-spacing: 1.75px !important;
}

.aq-mobile-panel-head-final .aq-mobile-close {
    width: 46px !important;
    height: 46px !important;
    border-radius: 15px !important;
    background: #f5f8fa !important;
    color: #263241 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.aq-mobile-panel-body-final {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-bottom: 28px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.aq-mobile-panel-body-final::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

.aq-mobile-search-final {
    padding: 18px 22px 14px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 50px !important;
    gap: 10px !important;
    border-bottom: 0 !important;
}

.aq-mobile-search-final input {
    height: 50px !important;
    border: 1px solid #dfe7ee !important;
    border-radius: 15px !important;
    background: #f8fafc !important;
    color: #111827 !important;
    padding: 0 16px !important;
    outline: none !important;
    font-size: 13px !important;
    font-weight: 650 !important;
}

.aq-mobile-search-final input::placeholder {
    color: #7d8795 !important;
    font-weight: 650 !important;
}

.aq-mobile-search-final input:focus {
    background: #ffffff !important;
    border-color: rgba(7, 152, 189, 0.42) !important;
    box-shadow: 0 0 0 3px rgba(7, 152, 189, 0.08) !important;
}

.aq-mobile-search-final button {
    height: 50px !important;
    border: 0 !important;
    border-radius: 15px !important;
    background: #0798bd !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 19px !important;
    box-shadow: 0 10px 20px rgba(7, 152, 189, 0.15) !important;
}

.aq-mobile-account-area-final {
    padding: 0 22px 18px !important;
    border-bottom: 1px solid #edf2f6 !important;
}

.aq-mobile-user-mini-card {
    min-height: 70px !important;
    padding: 13px 14px !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 0% 0%, rgba(7, 152, 189, 0.10), transparent 190px),
        #f8fbfc !important;
    border: 1px solid #e6edf3 !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 18px !important;
    align-items: center !important;
    gap: 12px !important;
    color: #17202b !important;
    text-decoration: none !important;
}

.aq-mobile-user-avatar {
    width: 42px !important;
    height: 42px !important;
    border-radius: 15px !important;
    background: #eef9fc !important;
    color: #0798bd !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 19px !important;
}

.aq-mobile-user-info {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
}

.aq-mobile-user-info strong {
    color: #111827 !important;
    font-size: 14.2px !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.aq-mobile-user-info small {
    color: #738091 !important;
    font-size: 11.8px !important;
    font-weight: 600 !important;
}

.aq-mobile-user-mini-card > i {
    color: #94a3b8 !important;
    font-size: 13px !important;
}

.aq-mobile-guest-mini {
    padding: 14px !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 0% 0%, rgba(7, 152, 189, 0.08), transparent 200px),
        #f8fbfc !important;
    border: 1px solid #e6edf3 !important;
}

.aq-mobile-guest-mini strong {
    display: block !important;
    color: #111827 !important;
    font-size: 14.4px !important;
    font-weight: 850 !important;
    line-height: 1.3 !important;
}

.aq-mobile-guest-mini span {
    display: block !important;
    margin-top: 5px !important;
    color: #738091 !important;
    font-size: 12px !important;
    font-weight: 550 !important;
    line-height: 1.5 !important;
}

.aq-mobile-auth-buttons-final {
    margin-top: 13px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
}

.aq-mobile-auth-link {
    min-height: 42px !important;
    border-radius: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 12.8px !important;
    font-weight: 850 !important;
}

.aq-mobile-auth-login {
    background: #ffffff !important;
    color: #34404c !important;
    border: 1px solid #dfe7ee !important;
}

.aq-mobile-auth-register {
    background: #0798bd !important;
    color: #ffffff !important;
    border: 1px solid #0798bd !important;
    box-shadow: 0 10px 20px rgba(7, 152, 189, 0.15) !important;
}

.aq-mobile-nav-title {
    padding: 17px 22px 8px !important;
}

.aq-mobile-nav-title span {
    display: block !important;
    color: #111827 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: -0.2px !important;
}

.aq-mobile-nav-title small {
    display: block !important;
    margin-top: 3px !important;
    color: #7d8795 !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
}

.aq-mobile-nav-final {
    padding: 0 22px 22px !important;
    display: grid !important;
    gap: 0 !important;
}

.aq-mobile-category-item {
    border-bottom: 1px solid #edf2f6 !important;
}

.aq-mobile-category-row-btn,
.aq-mobile-category-row-link {
    width: 100% !important;
    min-height: 53px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #34404c !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 13px !important;
    text-decoration: none !important;
    text-align: left !important;
    font-size: 13.4px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

.aq-mobile-category-row-btn span,
.aq-mobile-category-row-link span {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.aq-mobile-category-row-btn i,
.aq-mobile-category-row-link i {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    border-radius: 12px !important;
    background: transparent !important;
    color: #94a3b8 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease !important;
}

.aq-mobile-category-row-btn:hover,
.aq-mobile-category-row-link:hover,
.aq-mobile-category-item.is-open .aq-mobile-category-row-btn {
    color: #056f8d !important;
}

.aq-mobile-category-row-btn:hover i,
.aq-mobile-category-row-link:hover i,
.aq-mobile-category-item.is-open .aq-mobile-category-row-btn i {
    background: #eef9fc !important;
    color: #0798bd !important;
}

.aq-mobile-category-item.is-open .aq-mobile-category-row-btn i {
    transform: rotate(180deg) !important;
}

.aq-mobile-subcategory-list {
    display: none !important;
    padding: 0 0 12px 10px !important;
}

.aq-mobile-category-item.is-open .aq-mobile-subcategory-list {
    display: grid !important;
    gap: 3px !important;
}

.aq-mobile-subcategory-list a {
    position: relative !important;
    min-height: 38px !important;
    padding: 0 8px 0 18px !important;
    border-radius: 11px !important;
    color: #5b6777 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    font-size: 12.4px !important;
    font-weight: 650 !important;
    line-height: 1.35 !important;
}

.aq-mobile-subcategory-list a::before {
    content: "" !important;
    position: absolute !important;
    left: 6px !important;
    top: 50% !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 999px !important;
    background: #cbd5e1 !important;
    transform: translateY(-50%) !important;
}

.aq-mobile-subcategory-list a:hover {
    background: #eef9fc !important;
    color: #056f8d !important;
}

.aq-mobile-subcategory-list a:hover::before,
.aq-mobile-subcategory-all::before {
    background: #0798bd !important;
}

.aq-mobile-subcategory-all {
    color: #056f8d !important;
    font-weight: 850 !important;
}

@media (max-width: 390px) {
    .aq-mobile-panel-head-final,
    .aq-mobile-search-final,
    .aq-mobile-account-area-final,
    .aq-mobile-nav-title,
    .aq-mobile-nav-final {
        padding-left: 17px !important;
        padding-right: 17px !important;
    }

    .aq-mobile-auth-buttons-final {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================================
   AquaShop Mobil Menü - Accordion Boşluk ve Oksuz Link Düzeltme
========================================================= */

.aq-mobile-category-item {
    border-bottom: 1px solid #edf2f6 !important;
}

.aq-mobile-category-item.is-open {
    padding-bottom: 12px !important;
}

.aq-mobile-category-row-btn,
.aq-mobile-category-row-link {
    min-height: 54px !important;
}

.aq-mobile-category-item.is-open .aq-mobile-category-row-btn {
    margin-bottom: 10px !important;
    padding: 0 14px !important;
    border-radius: 15px !important;
    background: #eef9fc !important;
    color: #056f8d !important;
}

.aq-mobile-category-item.is-open .aq-mobile-category-row-btn i {
    background: transparent !important;
    color: #0798bd !important;
}

.aq-mobile-subcategory-list {
    margin-top: 0 !important;
    padding: 0 0 0 14px !important;
    border-bottom: 0 !important;
    display: none !important;
}

.aq-mobile-category-item.is-open .aq-mobile-subcategory-list {
    display: grid !important;
    gap: 7px !important;
}

.aq-mobile-subcategory-list a {
    min-height: 42px !important;
    padding: 0 12px 0 22px !important;
    border: 1px solid #edf2f6 !important;
    border-radius: 13px !important;
    background: #ffffff !important;
}

.aq-mobile-subcategory-list a:hover {
    background: #eef9fc !important;
    border-color: rgba(7, 152, 189, 0.18) !important;
}

.aq-mobile-category-no-icon {
    justify-content: flex-start !important;
    padding-right: 0 !important;
}

.aq-mobile-category-no-icon::after {
    display: none !important;
    content: none !important;
}

.aq-mobile-category-no-icon span {
    max-width: 100% !important;
}

/* =========================================================
   AquaShop Mobil Menü - Yazı Link / Ok Ayrı Alan Final
   - Yazıya tıklayınca kategoriye gider
   - Sadece oka tıklayınca alt kategori açılır
   - Hover yapışıklığı giderildi
========================================================= */

.aq-mobile-category-item {
    border-bottom: 1px solid #edf2f6 !important;
}

.aq-mobile-category-line {
    min-height: 56px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 42px !important;
    align-items: center !important;
    gap: 10px !important;
}

.aq-mobile-category-line.no-children {
    grid-template-columns: minmax(0, 1fr) !important;
}

.aq-mobile-category-title-link {
    min-width: 0 !important;
    min-height: 56px !important;
    padding: 0 !important;
    color: #34404c !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    font-size: 13.4px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    border-radius: 14px !important;
    transition: color 180ms ease, background 180ms ease, padding 180ms ease !important;
}

.aq-mobile-category-title-link span {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.aq-mobile-category-title-link:hover {
    color: #056f8d !important;
    background: transparent !important;
}

.aq-mobile-category-toggle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border: 0 !important;
    border-radius: 13px !important;
    background: transparent !important;
    color: #94a3b8 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    cursor: pointer !important;
    transition: background 180ms ease, color 180ms ease !important;
}

.aq-mobile-category-toggle i {
    font-size: 13px !important;
    transition: transform 180ms ease !important;
}

.aq-mobile-category-toggle:hover,
.aq-mobile-category-item.is-open .aq-mobile-category-toggle {
    background: #eef9fc !important;
    color: #0798bd !important;
}

.aq-mobile-category-item.is-open .aq-mobile-category-toggle i {
    transform: rotate(180deg) !important;
}

.aq-mobile-category-item.is-open .aq-mobile-category-line {
    margin-bottom: 10px !important;
}

.aq-mobile-category-item.is-open .aq-mobile-category-title-link {
    padding-left: 14px !important;
    color: #056f8d !important;
    background: #eef9fc !important;
}

/* Eski row button/link stilleri yeni yapıya karışmasın */
.aq-mobile-category-row-btn,
.aq-mobile-category-row-link,
.aq-mobile-category-no-icon {
    background: transparent !important;
}

.aq-mobile-subcategory-list {
    display: none !important;
    padding: 0 0 12px 14px !important;
    border-bottom: 0 !important;
}

.aq-mobile-category-item.is-open .aq-mobile-subcategory-list {
    display: grid !important;
    gap: 7px !important;
}

.aq-mobile-subcategory-list a {
    min-height: 42px !important;
    padding: 0 12px 0 22px !important;
    border: 1px solid #edf2f6 !important;
    border-radius: 13px !important;
    background: #ffffff !important;
    color: #5b6777 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    font-size: 12.4px !important;
    font-weight: 650 !important;
    line-height: 1.35 !important;
}

.aq-mobile-subcategory-list a:hover {
    background: #eef9fc !important;
    border-color: rgba(7, 152, 189, 0.18) !important;
    color: #056f8d !important;
}

.aq-mobile-subcategory-all {
    color: #056f8d !important;
    font-weight: 850 !important;
}

/* =========================================================
   AquaShop SweetAlert Toast Tasarımı
========================================================= */

.aq-swal-toast {
    width: auto !important;
    min-width: 280px !important;
    max-width: 360px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14) !important;
    backdrop-filter: blur(14px) !important;
}

.aq-swal-toast .swal2-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    margin: 0 10px 0 0 !important;
    border-width: 2px !important;
}

.aq-swal-toast .swal2-icon-content {
    font-size: 18px !important;
}

.aq-swal-toast .swal2-title,
.aq-swal-toast-title {
    margin: 0 !important;
    padding: 0 !important;
    color: #18212f !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    text-align: left !important;
}

.aq-swal-toast .swal2-html-container {
    margin: 0 !important;
    padding: 0 !important;
}

.aq-swal-toast-progress {
    height: 2px !important;
    background: linear-gradient(90deg, #16bfd0, #0f9fb0) !important;
}

.swal2-container.swal2-top-end {
    padding-top: 18px !important;
    padding-right: 18px !important;
}

@media (max-width: 575px) {
    .aq-swal-toast {
        min-width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        border-radius: 14px !important;
    }

    .swal2-container.swal2-top-end {
        padding: 14px !important;
    }

    .aq-swal-toast .swal2-title,
    .aq-swal-toast-title {
        font-size: 13px !important;
    }
}

/* Sepete ekle butonu - yeni AJAX sepet sistemi */
.aq-cart-add-btn{
    width:38px;
    height:38px;
    border:0;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    cursor:pointer;
    background:#ecfeff;
    color:#0798bd;
    transition:all .2s ease;
}

.aq-cart-add-btn:hover{
    background:#0798bd;
    color:#fff;
    transform:translateY(-1px);
}

.aq-cart-add-btn.is-loading{
    pointer-events:none;
    opacity:.75;
}

.aq-cart-add-btn.is-loading i{
    animation:aqCartSpin .75s linear infinite;
}

.aq-cart-add-btn.is-added{
    background:#10b981;
    color:#fff;
}

@keyframes aqCartSpin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Yeni AJAX sepet butonu */
.aq-cart-add-btn{
    width:38px;
    height:38px;
    border:0;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    cursor:pointer;
    background:#ecfeff;
    color:#0798bd;
    transition:all .2s ease;
}

.aq-cart-add-btn:hover{
    background:#0798bd;
    color:#fff;
    transform:translateY(-1px);
}

.aq-cart-add-btn.is-loading{
    pointer-events:none;
    opacity:.75;
}

.aq-cart-add-btn.is-loading i{
    animation:aqCartSpin .75s linear infinite;
}

.aq-cart-add-btn.is-added{
    background:#10b981;
    color:#fff;
}

@keyframes aqCartSpin{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

/* Yeni AJAX sepet butonu */
.aq-cart-add-btn{
    width:38px;
    height:38px;
    border:0;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    cursor:pointer;
    background:#ecfeff;
    color:#0798bd;
    transition:all .2s ease;
}

.aq-cart-add-btn:hover{
    background:#0798bd;
    color:#fff;
    transform:translateY(-1px);
}

.aq-cart-add-btn.is-loading{
    pointer-events:none;
    opacity:.75;
}

.aq-cart-add-btn.is-loading i{
    animation:aqCartSpin .75s linear infinite;
}

.aq-cart-add-btn.is-added{
    background:#10b981;
    color:#fff;
}

@keyframes aqCartSpin{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

/* =========================================================
   AquaShop Sepet Drawer Final Tasarım
========================================================= */

.aq-header-action.aq-cart-open {
    position: relative;
}

.aq-header-action.aq-cart-open em {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    background: #0798bd;
    box-shadow: 0 8px 20px rgba(7, 152, 189, 0.26);
}

.aq-cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 9998;
}

.aq-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(460px, 100%);
    height: 100vh;
    background: #ffffff;
    box-shadow: -22px 0 50px rgba(15, 23, 42, 0.12);
    transform: translateX(100%);
    transition: transform .32s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.aq-cart-open .aq-cart-backdrop {
    opacity: 1;
    visibility: visible;
}

body.aq-cart-open .aq-cart-drawer {
    transform: translateX(0);
}

.aq-cart-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 24px 20px;
    border-bottom: 1px solid #e7edf3;
    background: #ffffff;
    flex-shrink: 0;
}

.aq-cart-head-text strong {
    display: block;
    color: #1f2937;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.aq-cart-head-text span {
    display: block;
    color: #7b8794;
    font-size: 14px;
    line-height: 1.45;
}

.aq-cart-close {
    width: 46px;
    height: 46px;
    border: 1px solid #e7edf3;
    border-radius: 16px;
    background: #f8fafc;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all .22s ease;
    flex-shrink: 0;
}

.aq-cart-close:hover {
    background: #eef6f8;
    border-color: #d7ebf0;
    color: #0798bd;
}

.aq-cart-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 18px 20px 20px;
    background: #fcfdff;
}

.aq-cart-body::-webkit-scrollbar {
    width: 8px;
}

.aq-cart-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.aq-cart-body::-webkit-scrollbar-track {
    background: transparent;
}

.aq-cart-empty {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 18px;
}

.aq-cart-empty-icon {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ecfeff 0%, #f0f9ff 100%);
    color: #0798bd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
}

.aq-cart-empty h3 {
    margin: 0 0 10px;
    color: #1f2937;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.aq-cart-empty p {
    margin: 0;
    max-width: 290px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

.aq-cart-mini-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.aq-cart-mini-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 14px;
    border: 1px solid #e7edf3;
    border-radius: 18px;
    background: #ffffff;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.aq-cart-mini-item:hover {
    border-color: #d8e6ee;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.aq-cart-mini-img {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    background: #f8fafc;
    overflow: hidden;
    display: block;
    border: 1px solid #edf2f7;
    flex-shrink: 0;
}

.aq-cart-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #ffffff;
}

.aq-cart-mini-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 2px;
}

.aq-cart-mini-title {
    color: #1f2937;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aq-cart-mini-title:hover {
    color: #0798bd;
}

.aq-cart-mini-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.aq-cart-mini-qty,
.aq-cart-mini-unit {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f4f8fb;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.aq-cart-mini-price {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.aq-cart-foot {
    flex-shrink: 0;
    padding: 18px 20px 20px;
    border-top: 1px solid #e7edf3;
    background: #ffffff;
}

.aq-cart-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid #eaf0f5;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff 0%, #f8fbfd 100%);
}

.aq-cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.aq-cart-summary-row span {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.aq-cart-summary-row strong {
    color: #1f2937;
    font-size: 15px;
    font-weight: 800;
}

.aq-cart-summary-total {
    padding-top: 10px;
    border-top: 1px dashed #d9e5ee;
}

.aq-cart-summary-total span {
    color: #1f2937;
    font-size: 15px;
    font-weight: 700;
}

.aq-cart-summary-total strong {
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.aq-cart-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.aq-cart-checkout,
.aq-cart-continue {
    min-height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: all .22s ease;
    cursor: pointer;
}

.aq-cart-checkout {
    border: none;
    background: linear-gradient(135deg, #0798bd 0%, #0ea5c6 100%);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(7, 152, 189, 0.24);
}

.aq-cart-checkout:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(7, 152, 189, 0.28);
    color: #ffffff;
}

.aq-cart-continue {
    border: 1px solid #d9e4ec;
    background: #ffffff;
    color: #1f2937;
}

.aq-cart-continue:hover {
    border-color: #bfd6df;
    background: #f8fbfd;
    color: #0798bd;
}

@media (max-width: 767.98px) {
    .aq-cart-drawer {
        width: 100%;
    }

    .aq-cart-head {
        padding: 20px 16px 16px;
    }

    .aq-cart-body {
        padding: 14px 14px 18px;
    }

    .aq-cart-foot {
        padding: 14px 14px 16px;
    }

    .aq-cart-mini-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        border-radius: 16px;
    }

    .aq-cart-mini-img {
        width: 76px;
        height: 76px;
        border-radius: 12px;
    }

    .aq-cart-mini-title {
        font-size: 14px;
    }

    .aq-cart-mini-price {
        font-size: 17px;
    }

    .aq-cart-summary-total strong {
        font-size: 22px;
    }

    .aq-cart-checkout,
    .aq-cart-continue {
        min-height: 48px;
        font-size: 14px;
    }
}

/* =========================================================
   AquaShop Tüm Kategoriler Sayfası
========================================================= */

.aq-all-categories-page {
    padding: 34px 0 64px;
    background: #ffffff;
}

.aq-all-categories-head {
    margin-bottom: 34px;
}

.aq-all-categories-head .aq-breadcrumb {
    margin-bottom: 14px;
}

.aq-all-categories-head h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1;
}

.aq-all-categories-head p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 0;
    color: #111827;
    font-size: 17px;
    font-weight: 500;
}

.aq-all-categories-head p strong {
    font-weight: 600;
}

.aq-all-categories-head p span {
    color: #9ca3af;
}

.aq-all-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.aq-category-index-card {
    min-height: 292px;
    border: 1px solid #dde3ea;
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.aq-category-index-card:hover {
    border-color: #cbd8e2;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.aq-category-index-card-head {
    min-height: 92px;
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #e5e9ef;
}

.aq-category-index-image {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.aq-category-index-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aq-category-index-title {
    min-width: 0;
    display: block;
}

.aq-category-index-title strong {
    display: block;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aq-category-index-title small {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.aq-category-index-card-head > i {
    color: #111827;
    font-size: 18px;
    transition: transform .2s ease, color .2s ease;
}

.aq-category-index-card:hover .aq-category-index-card-head > i {
    color: #0798bd;
    transform: translateX(2px);
}

.aq-category-index-children {
    display: flex;
    flex-direction: column;
    padding: 12px 24px 18px;
}

.aq-category-index-children a {
    min-height: 38px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    color: #2f3b48;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    transition: color .18s ease;
}

.aq-category-index-children a:hover {
    color: #0798bd;
}

.aq-category-index-children a span {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.aq-category-index-children a span i {
    color: #64748b;
    font-size: 14px;
}

.aq-category-index-children a em {
    min-width: 34px;
    height: 26px;
    padding: 0 10px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
}

.aq-category-index-more {
    margin-top: 4px;
    color: #0798bd !important;
    font-weight: 600 !important;
}

.aq-category-index-empty {
    min-height: 160px;
    display: flex;
    align-items: center;
    padding: 18px 24px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.aq-all-categories-empty {
    min-height: 340px;
    border: 1px solid #e5e9ef;
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-align: center;
    padding: 34px;
}

.aq-all-categories-empty span {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    background: #ecfeff;
    color: #0798bd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 16px;
}

.aq-all-categories-empty h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 24px;
    font-weight: 800;
}

.aq-all-categories-empty p {
    margin: 0;
    max-width: 360px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .aq-all-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .aq-all-categories-page {
        padding: 24px 0 46px;
    }

    .aq-all-categories-head {
        margin-bottom: 22px;
    }

    .aq-all-categories-head h1 {
        font-size: 38px;
        letter-spacing: -0.045em;
    }

    .aq-all-categories-head p {
        font-size: 15px;
        margin-top: 12px;
    }

    .aq-all-categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aq-category-index-card {
        min-height: auto;
        border-radius: 14px;
    }

    .aq-category-index-card-head {
        grid-template-columns: 58px minmax(0, 1fr) 18px;
        min-height: 82px;
        gap: 12px;
        padding: 15px 16px;
    }

    .aq-category-index-image {
        width: 48px;
        height: 48px;
    }

    .aq-category-index-title strong {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .aq-category-index-title small {
        font-size: 13px;
    }

    .aq-category-index-children {
        padding: 10px 17px 15px;
    }

    .aq-category-index-children a {
        min-height: 36px;
        font-size: 15px;
    }

    .aq-category-index-children a em {
        min-width: 30px;
        height: 24px;
        font-size: 12px;
    }
}

/* =========================================================
   AquaShop Ürün Kartı Etiketleri Final
   - Sadece yeni ve indirimli ürünlerde görünür
========================================================= */

.aq-badge.aq-badge-new {
    background: #e60023 !important;
    color: #ffffff !important;
}

.aq-badge.aq-badge-sale {
    background: #0ea5bd !important;
    color: #ffffff !important;
}

/* =========================================================
   AquaShop Ürün Kartı Panel Etiketleri
   - Sadece panelden seçili Yeni / Çok Satan durumları görünür
========================================================= */

.aq-badge.aq-badge-new {
    background: #e60023 !important;
    color: #ffffff !important;
}

.aq-badge.aq-badge-bestseller {
    background: #0798bd !important;
    color: #ffffff !important;
}

/* =========================================================
   AquaShop Ürün Kartı Çoklu Etiket Final
   - Yeni ve Çok Satan aynı anda yan yana görünür
   - İndirim etiketi kullanılmaz
========================================================= */

.aq-product-image {
    position: relative;
}

.aq-badge-list {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: 52px !important;
    z-index: 4 !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    pointer-events: none !important;
}

.aq-badge-list .aq-badge {
    position: static !important;
    left: auto !important;
    top: auto !important;
    min-width: auto !important;
    min-height: 24px !important;
    height: 24px !important;
    padding: 0 9px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    letter-spacing: -0.1px !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12) !important;
}

.aq-badge-list .aq-badge-new {
    background: #e60023 !important;
    color: #ffffff !important;
}

.aq-badge-list .aq-badge-bestseller {
    background: #0798bd !important;
    color: #ffffff !important;
}

/* Mobilde daha küçük ve zarif */
@media (max-width: 767px) {
    .aq-badge-list {
        top: 10px !important;
        left: 10px !important;
        right: 44px !important;
        gap: 5px !important;
    }

    .aq-badge-list .aq-badge {
        min-height: 20px !important;
        height: 20px !important;
        padding: 0 7px !important;
        font-size: 8.3px !important;
        border-radius: 999px !important;
    }
}




/* =========================================================
   AquaShop Header Hesabım Menü Final Düzeltme
   - Mevcut renkleri bozmaz
   - Hesabım / Favorilerim / Sepetim aynı hizada kalır
   - Hesabım dropdown kategori menüsünün altında kalmaz
========================================================= */

.aq-header {
    overflow: visible !important;
}

.aq-header-main {
    position: relative !important;
    z-index: 30 !important;
    overflow: visible !important;
}

.aq-header-main-inner {
    position: relative !important;
    overflow: visible !important;
}

.aq-header-menu,
.aq-header-menu-overflow {
    position: relative !important;
    z-index: 10 !important;
}

.aq-header-actions {
    position: relative !important;
    z-index: 40 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    overflow: visible !important;
}

.aq-header-actions .aq-account-menu {
    position: relative !important;
    z-index: 50 !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 38px !important;
    overflow: visible !important;
}

.aq-header-actions .aq-header-action,
.aq-header-actions .aq-account-trigger {
    height: 38px !important;
    min-height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.aq-header-actions .aq-header-action i,
.aq-header-actions .aq-account-trigger i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.aq-header-actions .aq-header-action span,
.aq-header-actions .aq-account-trigger span {
    line-height: 1 !important;
    margin: 0 !important;
}

.aq-account-dropdown {
    position: absolute !important;
    top: calc(100% + 11px) !important;
    right: 0 !important;
    z-index: 99999 !important;
    width: 300px !important;
    max-width: calc(100vw - 24px) !important;
    background: #ffffff !important;
    color: #334155 !important;
    overflow: visible !important;
}

.aq-account-dropdown::before {
    z-index: 1 !important;
}

.aq-account-menu.is-open .aq-account-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

.aq-account-user span {
    display: block;
    margin-top: 4px;
    color: #738091;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aq-account-dropdown-link {
    text-decoration: none !important;
}

.aq-account-logout-btn {
    cursor: pointer;
}

/* Header kategori satırı hesap dropdown üstüne binmesin */
.aq-main-menu,
.aq-main-menu-overflow,
.aq-menu-visible-categories,
.aq-menu-more,
.aq-menu-more-dropdown {
    z-index: 10 !important;
}

/* Tablet ve mobil mevcut buton tasarımını korur */
@media (max-width: 991px) {
    .aq-header-actions .aq-account-menu {
        height: 38px !important;
    }

    .aq-account-dropdown {
        right: 0 !important;
        width: 292px !important;
    }
}

@media (max-width: 575px) {
    .aq-account-dropdown {
        right: -4px !important;
        width: min(292px, calc(100vw - 24px)) !important;
    }
}

/* =========================================================
   AquaShop Header Hesabım Dropdown Taşma Düzeltmesi
========================================================= */

.aq-account-menu {
    position: relative;
}

.aq-account-dropdown {
    width: 374px;
    max-width: calc(100vw - 24px);
    box-sizing: border-box;
}

.aq-account-dropdown,
.aq-account-dropdown * {
    box-sizing: border-box;
}

.aq-account-guest-head {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.aq-account-guest-head strong {
    display: block;
    max-width: 100%;
}

.aq-account-guest-text {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: normal;
    word-break: normal;
    line-height: 1.45;
}

@media (max-width: 575px) {
    .aq-account-dropdown {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        right: 0;
        left: auto;
    }
}


/* =========================================================
   AquaShop SweetAlert Toast
========================================================= */

.aq-toast-popup {
    width: auto !important;
    min-width: 310px !important;
    max-width: min(390px, calc(100vw - 24px)) !important;
    padding: 13px 15px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14) !important;
    font-family: inherit !important;
}

.aq-toast-title {
    color: #17202b !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
}

.aq-toast-progress {
    background: rgba(7, 152, 189, 0.45) !important;
}

/* =========================================================
   AquaShop Ürün Görselleri Tam Görünsün
   - Ürün resimleri üstten/alttan kesilmesin
   - Kart, kategori, carousel ve favori liste görselleri tam sığsın
========================================================= */

.aq-product-image {
    background: #f8fafc;
}

.aq-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 10px;
    background: #ffffff;
}

/* Favorilerim liste görünümü */
.aq-favorite-list-image {
    background: #ffffff;
}

.aq-favorite-list-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 8px;
    background: #ffffff;
}

/* Eski favori kart yapısı kalırsa o da bozulmasın */
.aq-favorite-image {
    background: #ffffff;
}

.aq-favorite-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 10px;
    background: #ffffff;
}

/* =========================================================
   AquaShop Blog Liste ve Detay Sayfaları
========================================================= */

.aq-blog-list-page,
.aq-blog-detail-page {
    padding: 34px 0 70px;
    background: #ffffff;
}

.aq-blog-list-hero,
.aq-blog-detail-hero {
    margin-bottom: 26px;
    padding: 30px 28px;
    border-radius: 26px;
    border: 1px solid #e5edf3;
    background:
        radial-gradient(circle at right center, rgba(7, 152, 189, 0.12), transparent 36%),
        linear-gradient(90deg, rgba(7, 152, 189, 0.06), rgba(255, 255, 255, 0.96)),
        #f8fbfc;
}

.aq-blog-list-hero span,
.aq-blog-detail-hero span {
    display: block;
    color: #056f8d;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.aq-blog-list-hero h1,
.aq-blog-detail-hero h1 {
    margin: 8px 0 0;
    color: #111827;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -0.9px;
}

.aq-blog-list-hero p,
.aq-blog-detail-hero p {
    max-width: 820px;
    margin: 12px 0 0;
    color: #667386;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
}

.aq-blog-list-grid {
    margin-top: 18px;
}

.aq-blog-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.aq-blog-empty {
    min-height: 310px;
    padding: 38px;
    border-radius: 24px;
    border: 1px dashed rgba(7, 152, 189, 0.28);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.aq-blog-empty i {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
    border-radius: 24px;
    background: rgba(7, 152, 189, 0.09);
    color: #0798bd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.aq-blog-empty strong {
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.aq-blog-empty span {
    margin-top: 7px;
    color: #64748b;
    font-size: 14px;
    font-weight: 650;
}

.aq-blog-detail-image {
    overflow: hidden;
    border-radius: 28px;
    background: #f8fafc;
    border: 1px solid #e5edf3;
    margin-bottom: 26px;
    max-height: 480px;
}

.aq-blog-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
}

.aq-blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 26px;
    align-items: flex-start;
}

.aq-blog-detail-content {
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.aq-blog-detail-content h2,
.aq-blog-detail-content h3,
.aq-blog-detail-content h4 {
    margin: 28px 0 12px;
    color: #0f172a;
    line-height: 1.22;
}

.aq-blog-detail-content h2 {
    font-size: 26px;
}

.aq-blog-detail-content h3 {
    font-size: 21px;
}

.aq-blog-detail-content p {
    margin: 0 0 16px;
}

.aq-blog-detail-content ul,
.aq-blog-detail-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.aq-blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.aq-blog-detail-side {
    position: sticky;
    top: calc(var(--aq-fixed-stack-height, 0px) + 20px);
}

.aq-blog-side-card {
    padding: 22px;
    border-radius: 24px;
    background: #f8fbfc;
    border: 1px solid #e5edf3;
    display: grid;
    gap: 8px;
}

.aq-blog-side-card strong {
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
}

.aq-blog-side-card span {
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.aq-blog-side-card a {
    width: fit-content;
    min-height: 38px;
    margin-top: 8px;
    padding: 0 14px;
    border-radius: 999px;
    background: #0798bd;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
}

.aq-blog-related {
    margin-top: 42px;
}

@media (max-width: 991px) {
    .aq-blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .aq-blog-detail-side {
        position: static;
    }
}

@media (max-width: 767px) {
    .aq-blog-list-page,
    .aq-blog-detail-page {
        padding: 24px 0 54px;
    }

    .aq-blog-list-hero,
    .aq-blog-detail-hero {
        padding: 22px;
        border-radius: 22px;
    }

    .aq-blog-detail-content {
        padding: 21px;
        border-radius: 22px;
        font-size: 14px;
    }

    .aq-blog-detail-image {
        border-radius: 22px;
    }

    .aq-blog-detail-image img {
        min-height: 230px;
    }
}

/* =========================================================
   AquaShop Global Breadcrumb Final
   - Kategori sayfasındaki düzgün breadcrumb görünümü tüm sayfalarda kullanılır
   - Blog / Hesabım / Sepet / Ürün detay sayfalarında aynı çizgide durur
========================================================= */

.aq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7a8491;
    font-family: "Inter", Arial, sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px;
    padding: 0;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.aq-breadcrumb::-webkit-scrollbar {
    display: none;
}

.aq-breadcrumb a {
    color: #7a8491;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    transition: color 180ms ease;
}

.aq-breadcrumb a:hover {
    color: var(--aq-blue-dark);
}

.aq-breadcrumb span {
    color: #667386;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
}

.aq-breadcrumb i {
    color: #a2acb8;
    font-size: 11px;
    line-height: 1;
}

/* Breadcrumb header altına yapışmasın, çok aşağı da düşmesin */
.aq-page-breadcrumb-wrap {
    padding: 16px 0 0;
    background: #ffffff;
}

.aq-page-breadcrumb-wrap .aq-breadcrumb {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .aq-breadcrumb {
        gap: 7px;
        font-size: 11px;
        margin-bottom: 10px;
        padding-bottom: 2px;
    }

    .aq-breadcrumb i {
        font-size: 10px;
    }

    .aq-page-breadcrumb-wrap {
        padding-top: 12px;
    }
}

/* =========================================================
   AquaShop Blog Detay Temiz Görünüm
   - Mevcut blog kart tasarımını bozmaz
   - Kategori sayfalarına dokunmaz
========================================================= */

.aq-blog-detail-clean {
    max-width: 1040px;
    margin: 0 auto;
}

.aq-blog-detail-clean-image {
    overflow: hidden;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #e5edf3;
    margin-bottom: 24px;
}

.aq-blog-detail-clean-image img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.aq-blog-detail-clean-content {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.aq-blog-detail-clean-content h1,
.aq-blog-detail-clean-content h2,
.aq-blog-detail-clean-content h3,
.aq-blog-detail-clean-content h4 {
    color: #111827;
    line-height: 1.25;
    margin: 26px 0 12px;
}

.aq-blog-detail-clean-content h2 {
    font-size: 25px;
}

.aq-blog-detail-clean-content h3 {
    font-size: 21px;
}

.aq-blog-detail-clean-content p {
    margin: 0 0 16px;
}

.aq-blog-detail-clean-content ul,
.aq-blog-detail-clean-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.aq-blog-detail-clean-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.aq-blog-related-title {
    margin-top: 44px !important;
}

@media (max-width: 767px) {
    .aq-blog-detail-clean-image {
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .aq-blog-detail-clean-image img {
        max-height: 280px;
    }

    .aq-blog-detail-clean-content {
        padding: 20px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .aq-blog-detail-clean-content h2 {
        font-size: 21px;
    }

    .aq-blog-detail-clean-content h3 {
        font-size: 18px;
    }
}


/* =========================================================
   AquaShop Blog Liste Sayfası
   - Kategori index üst yapısını kullanır
   - Sadece blog sayfası küçük ekleri
========================================================= */

.aq-blog-index-page .aq-blog-grid {
    margin-top: 0;
}

.aq-blog-pagination {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Blog yoksa kategori empty görünümüyle uyumlu dursun */
.aq-blog-index-page .aq-all-categories-empty {
    margin-top: 0;
}

/* =========================================================
   AquaShop Blog Sayfaları
   - Kategori index üst yapısını kullanır
   - Sadece blog liste/detay içerik alanlarını düzenler
========================================================= */


.aq-blog-index-grid {
    margin-top: 0;
}

.aq-blog-pagination {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blog detay */

.aq-blog-detail-wrap {
    max-width: 1040px;
    margin: 0 auto;
}

.aq-blog-detail-image {
    overflow: hidden;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #e5edf3;
    margin-bottom: 22px;
}

.aq-blog-detail-image img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.aq-blog-detail-content {
    padding: 28px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.aq-blog-detail-content h1,
.aq-blog-detail-content h2,
.aq-blog-detail-content h3,
.aq-blog-detail-content h4 {
    color: #111827;
    line-height: 1.25;
    margin: 26px 0 12px;
}

.aq-blog-detail-content h2 {
    font-size: 25px;
}

.aq-blog-detail-content h3 {
    font-size: 21px;
}

.aq-blog-detail-content p {
    margin: 0 0 16px;
}

.aq-blog-detail-content ul,
.aq-blog-detail-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.aq-blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.aq-blog-related-head {
    margin: 44px 0 20px;
    text-align: center;
}

.aq-blog-related-head span {
    display: inline-flex;
    color: var(--aq-blue-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.aq-blog-related-head h2 {
    margin: 7px 0 0;
    color: #111827;
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 760;
    letter-spacing: -0.6px;
}

.aq-blog-related-grid {
    margin-top: 0;
}

@media (max-width: 767px) {
    .aq-blog-detail-image {
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .aq-blog-detail-image img {
        max-height: 280px;
    }

    .aq-blog-detail-content {
        padding: 20px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .aq-blog-detail-content h2 {
        font-size: 21px;
    }

    .aq-blog-detail-content h3 {
        font-size: 18px;
    }

    .aq-blog-related-head {
        margin-top: 34px;
    }
}
/* =========================================================
   AquaShop Blog Liste Sayfası Final
   - Kategori sayfasındaki breadcrumb yapısını kullanır
   - Blog üst alanı ve kartları premium görünüme taşır
   - Diğer sayfalara karışmaz
========================================================= */

.aq-blog-index-page {
    padding: 12px 0 70px !important;
    background: #ffffff !important;
}

.aq-blog-index-page .aq-container {
    width: min(100% - 44px, var(--aq-container)) !important;
}

/* Üst alan */
.aq-blog-page-head {
    margin-bottom: 28px !important;
}

.aq-blog-page-head .aq-breadcrumb {
    margin: 0 0 12px !important;
}

.aq-blog-page-head-card {
    min-height: 142px;
    padding: 28px 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at right center, rgba(7, 152, 189, 0.12), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #f8fbfc 100%);
    border: 1px solid #e3edf3;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.035);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aq-blog-page-head-card > span {
    width: fit-content;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(7, 152, 189, 0.08);
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.aq-blog-page-head-card h1 {
    margin: 9px 0 0;
    color: #111827;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -1.1px;
}

.aq-blog-page-head-card p {
    margin: 12px 0 0;
    color: #667386;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

/* Blog grid */
.aq-blog-list-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

/* Blog kart */
.aq-blog-list-card {
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.aq-blog-list-card:hover {
    border-color: rgba(7, 152, 189, 0.26);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.075);
}

.aq-blog-list-image {
    position: relative;
    display: block;
    height: 190px;
    overflow: hidden;
    background: #f8fafc;
}

.aq-blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.aq-blog-list-card:hover .aq-blog-list-image img {
    transform: scale(1.035);
}

.aq-blog-list-content {
    padding: 18px 18px 20px;
}

.aq-blog-list-content > span {
    width: fit-content;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eef9fc;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.aq-blog-list-content h2 {
    min-height: 48px;
    margin: 11px 0 0;
    color: #111827;
    font-size: 16px;
    font-weight: 780;
    line-height: 1.35;
    letter-spacing: -0.25px;
}

.aq-blog-list-content h2 a {
    color: inherit;
    text-decoration: none;
}

.aq-blog-list-content h2 a:hover {
    color: #056f8d;
}

.aq-blog-list-content p {
    min-height: 62px;
    margin: 10px 0 0;
    color: #738091;
    font-size: 12.7px;
    font-weight: 500;
    line-height: 1.62;
}

.aq-blog-list-link {
    margin-top: 14px;
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.aq-blog-list-link:hover {
    color: #0798bd;
}

.aq-blog-pagination {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Boş durum */
.aq-blog-empty-state {
    margin-top: 0 !important;
}

/* Responsive */
@media (max-width: 1240px) {
    .aq-blog-list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .aq-blog-index-page .aq-container {
        width: min(100% - 30px, var(--aq-container)) !important;
    }

    .aq-blog-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aq-blog-page-head-card {
        min-height: 128px;
        padding: 24px;
        border-radius: 22px;
    }

    .aq-blog-page-head-card h1 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .aq-blog-index-page {
        padding: 22px 0 54px !important;
    }

    .aq-blog-index-page .aq-container {
        width: min(100% - 24px, var(--aq-container)) !important;
    }

    .aq-blog-page-head {
        margin-bottom: 20px !important;
    }

    .aq-blog-page-head-card {
        min-height: auto;
        padding: 20px;
        border-radius: 19px;
    }

    .aq-blog-page-head-card > span {
        min-height: 21px;
        padding: 0 8px;
        font-size: 9.5px;
    }

    .aq-blog-page-head-card h1 {
        margin-top: 7px;
        font-size: 28px;
        line-height: 1.12;
        letter-spacing: -0.7px;
    }

    .aq-blog-page-head-card p {
        margin-top: 9px;
        font-size: 12.8px;
        line-height: 1.55;
    }

    .aq-blog-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .aq-blog-list-card {
        border-radius: 16px;
    }

    .aq-blog-list-image {
        height: 125px;
    }

    .aq-blog-list-content {
        padding: 12px 11px 14px;
    }

    .aq-blog-list-content > span {
        min-height: 18px;
        padding: 0 6px;
        font-size: 7.8px;
    }

    .aq-blog-list-content h2 {
        min-height: 44px;
        margin-top: 8px;
        font-size: 11px;
        line-height: 1.35;
        letter-spacing: -0.1px;
    }

    .aq-blog-list-content p {
        display: none;
    }

    .aq-blog-list-link {
        margin-top: 9px;
        font-size: 10px;
    }
}

@media (max-width: 420px) {
    .aq-blog-list-grid {
        gap: 10px;
    }

    .aq-blog-list-image {
        height: 116px;
    }

    .aq-blog-list-content h2 {
        font-size: 10.6px;
    }
}
/* =========================================================
   AquaShop Blog Detay Sayfası Final
   - Kategori index üst yapısını kullanır
   - Detay içeriği kontrollü ve premium görünür
   - Diğer sayfalara karışmaz
========================================================= */

.aq-blog-detail-page {
    padding: 12px 0 70px !important;
    background: #ffffff !important;
}

.aq-blog-detail-page .aq-container {
    width: min(100% - 44px, var(--aq-container)) !important;
}

/* Üst alan */
.aq-blog-detail-head {
    margin-bottom: 28px !important;
}

.aq-blog-detail-head .aq-breadcrumb {
    margin: 0 0 12px !important;
}

.aq-blog-detail-head-card {
    min-height: 154px;
    padding: 28px 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at right center, rgba(7, 152, 189, 0.12), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #f8fbfc 100%);
    border: 1px solid #e3edf3;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.035);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aq-blog-detail-head-card > span {
    width: fit-content;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(7, 152, 189, 0.08);
    color: #056f8d;
    display: inline-flex;
    align-items: center;
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.aq-blog-detail-head-card h1 {
    max-width: 980px;
    margin: 9px 0 0;
    color: #111827;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -1.1px;
}

.aq-blog-detail-head-card p {
    margin: 12px 0 0;
    color: #667386;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

/* Detay layout */
.aq-blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 26px;
    align-items: flex-start;
}

.aq-blog-detail-main {
    min-width: 0;
}

.aq-blog-detail-image {
    overflow: hidden;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #e5edf3;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    margin-bottom: 22px;
}

.aq-blog-detail-image img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

.aq-blog-detail-content {
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    color: #334155;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.85;
}

.aq-blog-detail-content h1,
.aq-blog-detail-content h2,
.aq-blog-detail-content h3,
.aq-blog-detail-content h4 {
    color: #111827;
    line-height: 1.25;
    margin: 28px 0 12px;
    letter-spacing: -0.35px;
}

.aq-blog-detail-content h1:first-child,
.aq-blog-detail-content h2:first-child,
.aq-blog-detail-content h3:first-child,
.aq-blog-detail-content h4:first-child {
    margin-top: 0;
}

.aq-blog-detail-content h2 {
    font-size: 25px;
    font-weight: 800;
}

.aq-blog-detail-content h3 {
    font-size: 21px;
    font-weight: 780;
}

.aq-blog-detail-content p {
    margin: 0 0 16px;
}

.aq-blog-detail-content ul,
.aq-blog-detail-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.aq-blog-detail-content li {
    margin-bottom: 7px;
}

.aq-blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.aq-blog-detail-content a {
    color: #056f8d;
    font-weight: 750;
    text-decoration: none;
}

.aq-blog-detail-content a:hover {
    color: #0798bd;
}

/* Sidebar */
.aq-blog-detail-sidebar {
    position: sticky;
    top: calc(var(--aq-fixed-stack-height, 0px) + 18px);
    display: grid;
    gap: 14px;
}

.aq-blog-side-card {
    padding: 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.aq-blog-side-card strong {
    display: block;
    color: #111827;
    font-size: 17px;
    font-weight: 850;
    letter-spacing: -0.25px;
}

.aq-blog-side-card > span {
    display: block;
    margin-top: 8px;
    color: #667386;
    font-size: 12.8px;
    font-weight: 500;
    line-height: 1.55;
}

.aq-blog-side-card > a {
    width: fit-content;
    min-height: 38px;
    margin-top: 15px;
    padding: 0 14px;
    border-radius: 999px;
    background: #0798bd;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
}

.aq-blog-side-card > a:hover {
    background: #057f9d;
}

.aq-blog-side-list {
    margin-top: 14px;
    display: grid;
    gap: 11px;
}

.aq-blog-side-list a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: #111827;
    text-decoration: none;
}

.aq-blog-side-list a:hover em {
    color: #056f8d;
}

.aq-blog-side-list span {
    width: 58px;
    height: 50px;
    overflow: hidden;
    border-radius: 13px;
    background: #f8fafc;
}

.aq-blog-side-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aq-blog-side-list em {
    color: #334155;
    font-size: 12.3px;
    font-weight: 750;
    line-height: 1.35;
    font-style: normal;
    transition: color 180ms ease;
}

.aq-blog-related-mobile {
    display: none;
}

.aq-blog-related-head {
    margin: 44px 0 20px;
    text-align: center;
}

.aq-blog-related-head span {
    display: inline-flex;
    color: var(--aq-blue-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.aq-blog-related-head h2 {
    margin: 7px 0 0;
    color: #111827;
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 760;
    letter-spacing: -0.6px;
}

/* Responsive */
@media (max-width: 1180px) {
    .aq-blog-detail-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 22px;
    }
}

@media (max-width: 991px) {
    .aq-blog-detail-page .aq-container {
        width: min(100% - 30px, var(--aq-container)) !important;
    }

    .aq-blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .aq-blog-detail-sidebar {
        display: none;
    }

    .aq-blog-related-mobile {
        display: block;
    }

    .aq-blog-detail-head-card {
        min-height: 136px;
        padding: 24px;
        border-radius: 22px;
    }

    .aq-blog-detail-head-card h1 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .aq-blog-detail-page {
        padding: 22px 0 54px !important;
    }

    .aq-blog-detail-page .aq-container {
        width: min(100% - 24px, var(--aq-container)) !important;
    }

    .aq-blog-detail-head {
        margin-bottom: 20px !important;
    }

    .aq-blog-detail-head-card {
        min-height: auto;
        padding: 20px;
        border-radius: 19px;
    }

    .aq-blog-detail-head-card > span {
        min-height: 21px;
        padding: 0 8px;
        font-size: 9.5px;
    }

    .aq-blog-detail-head-card h1 {
        margin-top: 7px;
        font-size: 27px;
        line-height: 1.12;
        letter-spacing: -0.7px;
    }

    .aq-blog-detail-head-card p {
        margin-top: 9px;
        font-size: 12.8px;
        line-height: 1.55;
    }

    .aq-blog-detail-image {
        border-radius: 18px;
        margin-bottom: 16px;
    }

    .aq-blog-detail-image img {
        max-height: 280px;
    }

    .aq-blog-detail-content {
        padding: 20px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 1.72;
    }

    .aq-blog-detail-content h2 {
        font-size: 21px;
    }

    .aq-blog-detail-content h3 {
        font-size: 18px;
    }

    .aq-blog-related-head {
        margin-top: 34px;
    }
}
/* =========================================================
   AquaShop Instagram Alanı - Dikey Kart Görünümü
   Mevcut carousel yapısını bozmadan Instagram postlarını
   dikey/premium görünümde gösterir.
========================================================= */

.aq-instagram-section .aq-instagram-carousel{
    overflow:hidden;
}

.aq-instagram-section .aq-instagram-card{
    position:relative;
    display:block;
    width:100%;
    aspect-ratio:4 / 5;
    border-radius:18px;
    overflow:hidden;
    background:#f8fafc;
    border:1px solid rgba(226,232,240,.95);
    box-shadow:0 10px 26px rgba(15,23,42,.06);
    transform:translateZ(0);
}

.aq-instagram-section .aq-instagram-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .32s ease, filter .32s ease;
}

.aq-instagram-section .aq-instagram-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(180deg, rgba(15,23,42,0) 42%, rgba(15,23,42,.62) 100%);
    opacity:.92;
    pointer-events:none;
}

.aq-instagram-section .aq-instagram-card span{
    position:absolute;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:2;
    min-height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:0 10px;
    border-radius:999px;
    color:#ffffff;
    background:rgba(15,23,42,.42);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(8px);
    font-size:11.5px;
    font-weight:900;
    line-height:1;
    white-space:nowrap;
}

.aq-instagram-section .aq-instagram-card span i{
    font-size:14px;
}

.aq-instagram-section .aq-instagram-card:hover img{
    transform:scale(1.045);
    filter:saturate(1.05);
}

.aq-instagram-section .aq-instagram-card:hover{
    box-shadow:0 16px 34px rgba(15,23,42,.10);
}

/* Mobilde fazla uzun görünmesin diye oranı biraz dengeliyoruz */
@media(max-width:768px){
    .aq-instagram-section .aq-instagram-card{
        aspect-ratio:4 / 5.25;
        border-radius:16px;
    }

    .aq-instagram-section .aq-instagram-card span{
        min-height:31px;
        left:8px;
        right:8px;
        bottom:8px;
        font-size:10.8px;
    }
}

/* =========================================================
   AquaShop Instagram Alanı - Reels Tam Görünüm 9:16
   Görsel kırpılmaz, tamamı dikey Reels kartında görünür.
========================================================= */

.aq-instagram-section .aq-instagram-card{
    position:relative;
    display:block;
    width:100%;
    aspect-ratio:9 / 16;
    border-radius:18px;
    overflow:hidden;
    background:#0f172a;
    border:1px solid rgba(226,232,240,.95);
    box-shadow:0 12px 30px rgba(15,23,42,.10);
    transform:translateZ(0);
}

.aq-instagram-section .aq-instagram-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
    object-position:center;
    background:#0f172a;
    transition:transform .32s ease, filter .32s ease;
}

.aq-instagram-section .aq-instagram-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(180deg, rgba(15,23,42,0) 52%, rgba(15,23,42,.72) 100%);
    pointer-events:none;
}

.aq-instagram-section .aq-instagram-card span{
    position:absolute;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:2;
    min-height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:0 10px;
    border-radius:999px;
    color:#ffffff;
    background:rgba(15,23,42,.46);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(8px);
    font-size:11.5px;
    font-weight:900;
    line-height:1;
    white-space:nowrap;
}

.aq-instagram-section .aq-instagram-card span i{
    font-size:14px;
}

.aq-instagram-section .aq-instagram-card:hover img{
    transform:scale(1.015);
    filter:saturate(1.05);
}

.aq-instagram-section .aq-instagram-card:hover{
    box-shadow:0 18px 38px rgba(15,23,42,.14);
}

/* Mobilde Reels oranı korunur ama kart biraz daha zarifleşir */
@media(max-width:768px){
    .aq-instagram-section .aq-instagram-card{
        aspect-ratio:9 / 16;
        border-radius:16px;
    }

    .aq-instagram-section .aq-instagram-card span{
        min-height:31px;
        left:8px;
        right:8px;
        bottom:8px;
        font-size:10.8px;
    }
}
/* =========================================================
   AquaShop Instagram Alanı - Final Reels Dikey Tam Görünüm
   9:16 dikey kart + görsel kırpılmadan tam görünür.
========================================================= */

.aq-instagram-section .aq-loop-viewport{
    overflow:hidden !important;
}

.aq-instagram-section .aq-loop-track{
    align-items:stretch !important;
}

.aq-instagram-section .aq-instagram-carousel .aq-instagram-card{
    position:relative !important;
    display:block !important;
    width:100% !important;

    /* Reels dikey oran */
    aspect-ratio:9 / 16 !important;

    /* Eski kare/landscape yüksekliği varsa eziyoruz */
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;

    border-radius:18px !important;
    overflow:hidden !important;
    background:#0f172a !important;
    border:1px solid rgba(226,232,240,.95) !important;
    box-shadow:0 12px 30px rgba(15,23,42,.10) !important;
    transform:translateZ(0) !important;
}

.aq-instagram-section .aq-instagram-carousel .aq-instagram-card img{
    width:100% !important;
    height:100% !important;
    display:block !important;

    /* Tam görünsün, kırpılmasın */
    object-fit:contain !important;
    object-position:center center !important;

    background:#0f172a !important;
    border-radius:0 !important;
    transform:none !important;
}

.aq-instagram-section .aq-instagram-carousel .aq-instagram-card::before{
    content:"" !important;
    position:absolute !important;
    inset:0 !important;
    z-index:1 !important;
    background:linear-gradient(
        180deg,
        rgba(15,23,42,0) 52%,
        rgba(15,23,42,.72) 100%
    ) !important;
    pointer-events:none !important;
}

.aq-instagram-section .aq-instagram-carousel .aq-instagram-card span{
    position:absolute !important;
    left:10px !important;
    right:10px !important;
    bottom:10px !important;
    z-index:2 !important;

    min-height:34px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:7px !important;

    padding:0 10px !important;
    border-radius:999px !important;
    color:#ffffff !important;
    background:rgba(15,23,42,.46) !important;
    border:1px solid rgba(255,255,255,.22) !important;
    backdrop-filter:blur(8px) !important;

    font-size:11.5px !important;
    font-weight:900 !important;
    line-height:1 !important;
    white-space:nowrap !important;
}

.aq-instagram-section .aq-instagram-carousel .aq-instagram-card span i{
    font-size:14px !important;
}

.aq-instagram-section .aq-instagram-carousel .aq-instagram-card:hover img{
    transform:scale(1.01) !important;
    filter:saturate(1.05) !important;
}

.aq-instagram-section .aq-instagram-carousel .aq-instagram-card:hover{
    box-shadow:0 18px 38px rgba(15,23,42,.14) !important;
}

/* Masaüstünde 5 tane Reels yan yana çok büyük görünmesin diye kart içeriğini dengeliyoruz */
@media(min-width:992px){
    .aq-instagram-section .aq-instagram-carousel .aq-loop-track > *{
        align-self:stretch !important;
    }

    .aq-instagram-section .aq-instagram-carousel .aq-instagram-card{
        max-height:520px !important;
    }
}

/* Mobilde tam Reels oranı korunur */
@media(max-width:768px){
    .aq-instagram-section .aq-instagram-carousel .aq-instagram-card{
        aspect-ratio:9 / 16 !important;
        border-radius:16px !important;
        max-height:none !important;
    }

    .aq-instagram-section .aq-instagram-carousel .aq-instagram-card span{
        min-height:31px !important;
        left:8px !important;
        right:8px !important;
        bottom:8px !important;
        font-size:10.8px !important;
    }
}

/* =========================================================
   AquaShop Instagram Feed Net Görünüm Düzeltmesi
   - Instagram postları her zaman net görünür
   - Hover beklemeden blur / opacity / flu görünüm kaldırılır
   - Mevcut carousel ve kart yapısı bozulmaz
========================================================= */

.aq-instagram-section .aq-instagram-card,
.aq-instagram-section .aq-instagram-card:hover,
.aq-instagram-section .aq-instagram-card:focus,
.aq-instagram-section .aq-instagram-card:focus-visible {
    filter: none !important;
    opacity: 1 !important;
}

.aq-instagram-section .aq-instagram-card img,
.aq-instagram-section .aq-instagram-card:hover img,
.aq-instagram-section .aq-instagram-card:focus img,
.aq-instagram-section .aq-instagram-card:focus-visible img {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    -webkit-filter: none !important;
    image-rendering: auto !important;
}

/* Eğer kart üstünde blur veren pseudo overlay varsa etkisizleştir */
.aq-instagram-section .aq-instagram-card::before,
.aq-instagram-section .aq-instagram-card::after {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Hover'da sadece etiket/ikon davranışı kalsın, görsel netliği değişmesin */
.aq-instagram-section .aq-instagram-card:hover img {
    filter: none !important;
    opacity: 1 !important;
}
/* =========================================================
   AquaShop Hero Slider 1280x512 Sabit Oran Final
   - Ana slider oranı: 1280 / 512
   - 2560x1024, 1920x768, 1600x640 gibi aynı oranda küçülür
   - Masaüstü / tablet / mobil aynı oranı korur
   - Mevcut slider, ok, dots ve tıklanabilir görsel yapısı bozulmaz
========================================================= */

.aq-hero-clean-area {
    padding: 28px 0 34px !important;
    background: #ffffff !important;
}

.aq-hero-clean-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

.aq-hero-clean-slider,
.aq-hero-slider.aq-hero-clean-slider {
    position: relative !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 1280 / 512 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #f4f7f9 !important;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08) !important;
    isolation: isolate !important;
}

/* Eski slider iç çerçeve / karartma / overlay efektleri kapalı kalır */
.aq-hero-clean-slider::after,
.aq-hero-clean-slide::before,
.aq-hero-slide::before {
    display: none !important;
}

/* Slide alanı oranlı slider kutusunu tam doldurur */
.aq-hero-clean-slide,
.aq-hero-slide.aq-hero-clean-slide {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.01);
    transition:
        opacity 700ms ease,
        visibility 700ms ease,
        transform 1100ms ease !important;
    cursor: pointer;
}

.aq-hero-clean-slide.is-active,
.aq-hero-slide.aq-hero-clean-slide.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

/* 1280x512 hazırlanmış görseller tam oturur */
.aq-hero-clean-slide img,
.aq-hero-slide.aq-hero-clean-slide img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 1 !important;
    transition: transform 900ms ease;
}

/* Hover'da çok hafif canlılık; ölçüyü bozmaz */
.aq-hero-clean-slider:hover .aq-hero-clean-slide.is-active img {
    transform: scale(1.01) !important;
}

/* Eski yazı ve buton alanı kapalı */
.aq-hero-content,
.aq-hero-buttons {
    display: none !important;
}

/* Slider okları oranlı alan içinde kalır */
.aq-hero-clean-slider .aq-hero-arrow {
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18) !important;
    z-index: 10 !important;
}

.aq-hero-clean-slider .aq-hero-arrow:hover {
    background: rgba(7, 152, 189, 0.88) !important;
    border-color: rgba(7, 152, 189, 0.88) !important;
}

.aq-hero-clean-slider .aq-hero-prev {
    left: 16px !important;
}

.aq-hero-clean-slider .aq-hero-next {
    right: 16px !important;
}

/* Noktalar slider alt merkezde kalır */
.aq-hero-clean-slider .aq-hero-dots {
    bottom: 18px !important;
    z-index: 10 !important;
}

.aq-hero-clean-slider .aq-hero-dots button {
    width: 8px !important;
    height: 8px !important;
    background: rgba(255, 255, 255, 0.58) !important;
}

.aq-hero-clean-slider .aq-hero-dots button.is-active {
    width: 28px !important;
    background: #0798bd !important;
}

/* Tablet: aynı oran korunur */
@media (max-width: 991px) {
    .aq-hero-clean-area {
        padding: 20px 0 28px !important;
    }

    .aq-hero-clean-slider,
    .aq-hero-slider.aq-hero-clean-slider {
        aspect-ratio: 1280 / 512 !important;
        border-radius: 20px !important;
    }
}

/* Mobil: aynı oran korunur, sadece boşluk ve köşe küçülür */
@media (max-width: 767px) {
    .aq-hero-clean-area {
        padding: 16px 0 24px !important;
    }

    .aq-hero-clean-slider,
    .aq-hero-slider.aq-hero-clean-slider {
        aspect-ratio: 1280 / 512 !important;
        border-radius: 18px !important;
    }

    .aq-hero-clean-slider .aq-hero-arrow {
        width: 34px !important;
        height: 34px !important;
    }

    .aq-hero-clean-slider .aq-hero-prev {
        left: 10px !important;
    }

    .aq-hero-clean-slider .aq-hero-next {
        right: 10px !important;
    }

    .aq-hero-clean-slider .aq-hero-dots {
        bottom: 12px !important;
    }
}

/* Küçük mobil: yine 1280/512 oranı korunur */
@media (max-width: 480px) {
    .aq-hero-clean-slider,
    .aq-hero-slider.aq-hero-clean-slider {
        aspect-ratio: 1280 / 512 !important;
        border-radius: 16px !important;
    }
}
/* =========================================================
   AquaShop Header Canlı Arama
   - İlk 5 ürün önerisi
   - Görsel + ürün adı + kategori/marka + fiyat
   - Header, hesap dropdown ve sepet yapısını bozmaz
========================================================= */

.aq-search-live {
    position: relative !important;
    z-index: 130 !important;
}

.aq-search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 260;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e3ebf1;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
    overflow: hidden;
}

.aq-search-suggestions[hidden] {
    display: none !important;
}

.aq-search-suggestions-inner {
    max-height: 430px;
    overflow-y: auto;
    padding: 8px;
}

.aq-search-suggestion-head {
    padding: 8px 10px 10px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .65px;
    text-transform: uppercase;
}

.aq-search-suggestion-item {
    min-height: 74px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 9px;
    border-radius: 14px;
    color: #17202b;
    text-decoration: none;
    transition: background 180ms ease, transform 180ms ease;
}

.aq-search-suggestion-item:hover,
.aq-search-suggestion-item.is-active {
    background: #f4fbfd;
    transform: translateX(2px);
}

.aq-search-suggestion-image {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #edf3f7;
    overflow: hidden;
}

.aq-search-suggestion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aq-search-suggestion-info {
    min-width: 0;
}

.aq-search-suggestion-info strong {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.28;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aq-search-suggestion-info span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 11.2px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aq-search-suggestion-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    white-space: nowrap;
}

.aq-search-suggestion-price strong {
    color: #056f8d;
    font-size: 13px;
    font-weight: 850;
}

.aq-search-suggestion-price del {
    color: #9aa5b2;
    font-size: 10.5px;
    font-weight: 600;
}

.aq-search-suggestion-empty,
.aq-search-suggestion-loading {
    min-height: 86px;
    padding: 18px;
    border-radius: 14px;
    background: #f8fbfc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
}

.aq-search-suggestion-empty i,
.aq-search-suggestion-loading i {
    color: #0798bd;
    font-size: 18px;
}

@media (max-width: 991px) {
    .aq-search-live {
        z-index: 260 !important;
    }

    .aq-search-suggestions {
        top: calc(100% + 7px);
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .aq-search-suggestions-inner {
        max-height: 360px;
        padding: 7px;
    }

    .aq-search-suggestion-item {
        min-height: 68px;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 10px;
        padding: 8px;
    }

    .aq-search-suggestion-image {
        width: 52px;
        height: 52px;
        border-radius: 13px;
    }

    .aq-search-suggestion-info strong {
        font-size: 12.3px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .aq-search-suggestion-info span {
        font-size: 10.8px;
    }

    .aq-search-suggestion-price {
        grid-column: 2;
        align-items: flex-start;
        margin-top: -2px;
    }

    .aq-search-suggestion-price strong {
        font-size: 12.5px;
    }
}
