.tp-instagram-icon-2 a{height:auto;line-height:normal;padding:16px 20px;width:100%}.tp-header-sticky.header-main{background:var(--tp-common-white);box-shadow:0 2px 6px rgba(1,15,28,.16);margin:auto;position:static!important;width:100%}.tp-header-sticky.header-sticky{position:fixed!important}@media(min-width:768px){.tp-header-transparent{top:40px}}.tp-header-style-transparent-white .tp-header-action-btn{color:#fff}


/* ====================
   Header 3 - New Style
   ==================== */

/* Top Header Section */
.tp-header-top-3 {
    background-color: var(--tp-theme-primary);
    /* padding: 15px 0; */
}

.tp-header-top-3 .logo img {
    max-height: 40px;
}

/* Show only light logo on primary background */
.tp-header-top-3 .logo .logo-dark {
    display: none !important;
}

/* .tp-header-top-3 .logo .logo-light {
    display: block !important;
} */

.tp-header-top-3 .tp-header-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.tp-header-top-3 .tp-header-action-item {
    margin: 0 !important;
}

.tp-header-top-3 .tp-header-action-btn {
    color: var(--tp-common-white);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.tp-header-top-3 .tp-header-action-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.tp-header-top-3 .tp-header-action-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.tp-header-top-3 .tp-header-action-badge {
    background-color: var(--tp-common-white);
    color: var(--tp-theme-primary);
    border: 0;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 5px;
    border-radius: 10px;
}

/* Menu Section */
.tp-header-menu-3 {
    background-color: #f8e7e6 !important;
    border-bottom: 1px solid #f0f0f0;
    padding: 6px 0;
}

/* Pills Menu Style */
.tp-header-pill-menu .tp-pill-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.tp-header-pill-menu .tp-pill-menu-list > li {
    margin: 0;
    padding: 0;
}

.tp-header-pill-menu .tp-pill-menu-list > li > a {
    display: inline-block;
    padding: 3px 8px;
    background-color: #f8e7e6;
    color: var(--tp-common-black);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tp-header-pill-menu .tp-pill-menu-list > li > a:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-white);
    border-color: var(--tp-theme-primary);
    transform: translateY(-2px);
}

.tp-header-pill-menu .tp-pill-menu-list > li > a svg,
.tp-header-pill-menu .tp-pill-menu-list > li > a .ti-chevron-down {
    display: none;
}

/* Dropdown Submenu */
.tp-header-pill-menu .tp-pill-menu-list > li.has-dropdown {
    position: relative;
}

.tp-header-pill-menu .tp-pill-menu-list > li.has-dropdown > a::after {
    display: none;
}

.tp-header-pill-menu .tp-pill-menu-list > li.has-dropdown .tp-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--tp-common-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    /* padding: 10px 0; */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
}

.tp-header-pill-menu .tp-pill-menu-list > li.has-dropdown:hover .tp-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tp-header-pill-menu .tp-pill-menu-list > li.has-dropdown .tp-submenu li {
    margin: 0;
}

.tp-header-pill-menu .tp-pill-menu-list > li.has-dropdown .tp-submenu li a {
    display: block;
    padding: 10px 20px;
    color: var(--tp-common-black);
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 14px;
}

.tp-header-pill-menu .tp-pill-menu-list > li.has-dropdown .tp-submenu li a:hover {
    background-color: #f8f8f8;
    color: var(--tp-theme-primary);
    transform: none;
}

/* Sticky Header */
.tp-header-sticky-3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--tp-theme-primary) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    padding: 0px 0;
}

.tp-header-sticky-3.header-sticky {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

/* Sticky header row alignment */
.tp-header-sticky-3 .row {
    align-items: center;
}

.tp-header-sticky-3 .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

.tp-header-sticky-3 .logo img {
    max-height: 35px;
}

/* Show only light logo on sticky header */
.tp-header-sticky-3 .logo .logo-dark {
    display: none !important;
}

/* .tp-header-sticky-3 .logo .logo-light {
    display: block !important;
} */

.tp-header-sticky-3 .tp-header-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.tp-header-sticky-3 .tp-header-action-item {
    margin: 0 !important;
}

.tp-header-sticky-3 .tp-header-action-btn {
    color: var(--tp-common-white) !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
}

.tp-header-sticky-3 .tp-header-action-btn:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.05);
}

