: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%;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 10001;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--aq-blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    transform: translateY(-140%);
    transition: transform var(--aq-transition);
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
}

.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-form {
    margin: 0;
}

.aq-cart-mini {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--aq-blue-light);
    color: var(--aq-blue-dark);
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    font-size: 15px;
}

.aq-ph {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--aq-blue-dark);
    font-size: 38px;
    font-weight: 800;
    background: var(--aq-blue-light);
}

.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;
    }
}

/* =========================================================
   Tema İ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;
    }
}

/* =========================================================
   Tema 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;
    }
}

/* =========================================================
   Tema 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;
}

/* =========================================================
   Tema 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;
    }
}

/* =========================================================
   Tema 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;
    }
}


/* =========================================================
   Tema 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;
    }
}


/* =========================================================
   Tema 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;
    }
}

/* =========================================================
   Tema 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;
    }
}

/* =========================================================
   Tema 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;
    }
}

/* =========================================================
   Tema 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;
    }
}

/* =========================================================
   Tema 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;
    }
}

/* =========================================================
   Tema 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;
    }
}

/* =========================================================
   Tema Ü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;
    }
}

/* =========================================================
   Tema 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;
    }
}

/* ── Favori toggle ikonu: boş (outline) ↔ dolu (3D kalp) ────── */
.aq-fav-btn .aq-fav-on { display: none !important; }
.aq-fav-btn.is-active .aq-fav-off { display: none !important; }
.aq-fav-btn.is-active .aq-fav-on { display: inline-flex !important; align-items: center; line-height: 0; }
