/* =====================================================
   BELLONA - Main Stylesheet
   ===================================================== */

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 12px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a {
    color: #555;
    transition: color 0.2s;
}

.top-bar-left a:hover { color: #0e8a7b; }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-right a {
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.top-bar-right a:hover { color: #0e8a7b; }
.top-bar-right .whatsapp { color: #25d366; }

.top-bar-right .lang {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right .lang img {
    width: 20px;
    height: 14px;
    object-fit: cover;
}

/* HEADER */
.header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo { display: flex; align-items: center; }

.logo-box {
    border: 3px solid #0e8a7b;
    padding: 8px 15px;
    font-size: 24px;
    font-weight: 700;
    color: #0e8a7b;
    letter-spacing: 2px;
    transition: all 0.2s;
}

.logo:hover .logo-box {
    background: #0e8a7b;
    color: #fff;
}

.search-box {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 13px;
    font-family: inherit;
}

.search-box input::placeholder { color: #999; }

.search-box .search-icon {
    padding: 12px 15px;
    color: #999;
}

.search-box .search-btn {
    background: #0e8a7b;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    transition: background 0.2s;
}

.search-box .search-btn:hover { background: #0a7266; }

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

.online-ozel-btn {
    background: #0e8a7b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.online-ozel-btn:hover { background: #0a7266; }

.header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #555;
    font-size: 11px;
    transition: color 0.2s;
}

.header-icon:hover { color: #0e8a7b; }
.header-icon i { font-size: 20px; color: #333; }
.header-icon:hover i { color: #0e8a7b; }

.header-icon.cart { position: relative; }

.header-icon.cart .badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: #0e8a7b;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NAVIGATION */
.navigation {
    background: #fff;
    border-bottom: 2px solid #0e8a7b;
}

.nav-menu { display: flex; }

.nav-menu li { position: relative; }

.nav-menu li a {
    display: block;
    padding: 15px 18px;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.nav-menu li a:hover { color: #0e8a7b; }
.nav-menu li.highlight a { color: #0e8a7b; }

.nav-menu li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 2px solid #0e8a7b;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 1000;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li .dropdown a {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    border-bottom: 1px solid #eee;
}

.nav-menu li .dropdown a:hover { background: #f8f8f8; }

/* BREADCRUMB */
.breadcrumb {
    background: #fff;
    padding: 12px 0;
    font-size: 12px;
}

.breadcrumb a { color: #666; transition: color 0.2s; }
.breadcrumb a:hover { color: #0e8a7b; }
.breadcrumb span { color: #999; margin: 0 8px; }
.breadcrumb .current { color: #0e8a7b; }

/* MAIN LAYOUT */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 30px;
}

/* SIDEBAR */
.sidebar { width: 250px; flex-shrink: 0; }
.sidebar-section { margin-bottom: 25px; }

.sidebar-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.sidebar-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.category-list li { margin-bottom: 8px; }

.category-list li a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.category-list li a:hover { color: #0e8a7b; }
.category-list li a.active { color: #0e8a7b; font-weight: 600; }

.all-categories {
    color: #0e8a7b;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.filter-item:hover {
    background: #f8f8f8;
    margin: 0 -10px;
    padding: 12px 10px;
}

.filter-item span { color: #333; font-size: 13px; }
.filter-item i { color: #0e8a7b; font-size: 12px; }

.popular-section { margin-top: 30px; }

.popular-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.popular-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}

.popular-list li:hover { color: #0e8a7b; }

.popular-list li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 2px;
    flex-shrink: 0;
}

/* CONTENT AREA */
.content-area { flex: 1; min-width: 0; }

.page-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.subcategories-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* SUBCATEGORY CARDS */
.subcategory-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.subcategory-card {
    flex-shrink: 0;
    width: 110px;
    text-align: center;
    transition: transform 0.2s;
}

.subcategory-card:hover { transform: translateY(-3px); }

.subcategory-card .img-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e8f5f3 0%, #d0ebe7 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 40px;
}

.subcategory-card span { font-size: 12px; color: #333; }

.subcategory-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.subcategory-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.2s;
}

.subcategory-dots .dot:hover,
.subcategory-dots .dot.active { background: #0e8a7b; }

/* TOOLBAR */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.toolbar-left { display: flex; align-items: center; gap: 15px; }

.stock-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

.stock-filter input {
    width: 16px;
    height: 16px;
    accent-color: #0e8a7b;
}

.toolbar-right { display: flex; align-items: center; gap: 20px; }
.product-count { font-size: 13px; color: #666; }

.sort-select {
    padding: 8px 35px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    font-family: inherit;
}

.sort-select:hover { border-color: #0e8a7b; }

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
    cursor: pointer;
}

.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.product-card .image-box {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
}

.product-card .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-card .badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #0e8a7b;
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 3px;
}

.product-card .badge.discount {
    background: #e53935;
    top: 10px;
    left: 10px;
    bottom: auto;
    right: auto;
}

.product-card .badge.online {
    background: #0e8a7b;
    top: 10px;
    left: 10px;
    bottom: auto;
    right: auto;
}

.product-card .info { padding: 15px; }

.product-card .name {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-card .price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.product-card .old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.product-card .price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.product-card .price-suffix {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: #0e8a7b;
    color: #0e8a7b;
}

.pagination .active {
    background: #fff;
    color: #0e8a7b;
    border-color: #0e8a7b;
    font-weight: 600;
}

.pagination .next {
    background: #0e8a7b;
    color: #fff;
    border-color: #0e8a7b;
}

.pagination .next:hover { background: #0a7266; }
.pagination .dots { border: none; color: #999; }

/* PRODUCT DETAIL PAGE */
.product-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.product-gallery { flex: 1; max-width: 600px; }

.product-gallery .main-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.product-gallery .thumbnails {
    display: flex;
    gap: 10px;
}

.product-gallery .thumb {
    width: 80px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}

.product-gallery .thumb:hover,
.product-gallery .thumb.active { border-color: #0e8a7b; }

.product-gallery .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info { flex: 1; }

.product-info .product-name {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.product-info .product-price {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-info .installment {
    font-size: 14px;
    color: #0e8a7b;
    margin-bottom: 20px;
}

.product-info .stock-code {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.product-table th {
    background: #f8f8f8;
    padding: 12px 15px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
}

.product-table td {
    padding: 12px 15px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    border: 2px solid #0e8a7b;
    color: #0e8a7b;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-outline:hover {
    background: #0e8a7b;
    color: #fff;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 40px;
    background: #0e8a7b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    width: 100%;
    margin-top: 15px;
}

.btn-primary:hover { background: #0a7266; }

/* PRODUCT CONFIG */
.product-config { margin-top: 30px; }

.config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #0e8a7b;
    color: #fff;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
}

.config-header h3 { font-size: 14px; font-weight: 600; }

.config-body {
    border: 1px solid #eee;
    border-top: none;
    padding: 20px;
}

.config-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.config-item .item-image {
    width: 150px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.config-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.config-item .item-info { flex: 1; }

.config-item .item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.config-item .dimensions-title {
    font-size: 12px;
    font-weight: 600;
    color: #0e8a7b;
    margin-bottom: 5px;
}

.config-item .dimensions {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.config-item .detail-link {
    font-size: 13px;
    color: #0e8a7b;
    text-decoration: underline;
}

.config-item .item-price-qty { text-align: right; }

.config-item .item-price {
    font-size: 18px;
    font-weight: 700;
    color: #0e8a7b;
    margin-bottom: 15px;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.quantity-selector button {
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    color: #0e8a7b;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.quantity-selector button:hover { background: #f5f5f5; }

.quantity-selector input {
    width: 50px;
    height: 36px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    font-family: inherit;
}

/* ACCORDION */
.accordion { margin-top: 30px; }
.accordion-item { border-bottom: 1px solid #eee; }

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-header:hover { color: #0e8a7b; }

.accordion-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: #0e8a7b;
}

.accordion-header i { color: #0e8a7b; }
.accordion-body { padding: 0 0 20px; display: none; }
.accordion-body.active { display: block; }

.accordion-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.accordion-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.accordion-body a { color: #0e8a7b; }

/* FEATURE BAR */
.feature-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #333;
}

.feature-item i { font-size: 24px; color: #0e8a7b; }

/* RELATED PRODUCTS */
.related-section { margin-top: 50px; }

.section-title { font-size: 24px; margin-bottom: 25px; }
.section-title span { color: #333; }
.section-title span.highlight { color: #0e8a7b; }

.product-carousel { position: relative; }

.carousel-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar { display: none; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: #333;
    color: #fff;
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

.carousel-card {
    flex-shrink: 0;
    width: calc(25% - 19px);
    min-width: 250px;
}

/* FOOTER */
.footer {
    background: #fff;
    border-top: 1px solid #eee;
    margin-top: 50px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-column ul li { margin-bottom: 8px; }

.footer-column ul li a {
    font-size: 12px;
    color: #666;
    transition: color 0.2s;
}

.footer-column ul li a:hover { color: #0e8a7b; }

.footer-contact {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i { font-size: 24px; color: #0e8a7b; }
.contact-item .whatsapp-icon { color: #25d366; }
.contact-item .label { font-size: 11px; color: #666; }

.contact-item .value {
    font-size: 14px;
    font-weight: 600;
    color: #0e8a7b;
}

.app-buttons { display: flex; gap: 10px; }
.app-buttons img { height: 40px; }

.footer-badges { display: flex; gap: 15px; align-items: center; }
.footer-badges img { height: 50px; }

.footer-bottom {
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    border: 2px solid #0e8a7b;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 700;
    color: #0e8a7b;
    letter-spacing: 1px;
}

.footer-links { display: flex; gap: 25px; flex-wrap: wrap; }

.footer-links a {
    font-size: 12px;
    color: #666;
    transition: color 0.2s;
}

.footer-links a:hover { color: #0e8a7b; }

.social-icons { display: flex; gap: 15px; }

.social-icons a {
    color: #333;
    font-size: 18px;
    transition: color 0.2s;
}

.social-icons a:hover { color: #0e8a7b; }

.footer-copyright {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright p { font-size: 11px; color: #999; }

.payment-icons { display: flex; gap: 15px; align-items: center; }
.payment-icons img { height: 20px; opacity: 0.7; }

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .footer-top { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .main-content { flex-direction: column; }
    .sidebar { width: 100%; }
    .product-detail { flex-direction: column; }
    .product-gallery { max-width: 100%; }
    .nav-menu { overflow-x: auto; }
    .feature-bar { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 768px) {
    /* Top bar gizle */
    .top-bar { display: none; }
    
    /* Header düzenle */
    .header { padding: 10px 0; }
    .header .container { 
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    .logo-box { font-size: 20px; padding: 8px 15px; }
    
    /* Arama kutusu altta tam genişlik */
    .search-box { 
        order: 3; 
        width: 100%; 
        margin-top: 10px;
    }
    .search-box input { padding: 10px 12px; font-size: 14px; }
    .search-btn { padding: 10px 20px; }
    
    /* Header sağ taraf */
    .header-right { gap: 15px; }
    .header-icon i { font-size: 20px; }
    .header-icon span { display: none; }
    .header-icon .badge { display: flex; }
    .online-ozel-btn { padding: 8px 12px; font-size: 12px; }
    
    /* Navigasyon gizle */
    .navigation { display: none; }
    
    /* Sidebar/Kategoriler gizle */
    .sidebar { display: none; }
    
    /* Breadcrumb gizle */
    .breadcrumb { display: none; }
    
    /* Main content tam genişlik */
    .main-content { 
        flex-direction: column;
        padding: 15px 0;
    }
    .content-area { width: 100%; }
    
    /* Ürün grid */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    
    /* Footer */
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .footer-contact { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .header { padding: 8px 0; }
    .header .container { padding: 0 10px; }
    .logo-box { font-size: 18px; padding: 6px 12px; }
    .online-ozel-btn { padding: 6px 10px; font-size: 11px; }
    .header-right { gap: 12px; }
    .header-icon i { font-size: 18px; }
    .search-box input { padding: 10px; font-size: 13px; }
    .search-btn { padding: 10px 15px; font-size: 12px; }
    
    /* Ürün grid tek kolon */
    .product-grid { grid-template-columns: 1fr; gap: 15px; }
    
    /* Sayfa başlığı */
    .page-title { font-size: 18px; }
    .page-subtitle { font-size: 12px; }
    
    /* Footer */
    .footer-top { grid-template-columns: 1fr; }
}
