/* Thugs Life Shisha - Custom Styles */

/* ============================================
   BRAND NAME IN HEADER
   ============================================ */
@keyframes brandGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(233, 64, 87, 0.5), 0 0 10px rgba(233, 64, 87, 0.3), 0 0 15px rgba(233, 64, 87, 0.2);
    }
    50% {
        text-shadow: 0 0 10px rgba(233, 64, 87, 0.8), 0 0 20px rgba(233, 64, 87, 0.5), 0 0 30px rgba(233, 64, 87, 0.3);
    }
}
.brand-name-header {
    display: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 12px;
    line-height: 1.3;
}
.brand-name-header .brand-thugs {
    color: #e94057;
    font-size: 16px;
    display: block;
    font-weight: 800;
    animation: brandGlow 2s ease-in-out infinite;
}
.brand-name-header .brand-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}
@media (min-width: 768px) {
    .brand-name-header {
        display: block;
    }
}
@media (min-width: 992px) {
    .brand-name-header .brand-thugs {
        font-size: 18px;
    }
    .brand-name-header .brand-sub {
        font-size: 11px;
    }
}

/* ============================================
   FOOTER LOGO MOBILE FIXES
   ============================================ */
.footer__copy-text .logo img {
    max-width: 120px;
    height: auto;
}
@media (max-width: 767px) {
    .footer__copy-text .logo img {
        max-width: 50px;
    }
    .footer__copy-text {
        text-align: center;
    }
    .footer__copy-text .logo {
        margin: 0 auto 15px;
    }
    .footer__copy-text p {
        font-size: 12px;
    }
}

/* ============================================
   MARQUEE TEXT - SMALLER SIZE ALL SCREENS
   ============================================ */
.marquee-item {
    font-size: 32px !important;
}
@media (max-width: 991px) {
    .marquee-item {
        font-size: 22px !important;
    }
    .marquee-inner.to-left {
        animation-duration: 12s !important;
    }
    .marquee-inner.to-right {
        animation-duration: 12s !important;
    }
}
@media (max-width: 767px) {
    .marquee-item {
        font-size: 16px !important;
    }
    .marquee-inner.to-left {
        animation-duration: 8s !important;
    }
    .marquee-inner.to-right {
        animation-duration: 8s !important;
    }
}
@media (max-width: 480px) {
    .marquee-item {
        font-size: 14px !important;
    }
    .marquee-inner.to-left {
        animation-duration: 6s !important;
    }
    .marquee-inner.to-right {
        animation-duration: 6s !important;
    }
}

/* ============================================
   LOGO FIXES
   ============================================ */
.top__header .top__wrapper .main__logo {
    margin-right: 30px;
    width: auto;
    height: auto;
    max-width: 120px;
    display: flex !important;
    align-items: center;
}

.top__header .top__wrapper .main__logo img {
    width: 100%;
    max-width: 120px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    border-radius: 10px;
}

@media screen and (max-width: 500px) {
    .top__header .top__wrapper .main__logo {
        display: flex !important;
        max-width: 70px;
        margin-right: 10px;
    }
    
    .top__header .top__wrapper .main__logo img {
        max-width: 70px;
        max-height: 60px;
    }
}

/* ============================================
   HIDE SEARCH BAR & FLAG COMPLETELY
   ============================================ */
.top__header .top__wrapper .search__wrp,
.top__header .top__wrapper .flag__wrap {
    display: none !important;
}

/* ============================================
   TOP HEADER STYLING
   ============================================ */
.top__header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 10002;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.top__header .top__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Account Section Modern */
.top__header .top__wrapper .account__wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top__header .top__wrapper .account__wrap .account {
    background: linear-gradient(135deg, #fa4f09 0%, #ff6b35 100%);
    border-radius: 50px;
    padding: 8px 20px 8px 8px;
    transition: all 0.3s ease;
}

.top__header .top__wrapper .account__wrap .account:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(250, 79, 9, 0.4);
}

