/* =========================================
   Base Variables & Resets
   ========================================= */
:root {
    --primary-color: #000000;
    --secondary-color: #f8f8f8;
    --text-color: #333333;
    --text-light: #777777;
    --accent-color: #c71617;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --container-width: 1320px;
    --padding-x: 20px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

.section-padding { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(199, 22, 23, 0.2);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* =========================================
   Preloader
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    max-width: 150px;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

/* =========================================
   Announcement Bar
   ========================================= */
.announcement-bar {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.announcement-bar p { margin: 0; }

/* =========================================
   Header
   ========================================= */
.header {
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-color);
}

.logo-img {
    max-height: 40px;
    width: auto;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav > ul {
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li > a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 28px 0;
    display: block;
    color: var(--text-color);
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after {
    width: 100%;
}

.main-nav > ul > li > a:hover {
    color: var(--accent-color);
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-link {
    font-size: 1.2rem;
    position: relative;
    color: var(--text-color);
}

.icon-link:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* =========================================
   Premium Mega Menu
   ========================================= */
.has-mega-menu {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    display: flex;
    max-width: var(--container-width);
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-radius: 0 0 12px 12px;
    border-top: 3px solid var(--accent-color);
    height: 550px;
    overflow: hidden;
    position: relative;
}

.mega-sidebar {
    width: 260px;
    min-width: 260px;
    background: #fcfcfc;
    border-right: 1px solid var(--border-color);
    padding: 15px 0;
    margin: 0;
    list-style: none;
    z-index: 2;
}

.mega-item {
    list-style: none;
}

.mega-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 25px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.mega-item.active .mega-link,
.mega-item:hover .mega-link {
    background: #fff;
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    box-shadow: -5px 0 15px rgba(0,0,0,0.02);
}

.mega-content-panel {
    position: absolute;
    top: 0;
    left: 260px;
    right: 0;
    height: 100%;
    background: #fff;
    padding: 35px 45px;
    display: none;
    overflow-y: auto;
    z-index: 1;
}

.mega-item.active .mega-content-panel,
.mega-item:hover .mega-content-panel {
    display: block;
}

.mega-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.mega-panel-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-view-all {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-view-all:hover {
    transform: translateX(5px);
}

.mega-columns-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    align-items: start;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-col-title {
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-col-title.has-toggle {
    cursor: pointer;
}

.mega-col-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    flex-grow: 1;
}

.mega-col-title.has-toggle a {
    pointer-events: none; /* Let the parent handle the click */
}

.mega-col-title a:hover {
    color: var(--accent-color);
}

.mega-toggle-btn {
    cursor: pointer;
    color: var(--text-color);
    padding: 0 5px;
    transition: var(--transition);
    font-size: 0.85rem;
}

.mega-toggle-btn:hover {
    color: var(--accent-color);
}

.mega-col-title.active .mega-toggle-btn {
    transform: rotate(180deg);
}

.mega-col-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-col-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
    display: inline-block;
}

.mega-col-links li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Custom Scrollbar for Mega Menu Content */
.mega-content-panel::-webkit-scrollbar {
    width: 6px;
}
.mega-content-panel::-webkit-scrollbar-track {
    background: transparent;
}
.mega-content-panel::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}
.mega-content-panel::-webkit-scrollbar-thumb:hover {
    background: #c0c0c0;
}


/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 600px;
    display: flex;
    align-items: center;
    margin: 20px var(--padding-x);
    border-radius: 20px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 700px;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.3s;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--white);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

/* =========================================
   Homepage Categories Grid
   ========================================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.category-image {
    width: 100%; height: 100%;
    padding: 5px;
}

.category-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.category-info {
    position: absolute;
    bottom: 15px; left: 15px;
    z-index: 2;
    color: var(--white);
    width: calc(100% - 30px);
}

.category-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
}

.category-info span { display: none; }

.category-card:hover .category-image img {
    transform: scale(1.05);
}

/* =========================================
   Homepage Product Grid
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.product-image-wrapper {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-img.hover {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
}

.product-image-wrapper:hover .product-img.hover {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px; left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.new {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-badge.sale {
    background-color: var(--accent-color);
    color: var(--white);
}

.product-actions {
    position: absolute;
    top: 15px; right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateX(50px);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.product-image-wrapper:hover .product-actions {
    transform: translateX(0);
    opacity: 1;
}

.action-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.add-to-cart-btn {
    position: absolute;
    bottom: 15px; left: 15px; right: 15px;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: var(--font-main);
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-image-wrapper:hover .add-to-cart-btn {
    transform: translateY(0);
    opacity: 1;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-color);
}

.product-title a:hover {
    color: var(--accent-color);
}

.product-price {
    margin-top: auto;
    font-weight: 600;
    font-size: 1.1rem;
}

.price.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 8px;
    font-size: 0.95rem;
    font-weight: 400;
}

.price.sale-price {
    color: var(--accent-color);
}

/* =========================================
   Product Carousel
   ========================================= */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.carousel-nav {
    display: flex;
    gap: 10px;
}

.carousel-nav button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-nav button:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.product-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 20px;
    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}
.product-carousel::-webkit-scrollbar {
    display: none;
}

.product-carousel img,
.product-carousel a {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.product-carousel .product-card {
    scroll-snap-align: start;
    flex: 0 0 calc(25% - 15px);
}

@media (max-width: 992px) {
    .product-carousel .product-card { flex: 0 0 calc(33.333% - 14px); }
}
@media (max-width: 768px) {
    .product-carousel .product-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
    .product-carousel .product-card { flex: 0 0 85%; }
}

/* =========================================
   Promo Banner
   ========================================= */
.promo-banner { margin-bottom: 80px; }

.promo-wrapper {
    background-image: url('https://images.unsplash.com/photo-1445205170230-053b83016050?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 20px;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.promo-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.promo-text {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.promo-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* =========================================
   Search Modal
   ========================================= */
.search-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.close-search {
    position: absolute;
    top: 40px; right: 40px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.close-search:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.search-modal-content {
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.search-modal-content h3 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.search-form-modal {
    display: flex;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.search-form-modal input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    outline: none;
    font-family: inherit;
}

.search-submit {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.popular-searches span { color: #888; }

.popular-searches a {
    color: var(--text-color);
    background: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.popular-searches a:hover {
    background: var(--accent-color);
    color: #fff;
}

/* =========================================
   Search Results Page
   ========================================= */
.search-area {
    background: var(--secondary-color);
    padding: 50px 0;
}

.large-search-form {
    display: flex;
    max-width: 700px;
    margin: 0 auto 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.large-search-form .search-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    outline: none;
    font-family: inherit;
}

.search-results-meta {
    text-align: center;
}

.search-results-meta h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.search-results-meta p {
    color: var(--text-light);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #c71617;
    padding-top: 80px;
    border-top: none;
    margin-top: 0;
    color: #ffffff;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    display: inline-block;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 300px;
}

.footer p, .footer-contact i, .footer-contact a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ffffff;
    color: #c71617;
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.newsletter-col p {
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: none;
    border-radius: 30px;
    font-family: var(--font-main);
    outline: none;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form button {
    position: absolute;
    right: 5px; top: 5px; bottom: 5px;
    width: 40px;
    border-radius: 50%;
    background-color: #0f172a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #1e293b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   Floating WhatsApp
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px; right: 30px; left: auto;
    width: 60px; height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s;
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102, 0);
    }
}

/* =========================================
   Page Header & Breadcrumbs
   ========================================= */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f0f0f0 100%);
    padding: 50px 0;
    text-align: center;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header.breadcrumb-only {
    padding: 20px 0;
    background: transparent;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1,
.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.breadcrumbs,
.breadcrumb {
    font-size: 0.95rem;
    color: var(--text-light);
}

.breadcrumbs a,
.breadcrumb a {
    color: var(--text-color);
    font-weight: 500;
}

.breadcrumbs a:hover,
.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb i {
    font-size: 0.8rem;
    margin: 0 8px;
    color: #ccc;
}

/* =========================================
   Category Page Layout
   ========================================= */
.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background-color: var(--accent-color);
}

.widget-list li { margin-bottom: 10px; }

.sidebar-accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-accordion-item:last-child {
    border-bottom: none;
}

.sidebar-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-weight: 500;
    cursor: pointer;
}

.sidebar-accordion-header a {
    color: var(--text-color);
    flex: 1;
}

.sidebar-accordion-header a:hover,
.sidebar-accordion-header a.current {
    color: var(--accent-color);
}

.accordion-toggle {
    font-size: 0.9rem;
    color: #999;
    padding: 5px;
    cursor: pointer;
}

.sidebar-accordion-body {
    padding-left: 15px;
    margin-bottom: 10px;
    display: none;
}

.sidebar-accordion-item.active .sidebar-accordion-body {
    display: block;
}

.sidebar-accordion-body li { margin-bottom: 8px; }

.sidebar-accordion-body a {
    color: #666;
    font-size: 0.95rem;
}

.sidebar-accordion-body a:hover,
.sidebar-accordion-body a.current {
    color: var(--accent-color);
}

.sidebar-sub-item {
    margin-bottom: 5px;
}

.sidebar-sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.accordion-toggle-sub {
    font-size: 0.8rem;
    color: #bbb;
    padding: 3px;
    cursor: pointer;
}

.sidebar-sub-body {
    padding-left: 15px;
    margin-bottom: 5px;
    display: none;
    border-left: 1px dashed var(--border-color);
    margin-left: 5px;
}

.sidebar-sub-item.active .sidebar-sub-body {
    display: block;
}

.sidebar-sub-body li { margin-bottom: 6px; }

.sidebar-sub-body a {
    color: #888;
    font-size: 0.9rem;
}

.sidebar-sub-body a:hover,
.sidebar-sub-body a.current {
    color: var(--accent-color);
}

/* =========================================
   Category Product Grid
   ========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

/* =========================================
   Category Toolbar
   ========================================= */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--secondary-color);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.toolbar-left span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-open-filter {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-open-filter:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    background: #fff;
    cursor: pointer;
}

/* =========================================
   Filter Modal
   ========================================= */
.filter-modal-dialog {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filter-modal-dialog.is-visible {
    opacity: 1;
    visibility: visible;
}

.filter-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.filter-modal-dialog.is-visible .filter-modal-content {
    transform: translateY(0);
}

.filter-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-modal-header h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.filter-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.filter-modal-close:hover {
    color: var(--accent-color);
}

.filter-modal-body {
    padding: 20px 25px;
    max-height: 50vh;
    overflow-y: auto;
}

.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    gap: 5px;
}

.modal-tab-item {
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.modal-tab-item.is-active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.modal-tab-panel { display: none; }
.modal-tab-panel.is-active { display: block; }

.option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 6px 0;
}

.filter-label input {
    width: 18px; height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.filter-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
}

.btn-reset {
    flex: 1;
    text-align: center;
    padding: 13px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-light);
    font-weight: 500;
    font-family: var(--font-main);
    font-size: 0.95rem;
    background: #fff;
}

.btn-reset:hover { background: var(--secondary-color); }

.btn-apply {
    flex: 1;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-apply:hover { background: #a31112; }

/* =========================================
   Subcategories
   ========================================= */
.subcategories-section { margin-bottom: 40px; }

.subcategories-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.subcategory-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.subcategory-card:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* =========================================
   Pagination
   ========================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-link {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 500;
}

.page-link:hover, .page-link.active {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* =========================================
   Product Detail Page
   ========================================= */
.product-detail { padding-top: 40px; }

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery .main-image {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.product-gallery .main-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    padding: 0;
}

.thumbnail-list {
    display: flex;
    gap: 12px;
}

.thumbnail {
    width: 80px; height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    background: var(--secondary-color);
    padding: 5px;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.thumbnail-img {
    width: 100%; height: 100%;
    object-fit: contain;
}

.product-info-detail .product-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.product-title-lg {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-reviews .stars {
    color: #f5a623;
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
}

.product-reviews span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-price-lg {
    margin-bottom: 20px;
}

.product-price-lg .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.product-description-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.color-image-options {
    display: flex;
    gap: 12px;
}

.color-img-btn {
    width: 70px; height: 70px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    cursor: pointer;
    padding: 4px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.color-img-btn.active,
.color-img-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 22, 23, 0.15);
}

.color-img-btn img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.product-actions-form {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quantity-wrapper {
    margin-bottom: 20px;
}

.min-order-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.qty-btn {
    width: 45px; height: 45px;
    background: var(--secondary-color);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-color);
}

.qty-btn:hover {
    background: var(--border-color);
    color: var(--primary-color);
}

.qty-input {
    width: 60px; height: 45px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
    font-weight: 600;
    outline: none;
    background: transparent;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-meta {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.product-meta p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.product-meta span {
    font-weight: 600;
    color: var(--text-color);
    margin-right: 8px;
}

.product-meta a {
    color: var(--accent-color);
}

/* =========================================
   Accordion (Product Detail)
   ========================================= */
.accordion {
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.accordion-item:hover {
    background: #fdfdfd;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 15px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    transition: color 0.3s;
}

.accordion-header:hover { color: var(--accent-color); }

.accordion-header i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 0 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.accordion-content li {
    margin-bottom: 6px;
}

/* =========================================
   Contact Page
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-color: var(--accent-color);
}

.contact-card .icon-wrapper {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #e84142);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    min-height: 450px;
    border: none;
}

.map-container iframe {
    width: 100%; height: 100%;
    border: 0;
}

.form-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group:only-child {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(199, 22, 23, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-section {
    background: var(--secondary-color) !important;
}

/* =========================================
   About Page
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 16px;
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--secondary-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.timeline-section {
    background: var(--secondary-color) !important;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-icon {
    width: 60px; height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================
   Catalog Page
   ========================================= */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.catalog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.catalog-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.catalog-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.05);
}

.catalog-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.catalog-card:hover .catalog-overlay {
    opacity: 1;
}

.catalog-overlay .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.catalog-info {
    padding: 25px;
}

.catalog-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.catalog-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* =========================================
   Marquee (References)
   ========================================= */
.marquee-wrapper { overflow: hidden; }

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 25s linear infinite;
}

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

.ref-logo {
    font-size: 3rem;
    color: #bbb;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.ref-logo:hover {
    color: var(--accent-color);
}

/* =========================================
   Case Studies
   ========================================= */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.case-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

.case-card .case-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.case-card:hover .case-img {
    transform: scale(1.08);
}

.case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
}

.case-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.case-overlay span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* =========================================
   Corporate Pages (siparis, iade, gizlilik)
   ========================================= */
.corporate-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
}

.text-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--text-color);
}

.text-content h2:first-child { margin-top: 0; }

.text-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.text-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.text-content li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 1.02rem;
}

.text-content li strong {
    color: var(--text-color);
}

.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.bank-card {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.bank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--accent-color);
}

.bank-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.bank-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.bank-card p strong {
    color: var(--text-color);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .mega-sub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-map-grid {
        grid-template-columns: 1fr;
    }
    .product-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 9999;
        position: relative;
    }

    .header {
        z-index: 9990;
    }

    /* ===== MOBILE NAV PANEL ===== */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 380px;
        height: 100%;
        background: #fff;
        z-index: 9995;
        transition: left 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 8px 0 30px rgba(0,0,0,0.12);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .main-nav.active {
        left: 0;
    }

    /* ===== MOBILE MENU OVERLAY ===== */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9991; /* Below menu (9995), above header (9990) */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        backdrop-filter: blur(3px);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Scrollable area */
    .main-nav > ul {
        flex-direction: column;
        gap: 0;
        padding: 70px 0 40px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        flex: 1;
    }

    /* Top-level menu items */
    .main-nav > ul > li {
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav > ul > li > a {
        padding: 15px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.95rem;
        font-weight: 600;
        color: #222;
        letter-spacing: 0.2px;
    }

    .main-nav > ul > li > a i {
        font-size: 0.75rem;
        color: #aaa;
        transition: transform 0.3s ease;
    }

    .has-mega-menu.active > a i {
        transform: rotate(180deg) !important;
        color: var(--accent-color) !important;
    }

    /* ===== MEGA MENU DROPDOWN ===== */
    .mega-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
        background: #f9f9f9;
        border-top: 1px solid #eee;
    }

    .has-mega-menu:hover .mega-menu {
        display: none;
    }

    .mega-menu-container {
        display: block;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        height: auto;
        overflow: visible;
        background: transparent;
    }

    .mega-sidebar {
        width: 100%;
        min-width: auto;
        border-right: none;
        background: transparent;
        padding: 0;
    }

    /* === Level 1: Ana Kategoriler (Promosyon, Matbaa) === */
    .mega-item {
        border-bottom: 1px solid #eee;
    }

    .mega-item:last-child {
        border-bottom: none;
    }

    .mega-link {
        padding: 12px 24px 12px 36px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        border-left: 3px solid transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mega-link i {
        font-size: 0.65rem;
        color: #bbb;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .mega-item.active .mega-link {
        color: var(--accent-color);
        border-left-color: var(--accent-color);
        background: #fff;
        box-shadow: none;
    }

    .mega-item.active .mega-link i {
        transform: rotate(90deg);
        color: var(--accent-color);
    }

    .mega-item:hover .mega-link {
        background: transparent;
        box-shadow: none;
        border-left-color: transparent;
    }

    /* === Level 2 Panel === */
    .mega-content-panel {
        position: static !important;
        display: none !important;
        height: auto;
        padding: 0;
        background: #fff;
        overflow: visible;
    }

    .mega-item.active .mega-content-panel {
        display: block !important;
    }

    .mega-panel-header {
        display: none;
    }

    .mega-columns-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* === Level 2: Alt Kategoriler (Kalemler, Çantalar vs.) === */
    .mega-col {
        border-bottom: none;
        width: 100%;
    }

    .mega-col-title {
        margin: 0;
        padding: 12px 24px 12px 48px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.88rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mega-col-title a {
        font-size: 0.88rem;
        font-weight: 500;
        color: #444;
        flex: 1;
    }

    .mega-col-title.active a {
        color: var(--accent-color);
    }

    .mega-toggle-btn {
        font-size: 0.65rem;
        color: #bbb;
        padding-left: 10px;
    }

    .mega-col-title.active .mega-toggle-btn {
        color: var(--accent-color);
    }

    /* === Level 3: En Alt Kategoriler (Metal Kalemler vs.) === */
    .mega-col-links {
        padding: 0 !important;
        gap: 0;
        background: #fff;
    }

    .mega-col-links li a {
        font-size: 0.82rem;
        padding: 10px 24px 10px 62px;
        color: #666;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }

    .mega-col-links li:last-child a {
        border-bottom: none;
    }

    .hero {
        margin: 0;
        border-radius: 0;
        height: 60vh;
        min-height: 400px;
    }

    .hero-content { padding: 0 20px; }
    .hero-title { font-size: 3rem; }

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

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .category-product-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .promo-text h2 { font-size: 2rem; }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

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

    .sidebar { display: none; }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .content-box {
        padding: 30px 20px;
    }

    .timeline::before { left: 25px; }

    .timeline-icon {
        width: 50px; height: 50px;
        min-width: 50px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 15px;
    }

    .bank-accounts-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .toolbar-right {
        justify-content: space-between;
    }
}

/* =========================================
   Shop the Set (Hotspots)
   ========================================= */
.shop-the-set { margin-bottom: 60px; }

.shop-the-set-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.shoppable-image-container {
    position: relative;
    border-radius: 16px;
    background: var(--secondary-color);
}

.shoppable-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 16px;
}

.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hotspot:hover {
    z-index: 9999;
}

.hotspot-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.hotspot-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    animation: none;
}

@keyframes pulse-white {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 12px;
    z-index: 9999;
    padding: 10px;
    width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    gap: 12px;
    align-items: center;
    pointer-events: none;
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: var(--white) transparent transparent transparent;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.hotspot-tooltip img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--secondary-color);
    padding: 4px;
}

.tooltip-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.tooltip-info .price {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.tooltip-info a {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: underline;
}

.tooltip-info a:hover {
    color: var(--accent-color);
}

/* =========================================
   Premium Category Product Cards
   ========================================= */
.category-product-grid .product-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-radius: 14px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-product-grid .product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.category-product-grid .product-card:hover {
    transform: translateY(-8px);
}

.category-product-grid .product-card:hover::after {
    opacity: 1;
}

.category-product-grid .product-image-wrapper {
    background: #fdfdfd;
    border-bottom: 1px solid var(--border-color);
    padding: 15px; /* Azaltıldı, böylece resim daha büyük görünecek */
    aspect-ratio: 1;
    border-radius: 14px 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-product-grid .product-img.main {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-product-grid .product-card:hover .product-img.main {
    transform: scale(1.08);
}

.category-product-grid .product-info {
    padding: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1; /* Fills remaining space in the card */
}

.category-product-grid .product-category {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-product-grid .product-title {
    font-size: 0.95rem; /* Smaller, more refined text */
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
}

.category-product-grid .product-title a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.category-product-grid .product-title a:hover {
    color: var(--accent-color);
}

.category-product-grid .product-price {
    background: var(--secondary-color);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.category-product-grid .product-stock {
    font-size: 0.9rem;
    padding: 8px 0;
}

/* Removed legacy stock span styles */

/* =========================================
   Category Product Cards - Additional Refinements
   ========================================= */

/* Price Styling */
.category-product-grid .product-price {
    background: transparent; /* Override previous if any */
    padding: 0;
    margin-bottom: 15px;
    margin-top: auto; /* Pushes the price, stock, and buttons to the absolute bottom perfectly */
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.category-product-grid .product-price .price {
    font-size: 1.15rem; /* Refined price size */
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: -0.5px;
}

.category-product-grid .product-price .price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #888;
    letter-spacing: 0;
}

/* Stock Styling */
.category-product-grid .product-stock {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stock-badge {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    margin-right: 2px;
}

.pulse-dot.green {
    background-color: #27ae60;
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    animation: pulse-green-shadow 1.5s infinite;
}

.pulse-dot.red {
    background-color: #e74c3c;
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    animation: pulse-red-shadow 1.5s infinite;
}

@keyframes pulse-green-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.8);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
}

@keyframes pulse-red-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.8);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
}

/* Variant Note */
.category-product-grid .product-variants-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
    border-top: 1px dashed #eaeaea;
    padding-top: 12px;
    font-weight: 500;
}

/* =========================================
   Filter Modal Custom Checkboxes
   ========================================= */

.option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    user-select: none;
    transition: all 0.2s ease;
}

.custom-checkbox-label:hover {
    color: var(--accent-color);
}

/* Hide default checkbox */
.custom-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom Checkmark Background */
.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #f1f1f1;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* On hover, add background color */
.custom-checkbox-label:hover input ~ .checkmark {
    background-color: #e8e8e8;
    border-color: #ccc;
}

/* When checked, background color changes */
.custom-checkbox-label input:checked ~ .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show checkmark when checked */
.custom-checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark */
.custom-checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Label text transition */
.label-text {
    transition: color 0.2s ease;
}

.custom-checkbox-label input:checked ~ .label-text {
    color: var(--accent-color);
    font-weight: 600;
}

/* =========================================
   Filter Modal Dual Range Slider & 2-Col
   ========================================= */

/* 2-Column Option List */
.option-list.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

/* Price Filter Container */
.price-filter-container {
    padding: 10px 15px 25px;
}

.price-filter-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-display span {
    background: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
}

.price-display span:nth-child(2) {
    background: transparent;
    padding: 0;
    color: #999;
}

/* Range Slider */
.range-slider {
    position: relative;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 20px;
}

.range-slider-track {
    position: absolute;
    height: 100%;
    background: var(--accent-color);
    border-radius: 4px;
    z-index: 1;
}

.range-input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    pointer-events: none;
    z-index: 2;
}

/* Chrome, Safari, Edge */
.range-input::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent-color);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.1s;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-input::-webkit-slider-thumb:active {
    transform: scale(0.95);
}

