:root {
    --color-gold: #c9a227;
    --color-gold-dark: #a8861f;
    --color-gold-light: #e8cf6e;
    --color-cream: #faf6ee;
    --color-dark: #1a1a1a;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1da851;
}

* { font-family: 'Poppins', sans-serif; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }

html {
    overflow-x: hidden;
    width: 100%;
}
body {
    background: #fff;
    color: #1a1a1a;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}
.container, .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}
.row {
    overflow-x: hidden;
    margin-left: 0;
    margin-right: 0;
}
.row > [class*='col-'] {
    padding-left: 12px;
    padding-right: 12px;
}
img {
    max-width: 100%;
}
*, *::before, *::after { box-sizing: border-box; }

.text-gold { color: var(--color-gold) !important; }
.bg-gold { background-color: var(--color-gold) !important; }
.bg-cream { background-color: var(--color-cream) !important; }
.bg-gold-gradient {
    background: linear-gradient(135deg, #d4a82b 0%, #b8891f 50%, #a07818 100%) !important;
}
.border-gold { border-color: var(--color-gold) !important; }

.btn-gold {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
    font-weight: 500;
    transition: all .3s;
}
.btn-gold:hover, .btn-gold:focus {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201,162,39,.35);
}
.btn-gold:active { background: var(--color-gold-dark); border-color: var(--color-gold-dark); color: #fff; }

.btn-white {
    background: #fff;
    color: var(--color-gold-dark);
    border: none;
    transition: all .3s;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    border-color: var(--color-whatsapp);
    font-weight: 500;
    transition: all .3s;
    white-space: normal;
    line-height: 1.3;
    word-wrap: break-word;
    padding: .55rem .7rem;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
}
.btn-whatsapp:hover {
    background: var(--color-whatsapp-dark);
    border-color: var(--color-whatsapp-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37,211,102,.35);
}

.badge-gold {
    background: var(--color-gold);
    color: #fff;
    font-weight: 500;
    padding: .45rem .9rem;
    border-radius: 2rem;
    letter-spacing: .5px;
}

.top-bar { font-size: 13px; position: relative; z-index: 10; overflow: hidden; }
.top-bar a:hover { color: var(--color-gold) !important; }
.top-bar .container { flex-wrap: wrap; }
.topbar-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #ffffff !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(220,53,69,.4);
    white-space: nowrap;
    transition: all .25s;
}
.topbar-badge:hover { filter: brightness(1.05); color: #ffe08a !important; }
.topbar-contact { color: #ffffff !important; transition: color .2s; white-space: nowrap; }
.topbar-social {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .25s;
}
.topbar-social:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
    color: #fff !important;
}

.logo-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f1e3a5, var(--color-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(201,162,39,.3);
}
.navbar-brand .site-logo {
    display: block;
    height: 54px;
    max-height: 54px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}
@media (max-width: 1199.98px) {
    .navbar-brand .site-logo { height: 50px; max-height: 50px; }
}
@media (max-width: 991.98px) {
    .navbar-brand .site-logo { height: 46px; max-height: 46px; }
}
@media (max-width: 767.98px) {
    .navbar-brand .site-logo { height: 42px; max-height: 42px; }
}
@media (max-width: 575.98px) {
    .navbar-brand .site-logo { height: 38px; max-height: 38px; }
}
.admin-sidebar-logo-wrap {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    min-height: 72px;
    margin-bottom: 8px;
}
.admin-sidebar-logo {
    display: block;
    object-fit: contain;
    width: auto;
    max-width: 100%;
    height: 46px;
    max-height: 46px;
}
@media (max-width: 1199.98px) {
    .admin-sidebar-logo-wrap { min-height: 66px; padding: 8px 12px; }
    .admin-sidebar-logo { height: 42px; max-height: 42px; }
}
@media (max-width: 991.98px) {
    .admin-sidebar-logo-wrap { min-height: 62px; padding: 8px 10px; border-radius: 10px; }
    .admin-sidebar-logo { height: 40px; max-height: 40px; }
}
@media (max-width: 767.98px) {
    .admin-sidebar-logo-wrap { min-height: 58px; padding: 7px 10px; }
    .admin-sidebar-logo { height: 36px; max-height: 36px; }
}
.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-dark);
    letter-spacing: .3px;
}
.navbar .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: .48rem .85rem !important;
    color: #333 !important;
    transition: color .2s;
}
.navbar .dropdown-menu .dropdown-item {
    font-size: 0.92rem;
    padding: .5rem 1rem;
}
.navbar,
.navbar .container,
.navbar .container-fluid,
.navbar .navbar-collapse,
.navbar .navbar-nav,
.navbar .nav-item.dropdown {
    overflow: visible !important;
}
.navbar .dropdown-menu {
    z-index: 2000;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--color-gold) !important;
}
.search-form .form-control { border-right: 0; }
.search-form .btn-gold {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-color: var(--color-gold);
}