.top__header .top__wrapper .account__wrap .account .user__icon {
    background: rgba(255, 255, 255, 0.2);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top__header .top__wrapper .account__wrap .account .user__icon a {
    color: #fff;
}

.top__header .top__wrapper .account__wrap .account .acc__cont span {
    color: #fff !important;
    font-weight: 600;
}

/* Login/Signup Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-buttons.d-none,
#guest-buttons.d-none {
    display: none !important;
}

#user-account.d-none {
    display: none !important;
}

.btn-login, .btn-signup {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    border: 2px solid #fa4f09;
    color: #fff !important;
}

.btn-login:hover {
    background: #fa4f09;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(250, 79, 9, 0.4);
}

.btn-signup {
    background: linear-gradient(135deg, #fa4f09 0%, #ff6b35 100%);
    border: 2px solid transparent;
    color: #fff !important;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(250, 79, 9, 0.4);
}

/* User Account Dropdown */
#user-account .dropdown-toggle {
    color: #fff !important;
    text-decoration: none;
}

#user-account .dropdown-toggle::after {
    margin-left: 8px;
}

#user-account .dropdown-menu {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 180px;
    margin-top: 10px;
}

#user-account .dropdown-item {
    color: #fff;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

#user-account .dropdown-item:hover {
    background: #fa4f09;
    color: #fff;
}

#user-account .dropdown-item i {
    width: 20px;
}

/* Cart Modern Style */
.top__header .top__wrapper .account__wrap .cart {
    background: #2a2a2a;
    border-radius: 50px;
    padding: 8px 20px;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
    position: relative;
}

.top__header .top__wrapper .account__wrap .cart:hover {
    border-color: #fa4f09;
    background: #333;
}

.top__header .top__wrapper .account__wrap .cart .cart__icon {
    color: #fff;
}

/* Cart text white */
.top__header .top__wrapper .account__wrap .cart .c__one span,
.top__header .top__wrapper .account__wrap .cart .c__one {
    color: #fff !important;
}

.top__header .top__wrapper .account__wrap .cart .one {
    background: #fa4f09;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* ============================================
   MOBILE HAMBURGER - IN TOP HEADER
   ============================================ */
.mobile-hamburger {
    display: none;
}

@media (max-width: 991px) {
    .mobile-hamburger {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #fa4f09 0%, #ff6b35 100%);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
        box-shadow: 0 4px 15px rgba(250, 79, 9, 0.3);
        cursor: pointer;
        margin-left: auto;
    }

    .mobile-hamburger span {
        display: block;
        width: 22px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        margin: 2px 0;
        transition: all 0.3s ease;
    }

    .mobile-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hide account/cart on mobile - show only hamburger */
    .top__header .top__wrapper .account__wrap {
        display: none !important;
    }
    
    /* Show smaller login button on mobile */
    .top__header .top__wrapper .account__wrap #guest-buttons {
        display: none !important;
    }
}