/* Firefox */
.range-input::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent-color);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.1s;
}

.range-input::-moz-range-thumb:hover {
    transform: scale(1.15);
}

.range-input::-moz-range-thumb:active {
    transform: scale(0.95);
}

.price-inputs-hidden {
    display: none;
}


/* Editable Price Inputs */
.editable-price-display .price-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: border-color 0.2s;
}
.editable-price-display .price-input-wrapper:focus-within {
    border-color: var(--accent-color);
    background: #fff;
}
.editable-price-display input[type='number'] {
    background: transparent;
    border: none;
    outline: none;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    width: 60px;
    text-align: center;
    -moz-appearance: textfield;
}
.editable-price-display input[type='number']::-webkit-outer-spin-button,
.editable-price-display input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* =========================================
   Live Search Modal Enhancements
   ========================================= */
.search-form-modal {
    display: flex;
    gap: 15px;
    align-items: center;
}
.search-input-wrapper {
    position: relative;
    width: 100%;
}
.search-input-wrapper input {
    width: 100%;
    padding-right: 45px !important;
}
.search-clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    transition: color 0.3s;
    padding: 0;
}
.search-clear-btn:hover {
    color: var(--accent-color);
}
.search-results-container {
    margin-top: 30px;
    background: transparent;
    border-radius: 12px;
    max-height: 55vh;
    overflow-y: auto;
    text-align: left;
}
.search-results-container::-webkit-scrollbar {
    width: 6px;
}
.search-results-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.search-loading, .no-results {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 1.1rem;
}
.live-search-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.live-search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    background: #fff;
    transition: all 0.3s ease;
}
.live-search-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.ls-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f9f9f9;
}
.ls-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ls-info {
    display: flex;
    flex-direction: column;
}
.ls-info h6 {
    margin: 0 0 3px 0;
    font-size: 0.95rem;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ls-info small {
    color: #888;
    font-size: 0.75rem;
    margin-bottom: 5px;
}
.ls-info .price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.9rem;
}
.view-all-results {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eaeaea;
    color: var(--accent-color);
    font-weight: 600;
}
.view-all-results i {
    margin-left: 5px;
    transition: transform 0.3s;
}
.view-all-results:hover i {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .live-search-grid {
        grid-template-columns: 1fr;
    }
}.editable-price-display .separator {
    background: transparent;
    padding: 0;
    color: #999;
}