.min-vh-60 { min-height: 60vh; }
.min-vh-80 { min-height: 80vh; }

.hero-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(232,207,110,.12) 0, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201,162,39,.08) 0, transparent 40%),
        var(--color-cream);
    padding: 60px 0 80px;
}
.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
}
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.book-stack {
    position: relative;
    width: 300px;
    height: 380px;
}
.stacked-book {
    position: absolute;
    border-radius: 6px;
    box-shadow: 0 12px 35px rgba(0,0,0,.2);
}
.book-1 {
    width: 200px;
    height: 290px;
    left: 20px;
    top: 20px;
    background: linear-gradient(135deg, #8b5a2b, #5d3b1d);
    transform: rotate(-10deg);
}
.book-2 {
    width: 200px;
    height: 290px;
    left: 60px;
    top: 50px;
    background: linear-gradient(135deg, #2d4a5c, #152833);
    transform: rotate(5deg);
}
.book-3 {
    width: 200px;
    height: 290px;
    left: 100px;
    top: 80px;
    background: linear-gradient(135deg, #b8891f, #8b6915);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-3deg);
}
.float-badge {
    position: absolute;
    background: #fff;
    border-radius: 2rem;
    padding: .7rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    font-weight: 600;
    font-size: .9rem;
}
.badge-1 { top: 30px; left: 0; }
.badge-2 { top: 160px; right: 20px; }
.badge-3 { bottom: 40px; left: 40px; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: .5rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 3px;
}

.category-card {
    background: #fff;
    padding: 22px 12px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
    transition: all .3s;
    color: #222;
    display: block;
    border: 2px solid transparent;
}
.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 25px rgba(201,162,39,.2);
    color: var(--color-gold-dark);
}
.category-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8edd0, var(--color-cream));
    color: var(--color-gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #fff;
    transform: scale(1.05);
}

.book-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
    transition: all .35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.book-image {
    position: relative;
    background: linear-gradient(135deg, #f5efe0, #ebe3cc);
    padding: 28px 20px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.book-image img {
    height: 210px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 22px rgba(0,0,0,.2);
    transition: transform .35s;
}
.book-card:hover .book-image img { transform: scale(1.04); }
.book-badges {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.book-info {
    padding: 18px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.book-title {
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 1.35;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.book-title a:hover { color: var(--color-gold) !important; }
.book-info > small.text-gold {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.3;
    min-height: 18px;
}
.book-info > small.text-muted {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.3;
    min-height: 20px;
}
.book-price { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.new-price { font-size: 1.3rem; }
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: .95rem;
}

.page-header {
    background: linear-gradient(135deg, var(--color-cream), #f3ead4);
    border-bottom: 1px solid #e8dfc7;
}

.sidebar-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
    position: sticky;
    top: 100px;
}
.category-list li a {
    padding: .55rem .8rem;
    border-radius: 8px;
    color: #444;
    font-size: .95rem;
    margin-bottom: 2px;
}
.category-list li a:hover, .category-list li a.active {
    background: var(--color-cream);
    color: var(--color-gold-dark);
}

.detail-image-box img {
    max-height: 500px;
    object-fit: contain;
}
.price-box .old-price { font-size: 1.1rem; }
.spec-item {
    padding: .6rem;
    background: var(--color-cream);
    border-radius: 10px;
}
.spec-item i { font-size: 1.2rem; width: 32px; text-align: center; }

.features-section .feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    transition: all .3s;
}
.features-section .feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section h2 { font-size: 2rem; }

.about-image .about-box {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
}
.about-image .about-box:hover { transform: translateY(-5px) rotate(-2deg); }
.about-card {
    transition: all .3s;
    border-radius: 14px;
}
.about-card:hover { transform: translateY(-5px); }
.about-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-box { transition: all .3s; }
.stat-box:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.1); }
.stat-icon { color: var(--color-gold); font-size: 1.4rem; }

.contact-info-card {
    transition: all .3s;
    border-left: 4px solid var(--color-gold);
    border-radius: 0 12px 12px 0;
}
.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.1) !important;
}
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.map-box iframe { filter: grayscale(15%); }

.footer h5 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 600; }
.footer a { transition: color .2s; }
/* Footer'daki TÜM linkler (footer-link class) normalde BEYAZ, hover GOLD */
.footer .footer-link {
    color: #ffffff !important;
    text-decoration: none;
    transition: color .2s, padding-left .2s;
    display: inline-block;
}
.footer .footer-link:hover {
    color: var(--color-gold) !important;
    padding-left: 4px;
}
.footer ul.list-unstyled small li,
.footer small.text-muted,
.footer li.text-muted { color: #c9c1ae !important; }
.footer ul.list-unstyled.text-muted li { color: #c9c1ae !important; }
.footer p.text-muted.small { color: #b9b19d !important; }
/* İletişim kolonundaki ikon+metin hizalama */
.footer li.text-muted i { color: var(--color-gold) !important; }
.social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.12);
    color: #ffffff !important;
}
.social-icon:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    color: #fff !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px; height: 60px;
    bottom: 30px; right: 30px;
    background-color: var(--color-whatsapp);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(37,211,102,.5);
    z-index: 999;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 2px 2px 22px rgba(37,211,102,.7);
}
.my-float { margin-top: 4px; }
@media (max-width: 768px) {
    .whatsapp-float { width: 55px; height: 55px; font-size: 26px; bottom: 20px; right: 20px; }
}

