/* header dropdown */

/* CLEAN CART DROPDOWN */

.cart-dropdown-clean {
    position: relative;
}

/* trigger */
.cart-trigger {
    cursor: pointer;
    position: relative;
}


/* show on hover */
.cart-dropdown-clean:hover .cart-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* items */
.cart-items {
    max-height: 250px;
    overflow-y: auto;
}

/* footer */
.cart-footer {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* button */
.cart-btn {
    display: block;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    text-decoration: none;
}

/* empty */
.cart-empty {
    text-align: center;
    padding: 20px;
}

.cart-empty a {
    color: red;
}

/* HEADER MUST BE ABOVE EVERYTHING */
.main-header {
    position: relative;
    z-index: 99999;
}

/* CART WRAPPER */
.cart-dropdown-clean {
    position: relative;
    z-index: 99999;
}

/* DROPDOWN PANEL */


.cart-dropdown-panel {
    position: fixed;
    top: 60px;        /* reduced from 90px */
    right: 140px;      /* tighter alignment */
    width: 100%;     /* reduced from 320px */
    max-width: 12vw;  /* responsive safety */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    /* padding: 12px; */
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;

    pointer-events: none; /* prevent hidden blocking */
}
/* show */
.cart-dropdown-clean.active .cart-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
        pointer-events: auto; /* NOW clickable */

}


.total-cart {
    position: absolute;
    padding: 0 5px;
    width: 100%;
    height: 100%;
 
    background: red;
    color: #fff;

    font-size: 11px;
    font-weight: 600;

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

}

.header-phone {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.phone-label {
    font-size: 11px;
    color: #888;
}

.phone-number {
    font-size: 14px;
    font-weight: 600;
    color: #ff4d4d;
}

.cart-trigger {
    width: 45px;
    height: 45px;
    background: #f3f3f3;
    border-radius: 50px;

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



/* FOOTER MENU */
.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu ul li a {
    color: #222;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-menu ul li a:hover {
    color: #ff4d4d;
}





/* --------------------- home slider section---------------- */

.brand-section {
    overflow: hidden;
    padding: 40px 0;
}

/* MARQUEE WRAPPER */
.marquee {
    width: 100%;
    overflow: hidden;
}

/* MOVING TRACK */
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

/* EACH BLOCK */
.marquee-item {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
}

/* TEXT */
.brand-section h1 {
    font-size: clamp(28px, 5vw, 60px);
    line-height: 1;
    font-weight: 400;
    color: rgba(0,0,0,0.15);
    margin: 0;
}

/* OUTLINE TEXT */
.brand-section span {
    color: transparent;
    font-weight: 600;
    -webkit-text-stroke: 1px rgba(0,0,0,0.2);
}

/* HIGHLIGHT */
.brand-section strong {
    color: var(--main-color);
}

/* IMAGES */
.brand-section img {
    width: clamp(30px, 4vw, 60px);
    height: auto;
}

/* ANIMATION */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* --------------------breadcrumb------------------ */

/* SECTION */
.breadcrumb {
    background: #f4f4f4;
    padding: 100px 0;
}

/* CENTER EVERYTHING */
.breadcrumb-wrapper {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
}


.breadcrumb-arrow {
    font-size: 16px;
    color: #000;
    margin: 0 4px;
}
/* TITLE */
.breadcrumb h1 {
    font-size: 38px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

/* LIST */
.breadcrumb ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* LINKS */
.breadcrumb a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: 0.3s ease;
}

.breadcrumb a:hover {
    color: #000;
}

/* CURRENT PAGE */
.breadcrumb li.text-main-600 {
    color: #111;
    font-weight: 500;
}

/* ICONS */
.breadcrumb i {
    font-size: 13px;
    color: #999;
}

/* FIX flex-between OVERRIDE */
.flex-between {
    justify-content: center !important;
} 

/* WRAPPER */
.product-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

/* LABEL */
.product-share span {
    font-weight: 500;
    color: #333;
}

/* ICON LINKS */
.product-share a {
    color: #000;
    font-size: 16px;
    transition: 0.3s ease;
}

/* REMOVE ALL BUTTON STYLE */
.product-share a {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* HOVER (ONLY COLOR CHANGE) */
.product-share a:hover {
    color: #e60023; /* you can change per brand if needed */
}


/* ----------------------index page-------------------------- */


/* ROW */
.price-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PRICE */
.price {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* .price .new {
    color: red;
    font-weight: 600;
}

.price .old {
    color: #888;
    text-decoration: line-through;
} */

/* QTY BOX */
.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BUTTONS */
.qty-minus,
.qty-plus {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}

/* =========================
   QTY BOX (MODERN CLEAN)
========================= */

.qty-box {
    display: flex;
    align-items: center;
    /* border: 1px solid #e5e5e5; */
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
    background: #fff;
}

/* BUTTONS */
.qty-box button {
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.qty-box button:hover {
    background: #eaeaea;
}

/* INPUT */
.qty-input {
    width: 40px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 14px;
    outline: none;
    background: #fff;
}

/* ❌ REMOVE DEFAULT ARROWS (IMPORTANT) */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input {
    -moz-appearance: textfield; /* Firefox */
}

/* FORCE WHITE HEADER EVERYWHERE */
.header,
.main-header,
.navbar {
    background: #ffffff !important;
}