.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-item {
    cursor: pointer;
    text-align: center;
}

.color-item input {
    display: none;
}

.color-box {
    width: 40px;
    height: 40px;

    border: 2px solid #ccc;
    display: inline-block;
}

.color-item input:checked + .color-box {
    border: 2px solid black;
}

.color-item input:disabled + .color-box {
    opacity: 0.3;
}

.text-orange{
    color: #f3943a;
}

.product-order-img{
    width: 64px;
}
/* ANA BAR */
.announcement-bar {
    position: relative;
    width: 100%;
    color: #fff;
    overflow: hidden;
    height: 46px;

    display: flex;
    align-items: center;
}

/* KAYAN ALAN */
.announcement-wrapper {
    flex: 1;
    overflow: hidden;
}

/* MARQUEE */
.announcement-marquee {
    display: flex;
    align-items: center;
    width: max-content;

    animation: marquee 18s linear infinite;
    will-change: transform;
}

/* YAZI */
.announcement-marquee span {
    white-space: nowrap;
    padding-right: 80px;

    font-size: 15px;
    font-weight: 500;
    letter-spacing: .3px;
    font-family: 'Segoe UI', sans-serif;
}

/* HOVER DURDUR */
.announcement-bar:hover .announcement-marquee {
    animation-play-state: paused;
}

/* DAHA AKICI ANİMASYON */
@keyframes marquee {
    from {
        transform: translate3d(0,0,0);
    }

    to {
        transform: translate3d(-33.333%,0,0);
    }
}

/* KAPAT BUTONU */
.close-btn {
    flex-shrink: 0;

    margin-right: 10px;

    width: 28px;
    height: 28px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);

    cursor: pointer;

    transition: .2s ease;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* HOVER */
.close-btn:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
}

/* MOBİL */
@media (max-width: 768px) {

    .announcement-bar {
        height: 42px;
    }

    .announcement-marquee {
        animation-duration: 12s;
    }

    .announcement-marquee span {
        font-size: 13px;
        padding-right: 50px;
    }

    .close-btn {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        font-size: 12px;
    }
}
.admin-banner {
    background: #1f2937;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 10px 0;
}

.admin-btn {
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.1);
    padding: 8px 14px;
    border-radius: 10px;
    transition: .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.admin-btn:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.order-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .2s;
}

.order-icon:hover {
    background: #1d4ed8;
    color: #fff;
}

.question-btn {
    background: #10b981;
}

.question-btn:hover {
    background: #059669 !important;
}


/* mobil bar */

/* bottom bar ana kapsayıcı - özel class */
.my-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05), 0 -1px 0 rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 20px 12px;
    z-index: 1050;
    display: none;
}

/* iç container - özel class */
.my-bottom-nav-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* her bir nav öğesi (buton) - özel class */
.my-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    border: none;
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    padding: 6px 0 4px;
    border-radius: 40px;
    color: #8e9aaf;
    font-weight: 500;
    gap: 4px;
}

.my-nav-item i {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.my-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}



.my-nav-item.active i {
    text-shadow: 0 0 6px rgba(44, 125, 160, 0.2);
    transform: translateY(-2px);
}

/* ikon sarmalayıcı (badge için) - özel class */
.my-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* badge sayacı - özel class */
.my-badge-count {
    position: absolute;
    top: -8px;
    right: -13px;
    background: #e83e8c;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 1px 7px;
    min-width: 18px;
    height: 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-family: monospace;
}

/* tıklama efekti - özel class */
.my-nav-item:active {
    transform: scale(0.94);
    background-color: rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
    .my-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05), 0 -1px 0 rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding: 8px 20px 12px;
        z-index: 1029;
        display: block;
    }
.offcanvas-body {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
   padding:10px;


}
}
/* safe area desteği - sadece bottom bar için */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .my-bottom-bar {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
}
/* INPUT */

.custom-search-input{
    height:48px;
    border-radius:999px;
    border:1px solid #333;
    color:#fff;
    padding-left:45px;
}

.search-icon{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#aaa;
}

/* OVERLAY */

.search-overlay{
    position:fixed;
    inset:0;
    background:#fff;
    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.25s ease;

    display:flex;
    flex-direction:column;
}

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

/* HEADER */

.search-header{
    padding:15px;
    border-bottom:1px solid #eee;

    display:flex;
    align-items:center;
    gap:12px;

    position:sticky;
    top:0;
    background:#fff;
    z-index:20;
}

.search-box{
    flex:1;
    position:relative;
}

.search-box i{
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    color:#999;
}

.search-box input{
    width:100%;
    height:48px;

    border:none;
    outline:none;

    background:#f5f5f5;

    border-radius:999px;

    padding:0 20px 0 45px;

    font-size:16px;
    color: #7d7d7d;
}

.close-search{
    border:none;
    background:none;
    color:#222934;
    font-weight:500;
    font-size:16px;
}

/* CONTENT */

.search-content{
    flex:1;
    overflow-y:auto;

    padding:20px 15px 120px;
}

/* SECTION */

.search-section{
    margin-bottom:35px;
}

.section-title{
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

/* TAGS */

.search-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.search-tag{
    padding:10px 16px;
    border-radius:999px;

    background:#f7f7f7;

    text-decoration:none;
    color:#222;

    font-size:14px;
}

/* PRODUCTS */

.product-scroll{
    display:flex;
    gap:14px;

    overflow-x:auto;
    padding-bottom:5px;

    scrollbar-width:none;
}

.product-scroll::-webkit-scrollbar{
    display:none;
}

.search-product-card{
    min-width:160px;
    max-width:160px;

    border:1px solid #eee;
    border-radius:18px;

    padding:10px;

    text-decoration:none;
    color:#111;

    background:#fff;
}

.search-product-card img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:12px;
}

.product-title{
    font-size:14px;
    margin-top:10px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:42px;
}

.product-price{
    color:#222934;
    font-size:18px;
    font-weight:700;
    margin-top:8px;
}

.see-all{
    text-decoration:none;
    color:#ff6600;
    font-weight:600;
}