.tp-header-sticky-3 .tp-header-action-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor !important;
}

.tp-header-sticky-3 .tp-header-action-badge {
    background-color: var(--tp-common-white) !important;
    color: var(--tp-theme-primary) !important;
    position: absolute;
    top: -6px;
    right: -8px;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    border: 0;
}

/* Sticky Pills Menu - White on Primary */
.tp-sticky-pill-menu .tp-pill-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.tp-sticky-pill-menu .tp-pill-menu-list > li {
    margin: 0;
    padding: 0;
}

.tp-sticky-pill-menu .tp-pill-menu-list > li > a {
    display: inline-block;
    padding: 5px 10px;
    background-color: transparent;
    color: var(--tp-common-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tp-sticky-pill-menu .tp-pill-menu-list > li > a:hover {
    background-color: var(--tp-common-white);
    color: var(--tp-theme-primary);
    border-color: var(--tp-common-white);
    transform: translateY(-1px);
}

.tp-sticky-pill-menu .tp-pill-menu-list > li > a svg,
.tp-sticky-pill-menu .tp-pill-menu-list > li > a .ti-chevron-down {
    display: none;
}

/* Sticky menu center alignment */
.tp-header-sticky-3 .d-flex.align-items-center.justify-content-center {
    height: 100%;
}

.tp-header-sticky.header-sticky{
    background: var(--tp-theme-primary) !important;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    /* Hide normal headers on tablet - use sticky style */
    .tp-header-top-3 {
        display: none !important;
    }
    
    .tp-header-menu-3 {
        display: none !important;
    }
    
    /* Show sticky as main header on tablet */
    .tp-header-sticky-3 {
        position: relative !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 10px 0;
    }
    
    .tp-header-sticky-3.header-sticky {
        position: fixed !important;
        top: 0;
    }
    
    .tp-header-sticky-3 .logo img {
        max-height: 32px;
    }
    
    .tp-header-sticky-3 .tp-header-action-item-compare {
        display: none;
    }
    
    .tp-header-sticky-3 .tp-header-action {
        gap: 10px;
    }
    
    .tp-header-sticky-3 .tp-header-action-btn {
        width: 34px;
        height: 34px;
    }
    
    .tp-header-sticky-3 .tp-header-action-btn svg {
        width: 19px;
        height: 19px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .tp-header-transparent {
        top: 3.5rem;
    }
    
    /* Hide header top bar on mobile */
    header > .tp-header-top {
        display: none !important;
    }
    
    /* Hide normal top header on mobile - show sticky style instead */
    .tp-header-top-3 {
        display: none !important;
    }
    
    /* Hide menu pills on mobile */
    .tp-header-menu-3 {
        display: none !important;
    }
    
    /* Show sticky header as main header on mobile */
    .tp-header-sticky-3 {
        position: relative !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 12px 0;
    }
    
    .tp-header-sticky-3.header-sticky {
        position: fixed !important;
        top: 0;
    }
    
    .tp-header-sticky-3 .logo img {
        max-height: 32px;
    }
    
    .tp-header-sticky-3 .tp-header-action {
        gap: 8px;
    }
    
    .tp-header-sticky-3 .tp-header-action-btn {
        width: 34px;
        height: 34px;
    }
    
    .tp-header-sticky-3 .tp-header-action-btn svg {
        width: 19px;
        height: 19px;
    }
    
    .tp-header-sticky-3 .tp-header-action-badge {
        font-size: 9px;
        min-width: 15px;
        height: 15px;
        line-height: 15px;
        top: -5px;
        right: -7px;
    }
    
    .tp-header-sticky-3 .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hide wishlist on very small screens */
    .tp-header-sticky-3 .tp-header-action-item-wishlist {
        display: none;
    }
}







.row {
    --bs-gutter-x: 0.75rem !important;
    --bs-gutter-y: 0.75rem !important;
}