/* ==== ADMIN PANEL ==== */
.admin-body { background: #f5f7fb; }
.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
}
.admin-sidebar .nav-link {
    border-radius: 8px;
    padding: .65rem 1rem !important;
    margin-bottom: 2px;
    font-size: .95rem;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(201,162,39,.15);
    color: var(--color-gold) !important;
}
.admin-main {
    min-width: 0;
    flex: 1;
    min-height: 100vh;
}
.admin-topbar { position: sticky; top: 0; z-index: 50; }
@media (max-width: 991px) {
    .admin-sidebar { display: none; }
}

.stat-card { transition: all .3s; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,.08) !important; }
.stat-ic {
    width: 55px; height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}
.ic-gold { background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold)); }
.ic-blue { background: linear-gradient(135deg, #6ea8fe, #0d6efd); }
.ic-green { background: linear-gradient(135deg, #86dfa5, #198754); }
.ic-red { background: linear-gradient(135deg, #f5a3ac, #dc3545); }

.progress-bar.bg-gold { background-color: var(--color-gold) !important; }

.action-card {
    transition: all .3s;
    min-height: 150px;
}
.action-card:hover { transform: translateY(-4px); filter: brightness(1.05); }

.admin-login-page {
    background:
        radial-gradient(circle at 20% 20%, rgba(201,162,39,.15) 0, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(201,162,39,.1) 0, transparent 40%),
        var(--color-cream);
}
.admin-login-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 28px rgba(201,162,39,.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === EXTRA RESPONSIVE FIXES === */
.container { max-width: 1200px; }
.navbar .navbar-nav { align-items: flex-start; }
@media (max-width: 1199px) {
    .hero-title { font-size: 2.6rem; }
}
@media (max-width: 991px) {
    .navbar-toggler { border: 0 !important; padding: 8px; }
    .navbar .search-form { margin-top: 12px; margin-right: 0 !important; width: 100%; }
    .navbar .navbar-nav { padding: 8px 0; width: 100%; }
    .navbar .nav-link { padding: 10px 0 !important; }
    .hero-section { padding: 40px 0 60px; }
    .hero-title { font-size: 2.2rem; }
    .hero-image { height: 400px; max-width: 100%; overflow: hidden; }
    .book-stack { width: 260px; height: 330px; }
    .stacked-book { width: 170px; height: 250px; }
    .sidebar-card { position: static; }
    .section-title { font-size: 1.9rem; }
    .top-bar .container { padding: 0 10px; }
    .banner-section h2 { font-size: 1.5rem; }
    .detail-image-box img { max-height: 420px; }
    .footer .col-lg-4, .footer .col-lg-3, .footer .col-lg-2 { flex: 0 0 auto; width: 50%; }
    .admin-wrapper { flex-direction: column; }
    .admin-topbar { padding: 10px 15px !important; }
    .admin-main .p-4 { padding: 20px 15px !important; }
    .row.g-5, .row.g-4, .row.gy-5, .row.gy-4 { --bs-gutter-x: 1rem !important; --bs-gutter-y: 1rem !important; }
    main.container, main.container-fluid { padding-left: 12px !important; padding-right: 12px !important; }
    .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .py-md-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .px-4, .px-md-5 { padding-left: 12px !important; padding-right: 12px !important; }
}
@media (max-width: 767px) {
    .top-bar .container { justify-content: center !important; }
    .top-bar .container > div:first-child,
    .top-bar .container > div:last-child { justify-content: center; width: 100%; }
    .topbar-badge { display: inline-flex; }
    .hero-section { padding: 30px 0 50px; }
    .hero-title { font-size: 1.9rem; }
    .d-flex.gap-5 { gap: 2rem !important; flex-wrap: wrap; }
    .d-flex.gap-5 > div { flex: 0 0 auto; width: 30%; }
    .hero-image { height: 320px; margin-top: 20px; }
    .book-stack { width: 200px; height: 260px; margin: 0 auto; }
    .stacked-book { width: 140px; height: 205px; }
    .book-1 { left: 0; top: 10px; }
    .book-2 { left: 30px; top: 35px; }
    .book-3 { left: 60px; top: 60px; }
    .stacked-book i { font-size: 3rem !important; }
    .float-badge { font-size: .75rem; padding: .5rem .9rem; }
    .badge-1 { top: 10px; left: 0; }
    .badge-2 { top: 110px; right: 10px; }
    .badge-3 { bottom: 20px; left: 20px; }
    .btn-gold.btn-lg, .btn-outline-dark.btn-lg { padding: 12px 24px !important; font-size: .95rem; }
    .btn.btn-lg.rounded-pill { padding: 10px 24px !important; font-size: .95rem; }
    .categories-section .row.g-3 > div { flex: 0 0 auto; width: 50%; }
    .book-card .book-image { min-height: 200px; padding: 20px 15px; }
    .book-card .book-image img { height: 170px; }
    .book-card .book-info { padding: 14px; }
    .book-card .book-title { min-height: auto; font-size: .95rem; }
    .new-price { font-size: 1.1rem; }
    .section-title { font-size: 1.6rem; }
    .features-section .col-lg-3 { margin-bottom: 10px; }
    .price-box { padding: 20px !important; }
    .price-box .display-6 { font-size: 1.7rem; }
    .btn.btn-whatsapp.btn-lg, .btn-gold.btn-lg { padding: 12px 20px !important; width: 100%; }
    .info-specs .spec-item { padding: .5rem; }
    .about-image { padding: 20px !important; }
    .about-image .about-box { min-height: 110px; }
    .about-image .about-box i { font-size: 2rem !important; }
    .contact-section iframe { min-height: 350px !important; }
    .footer .col-lg-4, .footer .col-lg-3, .footer .col-lg-2 { width: 100%; }
    .footer h5 { margin-top: 15px; }
    .footer > .container > .row > div { margin-bottom: 20px; }
    .page-header h1 { font-size: 1.7rem; }
    .stat-box { padding: 18px !important; }
    .stat-box h3 { font-size: 1.5rem; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 18px; right: 18px; }
    /* Admin responsive */
    .admin-wrapper > aside { display: none !important; }
    .admin-topbar { padding: 8px 10px !important; font-size: .85rem; }
    .admin-main .p-4 { padding: 15px 10px !important; }
    .table thead th { font-size: .8rem; white-space: nowrap; }
    .table tbody td { font-size: .8rem; vertical-align: middle; }
    .stat-card p small { font-size: .7rem; }
    .stat-card h3 { font-size: 1.4rem; }
    .bg-white.rounded.shadow-sm .p-4 { padding: 15px !important; }
    .d-flex.justify-content-between { flex-wrap: wrap; gap: 10px; }
    .h5.fw-bold.mb-0 { font-size: 1rem; }
    .admin-login-page .card-body { padding: 30px 20px !important; }
    /* Form inputs responsive */
    input[type="text"], input[type="number"], input[type="email"], input[type="search"],
    input[type="password"], input[type="date"], select, textarea {
        max-width: 100%;
    }
    .d-grid { width: 100%; }
}
@media (max-width: 479px) {
    .hero-title { font-size: 1.6rem; }
    .btn-gold.btn-lg, .btn-outline-dark.btn-lg { font-size: .85rem; padding: 10px 18px !important; }
    .categories-section .row.g-3 > div { width: 50%; }
    .d-flex.gap-5 { gap: 1rem !important; }
    .d-flex.gap-5 > div h2 { font-size: 1.4rem !important; }
    .top-bar small { font-size: 11px; }
    .topbar-badge { font-size: 10px; padding: 3px 10px; }
    .brand-text { font-size: 1.2rem !important; }
    .logo-box { width: 38px; height: 38px; }
    .book-card .book-image { min-height: 180px; padding: 15px; }
    .book-card .book-image img { height: 150px; }
    .section-title { font-size: 1.4rem; }
    .book-title { font-size: .9rem !important; }
    .new-price { font-size: 1rem; }
    .old-price { font-size: .85rem; }
    .btn-whatsapp.btn-sm, .btn-outline-dark.btn-sm {
        font-size: .8rem;
        padding: 6px 8px;
    }
    .contact-info-card { padding: 18px !important; }
    .bg-cream.p-5 { padding: 25px 18px !important; }
    .bg-gold-gradient.p-5 { padding: 25px 18px !important; }
    .team-section.p-5 { padding: 25px 15px !important; }
    .footer { padding-top: 30px !important; }
    .price-box .display-6 { font-size: 1.4rem; }
    .map-box iframe { min-height: 300px !important; }
}

/* === TABLE RESPONSIVE HELPER === */
.table { width: 100%; }
.table-responsive { -webkit-overflow-scrolling: touch; }