/* Mobile Auth Buttons in Menu */
@media (max-width: 991px) {
    .btn-login, .btn-signup {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* ============================================
   HIDE ALL OTHER HAMBURGERS
   ============================================ */
.header-bar {
    display: none !important;
}

/* ============================================
   NAVIGATION - DESKTOP
   ============================================ */
.header-section {
    background: #111;
    border-bottom: 1px solid #2a2a2a;
}

/* Hide mobile menu items on desktop */
.mobile-menu-item {
    display: none !important;
}

/* ============================================
   NAVIGATION - MOBILE SLIDE OUT
   ============================================ */
@media (max-width: 991px) {
    .header-section {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        left: auto !important;
        width: 280px !important;
        height: 100vh !important;
        background: #111 !important;
        z-index: 10000 !important;
        padding-top: 70px !important;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5) !important;
        overflow-y: auto !important;
        transition: right 0.3s ease !important;
        border-left: 1px solid #2a2a2a;
    }
    
    .header-section.menu-open {
        right: 0 !important;
    }
    
    .header-section .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .header-section .header-wrapper {
        flex-direction: column;
        padding: 0;
    }
    
    .header-section .main-menu {
        display: block !important;
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
        transform: none !important;
        max-height: none !important;
        background: transparent !important;
    }
    
    .header-section .main-menu li {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid #2a2a2a;
        margin: 0 !important;
    }
    
    .header-section .main-menu li:first-child {
        border-top: 1px solid #2a2a2a;
    }
    
    .header-section .main-menu li a {
        display: block !important;
        padding: 18px 25px !important;
        color: #fff !important;
        font-size: 16px !important;
    }
    
    .header-section .main-menu li a:hover {
        color: #fa4f09 !important;
        background: rgba(250, 79, 9, 0.1);
    }
    
    /* Show mobile menu items */
    .mobile-menu-item {
        display: block !important;
    }
    
    .mobile-menu-item a {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-menu-item a i {
        color: #fa4f09;
    }
    
    /* Hide shipping section */
    .header-section .shipping__item {
        display: none !important;
    }
}

/* ============================================
   CLOSE BUTTON IN MOBILE MENU
   ============================================ */
.menu-close-btn {
    display: none;
}

@media (max-width: 991px) {
    .menu-close-btn {
        display: flex;
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        font-size: 20px;
        color: #fff;
    }
    
    .menu-close-btn:hover {
        background: rgba(250, 79, 9, 0.3);
    }
}

/* ============================================
   FOOTER & SIDEBAR LOGO FIX
   ============================================ */
.footer__copy-text .logo img,
.sidebar .logo img {
    max-width: 100px;
    height: auto;
    border-radius: 10px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-area {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.features-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" x="50" y="50" fill="rgba(250,79,9,0.03)"/></svg>') repeat;
    pointer-events: none;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid #2a2a2a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 79, 9, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #fa4f09;
    box-shadow: 0 15px 40px rgba(250, 79, 9, 0.3);
    background: linear-gradient(135deg, #1f1f1f 0%, #151515 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fa4f09 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(250, 79, 9, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fa4f09;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(250, 79, 9, 0.5);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    transform: scale(1.2);
}

.feature-icon i {
    font-size: 36px;
    color: #fff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-content h3 {
    color: #fa4f09;
}

.feature-content p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-content p {
    color: #d0d0d0;
}

/* Animation delays for stagger effect */
/* Initial state - cards hidden */
.feature-card {
    opacity: 0;
}

.feature-card.fadeInLeft {
    transform: translateX(-80px);
}

.feature-card.fadeInUp {
    transform: translateY(80px);
}

.feature-card.fadeInRight {
    transform: translateX(80px);
}

/* Animated state when visible */
.feature-card.animate {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 0.8s ease-out;
}

.feature-card.fadeInLeft.animate {
    transition-delay: 0.1s;
}

.feature-card.fadeInUp.animate {
    transition-delay: 0.3s;
}

.feature-card.fadeInRight.animate {
    transition-delay: 0.5s;
}

/* Responsive */
@media (max-width: 991px) {
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 30px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .features-area {
        padding: 50px 0;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* ============================================
   STORE LOCATION PICKER - DROPDOWN STYLE
   ============================================ */
.store-picker-wrap {
    position: relative;
}

.store-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.store-dropdown-trigger:hover {
    color: #fa4f09;
}

.store-dropdown-trigger i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.store-dropdown-trigger.active i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.store-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-top: 10px;
}

.store-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.store-dropdown-item {
    padding: 12px 16px;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.store-dropdown-item:last-child {
    border-bottom: none;
}

.store-dropdown-item:hover {
    background: rgba(250, 79, 9, 0.1);
    color: #fa4f09;
}

.store-dropdown-item.selected {
    background: rgba(250, 79, 9, 0.15);
    color: #fa4f09;
}

/* Store Details Panel - Shows after selection */
.store-details-panel {
    display: none;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px 20px;
    margin-left: 20px;
    min-width: 200px;
}

.store-details-panel.show {
    display: block;
}

.store-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #ccc;
}

.store-detail-item:last-child {
    margin-bottom: 0;
}

.store-detail-item i {
    color: #fa4f09;
    font-size: 14px;
    min-width: 16px;
    margin-top: 2px;
}

.store-detail-item span {
    line-height: 1.5;
}

/* Menu Right Section */
.menu__right .content {
    position: relative;
}

.menu__right .content > p {
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1199px) {
    .store-details-panel {
        min-width: 180px;
        padding: 12px 15px;
    }
    
    .store-dropdown {
        min-width: 180px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1517620114853-2be77e8a3b1d?w=1920') center/cover no-repeat fixed;
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

/* Counter Section */
.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.counter-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.counter-item:hover {
    background: rgba(250, 79, 9, 0.1);
    border-color: #fa4f09;
    transform: translateY(-5px);
}

.counter-item .counter {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.counter-item .plus {
    font-size: 40px;
    font-weight: 700;
    color: #fa4f09;
}

.counter-item p {
    font-size: 16px;
    color: #aaa;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Content */
.why-choose-content {
    padding-left: 50px;
}

.why-choose-content .sub-title {
    color: #fa4f09;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.why-choose-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-content > p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.choose-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border-left: 3px solid #fa4f09;
    transition: all 0.4s ease;
}

.choose-feature-item:hover {
    background: rgba(250, 79, 9, 0.1);
    transform: translateX(10px);
}

.choose-feature-item .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #fa4f09 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-feature-item .icon i {
    font-size: 20px;
    color: #fff;
}

.choose-feature-item .content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.choose-feature-item .content p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250, 79, 9, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    pointer-events: none;
}

.benefits-content .sub-title {
    color: #fa4f09;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.benefits-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.benefits-content p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.7;
}

.benefits-image {
    text-align: center;
    position: relative;
}

.benefits-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(250, 79, 9, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.benefits-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(250, 79, 9, 0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Progress Bars */
.progress-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.progress-item {
    padding: 15px 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.progress-percent {
    font-size: 16px;
    font-weight: 700;
    color: #fa4f09;
}

.progress-bar-wrap {
    width: 100%;
    height: 8px;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #fa4f09 0%, #ff6b35 100%);
    border-radius: 10px;
    transition: width 1.5s ease-out;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-bar-fill.animate {
    width: var(--target-width);
}

/* ============================================
   PRODUCT CARD - CLEAN & PROFESSIONAL
   ============================================ */
.product__item {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product__item:hover {
    border-color: #fa4f09;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Product Image */
.product__item .product__image {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

/* Wishlist Button */
.product__item .wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.product__item .wishlist:hover {
    background: #fa4f09;
}

.product__item .wishlist i {
    color: #fff;
    font-size: 14px;
}

/* Product Content */
.product__item .product__content {
    padding: 20px;
}

.product__item .product__content h4 a {
    color: #fff;
    transition: color 0.3s ease;
}

.product__item .product__content h4 a:hover {
    color: #fa4f09;
}

.product__item .product__content del {
    color: #666;
}

.product__item .product__content .star i {
    color: #fa4f09;
}

/* Add to Cart Button */
.product__item .product__cart {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.product__item .product__cart:hover {
    background: #fa4f09;
}

.product__item .product__cart span {
    color: #fff;
}

.product__item .product__cart i {
    transition: color 0.3s ease;
}

.product__item .product__cart:hover i {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .why-choose-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .counter-item .counter {
        font-size: 45px;
    }
    
    .why-choose-content h2,
    .benefits-content h2 {
        font-size: 32px;
    }
    
    .benefits-image {
        margin: 40px 0;
    }
}

@media (max-width: 767px) {
    .why-choose-us,
    .benefits-section {
        padding: 60px 0;
    }
    
    .counter-wrapper {
        gap: 20px;
    }
    
    .counter-item {
        padding: 20px;
    }
    
    .counter-item .counter {
        font-size: 36px;
    }
}