/* MOBIL GORUNUM DUZENLEMELERI (Kategori & Slider) */
@media (max-width: 768px) {
    .subcategory-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    .hero-slider {
        height: 40vh !important;
        min-height: 200px !important;
        max-height: 300px !important;
    }
    .hero-slider .slide img {
        object-fit: contain !important;
    }
    .shop-the-set-grid {
        grid-template-columns: 1fr !important;
    }
    .hotspot-btn {
        width: 24px !important;
        height: 24px !important;
    }
    .hotspot-btn i {
        font-size: 10px !important;
    }
    .hotspot-tooltip {
        position: absolute !important;
        bottom: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(-10px) !important;
        width: 140px !important;
        padding: 8px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 5px !important;
        z-index: 9999 !important;
        white-space: normal !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3) !important;
    }
    .hotspot-tooltip::after {
        display: block !important;
    }
    .hotspot-tooltip img {
        width: 45px !important;
        height: 45px !important;
        margin: 0 auto !important;
    }
    .tooltip-info {
        width: 100% !important;
    }
    .tooltip-info h4 {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    .hotspot-tooltip.tooltip-left {
        left: 0 !important;
        transform: translateX(0) translateY(-10px) !important;
    }
    .hotspot-tooltip.tooltip-right {
        left: auto !important;
        right: 0 !important;
        transform: translateX(0) translateY(-10px) !important;
    }
    .hotspot-tooltip.tooltip-center {
        left: 50% !important;
        transform: translateX(-50%) translateY(-10px) !important;
    }
    
    .product-info-detail {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
.fancybox__container, .fancybox-container, .fancybox-overlay, .fancybox-wrap {
    z-index: 999999 !important;
}
