:root{--primary:#e8192c;--primary-dark:#c0121f;--dark:#1a1a2e;--text:#333;--light:#f8f9fa;--border:#e5e5e5;}
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Segoe UI',sans-serif;color:var(--text);background:#fff;}
a{text-decoration:none;color:inherit;}

/* ===== TOP BAR ===== */
.topbar{background:#1a1a2e;color:rgba(255,255,255,.8);font-size:.78rem;padding:.4rem 0;}
.topbar a{color:rgba(255,255,255,.8);}
.topbar a:hover{color:#fff;}

/* ===== HEADER ===== */
.main-header{background:#fff;border-bottom:1px solid var(--border);padding:.8rem 0;position:sticky;top:0;z-index:1000;box-shadow:0 2px 8px rgba(0,0,0,.06);}
.logo-wrap{display:flex;align-items:center;gap:10px;}
.logo-wrap img{height:55px;object-fit:contain;}
.logo-text{font-size:1.4rem;font-weight:800;color:var(--primary);line-height:1;}
.logo-sub{font-size:.7rem;color:#888;letter-spacing:.1rem;text-transform:uppercase;}

/* ===== ATTRACTIVE SEARCH BAR ===== */
.search-wrapper {
    flex: 1;
    max-width: 500px;
    margin: 0 1.5rem;
}
.search-bar-new {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 4px 6px 4px 18px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    width: 100%;
}
.search-bar-new:focus-within {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(232, 25, 44, 0.08), inset 0 1px 2px rgba(0,0,0,0.02);
}
.search-bar-new .search-icon-prefix {
    color: #9ca3af;
    margin-right: 10px;
    font-size: 1rem;
    transition: color 0.3s;
}
.search-bar-new:focus-within .search-icon-prefix {
    color: var(--primary);
}
.search-bar-new input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #1f2937;
    outline: none;
}
.search-bar-new input::placeholder {
    color: #9ca3af;
}
.search-bar-new button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 24px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(232, 25, 44, 0.2);
}
.search-bar-new button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 25, 44, 0.35);
}
.search-bar-new button:active {
    transform: translateY(0);
}

/* ===== ATTRACTIVE ACTIONS (WISHLIST & CART) ===== */
.header-actions-new {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.action-item-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
    color: #1f2937 !important;
}
.action-icon-circle {
    position: relative;
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    color: #1f2937;
}
.action-icon-circle:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}
.action-icon-circle i {
    font-size: 1.2rem;
}
.action-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.action-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.action-text-wrap .label {
    font-size: 0.76rem;
    color: #6b7280;
    font-weight: 500;
}
.action-text-wrap .value {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 1px;
}

/* ===== NAVIGATION ===== */
.main-nav{background:#fff;border-bottom:2px solid var(--border);}
.nav-inner{display:flex;align-items:center;}
.all-categories-btn{background:var(--primary);color:#fff;padding:.65rem 1.2rem;font-weight:700;font-size:.85rem;display:flex;align-items:center;gap:.5rem;cursor:pointer;border:none;white-space:nowrap;border-radius:4px 4px 0 0;}
.all-categories-btn:hover{background:var(--primary-dark);}
.nav-links{display:flex;align-items:center;gap:0;margin-left:1.5rem;}
.nav-link-item{padding:.65rem 1.1rem;font-weight:600;font-size:.88rem;color:#333;border-bottom:2px solid transparent;transition:all .2s;}
.nav-link-item:hover,.nav-link-item.active{color:var(--primary);border-bottom-color:var(--primary);}

/* ===== HERO SLIDER ===== */
.hero-section{position:relative;overflow:hidden;}
.hero-slide{position:relative;height:480px;display:flex;align-items:center;background:linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);}
.hero-slide img.hero-bg{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;opacity:.6;}
.hero-content{position:relative;z-index:2;padding:2rem 3rem;}
.hero-tag{background:var(--primary);color:#fff;font-size:.75rem;font-weight:700;padding:.3rem .9rem;border-radius:3px;display:inline-block;margin-bottom:1rem;text-transform:uppercase;letter-spacing:.1rem;}
.hero-title{font-size:2.8rem;font-weight:800;color:#fff;line-height:1.2;margin-bottom:1rem;}
.hero-subtitle{font-size:1rem;color:rgba(255,255,255,.8);margin-bottom:1.8rem;max-width:420px;}
.btn-shop-now{background:var(--primary);color:#fff;padding:.8rem 2rem;border-radius:4px;font-weight:700;font-size:.95rem;display:inline-block;transition:all .3s;}
.btn-shop-now:hover{background:var(--primary-dark);color:#fff;transform:translateY(-2px);}
.btn-shop-outline{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.7);padding:.8rem 1.8rem;border-radius:4px;font-weight:600;margin-left:.8rem;display:inline-block;transition:all .3s;}
.btn-shop-outline:hover{background:rgba(255,255,255,.1);color:#fff;}
.hero-owl .owl-dots{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);}
.hero-owl .owl-dot span{background:rgba(255,255,255,.5)!important;width:10px!important;height:10px!important;}
.hero-owl .owl-dot.active span{background:#fff!important;}

/* ===== SECTION HEADERS ===== */
.section-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem;padding-bottom:.8rem;border-bottom:2px solid var(--border);}
.section-header h2{font-size:1.3rem;font-weight:800;color:var(--dark);display:flex;align-items:center;gap:.5rem;}
.section-header h2::before{content:'';width:4px;height:22px;background:var(--primary);border-radius:2px;display:inline-block;}
.view-all-btn{color:var(--primary);font-weight:600;font-size:.85rem;display:flex;align-items:center;gap:.3rem;}
.view-all-btn:hover{color:var(--primary-dark);}

/* ===== CATEGORIES ROW ===== */
.categories-row{background:#fff;padding:2rem 0;border-bottom:1px solid var(--border);}
.cat-item{text-align:center;padding:.5rem;cursor:pointer;transition:all .2s;}
.cat-item:hover .cat-label{color:var(--primary); text-decoration: underline; text-underline-offset: 5px;}
.cat-img-wrap {
    position: relative;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #f8fafc;
    margin: 0.5rem auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}
.cat-img-wrap::after {
    content: '';
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: -1;
}
.cat-item:hover .cat-img-wrap::after {
    opacity: 1;
    transform: scale(1);
    animation: spin-dashed-border 8s linear infinite;
}
.cat-item:hover .cat-img-wrap {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
@keyframes spin-dashed-border {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1); }
}
.cat-img-wrap img{width:100%;height:100%;object-fit:cover;border-radius:50%;}
.cat-img-wrap i{font-size:2rem;color:#aaa;}
.cat-label{
    font-size:0.92rem;
    font-weight:700;
    color:#374151;
    transition: color 0.2s;
    display: block;
    margin-top: 0.6rem;
}
@media(max-width: 768px) {
    .cat-img-wrap {
        width: 90px;
        height: 90px;
    }
    .cat-label {
        font-size: 0.82rem;
    }
}

/* ===== MOBILE MENU DRAWER ===== */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer-overlay.show {
    visibility: visible;
    opacity: 1;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 10001;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mobile-drawer.show {
    transform: translateX(280px);
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem;
    border-bottom: 1px solid #f1f5f9;
}
.drawer-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4b5563;
    transition: background 0.2s;
}
.drawer-close:hover {
    background: #e2e8f0;
    color: var(--primary);
}
.drawer-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.drawer-nav-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.drawer-nav-item:hover, .drawer-nav-item.active {
    background: rgba(232, 25, 44, 0.08);
    color: var(--primary);
}
.drawer-contact-info {
    font-size: 0.82rem;
    color: #6b7280;
    font-weight: 500;
}

@media(max-width: 480px) {
    .cat-img-wrap {
        width: 75px;
        height: 75px;
    }
    .cat-label {
        font-size: 0.78rem;
    }
}

/* ===== PRODUCT CARD ===== */
.product-card-new{background:#fff;border:1px solid var(--border);border-radius:6px;overflow:hidden;transition:all .3s;position:relative;}
.product-card-new:hover{box-shadow:0 8px 25px rgba(0,0,0,.12);border-color:#ddd;transform:translateY(-3px);}
.product-card-new:hover .product-actions{opacity:1;}
.product-img-wrap{position:relative;height:200px;background:#f9f9f9;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.product-img-wrap img{max-height:180px;max-width:90%;object-fit:contain;transition:transform .3s;}
.product-card-new:hover .product-img-wrap img{transform:scale(1.05);}
.product-badge{position:absolute;top:8px;left:8px;padding:.2rem .6rem;border-radius:3px;font-size:.7rem;font-weight:700;z-index:2;}
.badge-sale{background:var(--primary);color:#fff;}
.badge-new{background:#10b981;color:#fff;}
.badge-hot{background:#f59e0b;color:#fff;}
.product-actions{position:absolute;bottom:8px;right:8px;display:flex;flex-direction:column;gap:5px;opacity:0;transition:opacity .3s;}
.action-btn{width:32px;height:32px;background:#fff;border:1px solid #ddd;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.85rem;color:#555;cursor:pointer;transition:all .2s;}
.action-btn:hover{background:var(--primary);color:#fff;border-color:var(--primary);}
.product-info{padding:.9rem;}
.product-brand{font-size:.72rem;color:#888;text-transform:uppercase;letter-spacing:.05rem;}
.product-title-card{font-weight:700;font-size:.9rem;color:#222;margin:.2rem 0 .5rem;line-height:1.4;}
.product-title-card:hover{color:var(--primary);}
.product-price-wrap{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;}
.price-now{font-size:1.05rem;font-weight:800;color:var(--primary);}
.price-was{font-size:.82rem;color:#aaa;text-decoration:line-through;}
.price-save{font-size:.72rem;color:#10b981;font-weight:600;}
.btn-add-cart{display:block;background:var(--primary);color:#fff;text-align:center;padding:.55rem;font-weight:700;font-size:.82rem;margin-top:.7rem;border-radius:4px;transition:all .2s;cursor:pointer;}
.btn-add-cart:hover{background:var(--primary-dark);color:#fff;}
.rating{display:flex;align-items:center;gap:3px;margin-bottom:.3rem;}
.rating i{color:#f59e0b;font-size:.7rem;}
.rating span{font-size:.72rem;color:#888;}

/* ===== BANNER STRIPS ===== */
.promo-banner{border-radius:8px;overflow:hidden;position:relative;margin-bottom:1rem;}
.promo-banner img{width:100%;height:180px;object-fit:cover;}
.promo-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.6),transparent);display:flex;flex-direction:column;justify-content:flex-end;padding:1.2rem;}
.promo-label{color:rgba(255,255,255,.8);font-size:.75rem;text-transform:uppercase;letter-spacing:.1rem;}
.promo-title{color:#fff;font-size:1.1rem;font-weight:800;}
.promo-btn{background:var(--primary);color:#fff;padding:.35rem .9rem;border-radius:3px;font-size:.78rem;font-weight:600;margin-top:.5rem;display:inline-block;}

/* ===== SIDEBAR ===== */
.sidebar-section{background:#fff;border:1px solid var(--border);border-radius:6px;margin-bottom:1rem;overflow:hidden;}
.sidebar-header{background:var(--primary);color:#fff;padding:.7rem 1rem;font-weight:700;font-size:.88rem;}
.sidebar-item{display:flex;align-items:center;gap:.8rem;padding:.7rem 1rem;border-bottom:1px solid #f5f5f5;transition:background .2s;}
.sidebar-item:last-child{border-bottom:none;}
.sidebar-item:hover{background:#fafafa;}
.sidebar-img{width:55px;height:55px;object-fit:contain;background:#f9f9f9;border-radius:4px;flex-shrink:0;}
.sidebar-info .name{font-size:.82rem;font-weight:600;color:#222;line-height:1.3;}
.sidebar-info .price{font-size:.88rem;font-weight:800;color:var(--primary);}

/* ===== DAILY DEAL ===== */
.deal-section{background:linear-gradient(135deg,#1a1a2e,#0f3460);padding:2.5rem 0;margin:1.5rem 0;}
.deal-badge{background:var(--primary);color:#fff;padding:.3rem .9rem;border-radius:3px;font-size:.75rem;font-weight:700;text-transform:uppercase;display:inline-block;margin-bottom:.7rem;}
.deal-title{font-size:1.8rem;font-weight:800;color:#fff;margin-bottom:.5rem;}
.deal-subtitle{color:rgba(255,255,255,.7);font-size:.9rem;margin-bottom:1.2rem;}
.countdown{display:flex;gap:.8rem;margin-bottom:1.5rem;}
.countdown-item{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:6px;padding:.6rem .9rem;text-align:center;min-width:60px;}
.countdown-num{font-size:1.5rem;font-weight:800;color:#fff;line-height:1;}
.countdown-label{font-size:.65rem;color:rgba(255,255,255,.6);text-transform:uppercase;letter-spacing:.1rem;}
.deal-price-big{font-size:2rem;font-weight:900;color:var(--primary);}
.deal-img-wrap{text-align:center;}
.deal-img-wrap img{max-height:280px;object-fit:contain;filter:drop-shadow(0 10px 30px rgba(0,0,0,.3));}

/* ===== TABS ===== */
.product-tabs{display:flex;gap:0;border-bottom:2px solid var(--border);margin-bottom:1.2rem;}
.product-tab{padding:.55rem 1.2rem;font-weight:600;font-size:.85rem;color:#666;cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-2px;transition:all .2s;}
.product-tab.active{color:var(--primary);border-bottom-color:var(--primary);}
.product-tab:hover{color:var(--primary);}

/* ===== NEWSLETTER ===== */
.newsletter-section{background:linear-gradient(135deg,var(--primary),#c0121f);padding:3rem 0;}
.newsletter-title{font-size:1.6rem;font-weight:800;color:#fff;margin-bottom:.5rem;}
.newsletter-sub{color:rgba(255,255,255,.85);font-size:.92rem;margin-bottom:0;}
.newsletter-form{display:flex;gap:0;max-width:420px;}
.newsletter-form input{flex:1;border:none;padding:.75rem 1.2rem;border-radius:4px 0 0 4px;font-size:.9rem;outline:none;}
.newsletter-form button{background:#1a1a2e;color:#fff;border:none;padding:.75rem 1.4rem;font-weight:700;border-radius:0 4px 4px 0;cursor:pointer;font-size:.88rem;}
.newsletter-form button:hover{background:#000;}

/* ===== FOOTER ===== */
.main-footer{background:#1a1a2e;color:rgba(255,255,255,.75);padding:3rem 0 0;}
.footer-logo{margin-bottom:1rem;}
.footer-logo img{height:50px;object-fit:contain;}
.footer-logo-text{font-size:1.4rem;font-weight:800;color:#fff;}
.footer-desc{font-size:.85rem;line-height:1.7;margin-bottom:1.2rem;}
.footer-contact-item{display:flex;align-items:flex-start;gap:.7rem;margin-bottom:.7rem;font-size:.85rem;}
.footer-contact-item i{color:var(--primary);margin-top:3px;width:14px;flex-shrink:0;}
.footer-title{color:#fff;font-weight:700;font-size:.95rem;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid rgba(255,255,255,.1);}
.footer-link{display:block;color:rgba(255,255,255,.65);font-size:.85rem;margin-bottom:.45rem;transition:color .2s;}
.footer-link:hover{color:var(--primary);}
.footer-social{display:flex;gap:.7rem;margin-top:1rem;}
.social-icon{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;color:#fff;font-size:.9rem;transition:all .2s;}
.social-icon:hover{background:var(--primary);color:#fff;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:2rem;padding:1.2rem 0;text-align:center;font-size:.8rem;color:rgba(255,255,255,.5);}
.footer-bottom a{color:rgba(255,255,255,.5);}
.footer-bottom a:hover{color:var(--primary);}

/* ===== FLOATING CONTAINER & BUTTONS ===== */
.float-container {
    position: fixed;
    bottom: 25px;
    right: 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.float-contact-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    color: #fff;
}
.back-to-top-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1a1a2e;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(232, 25, 44, 0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card{background:#fff;border:1px solid var(--border);border-radius:8px;padding:1.5rem;margin:.5rem;}
.testimonial-text{font-size:.88rem;color:#555;line-height:1.7;margin-bottom:1rem;font-style:italic;}
.testimonial-author{display:flex;align-items:center;gap:.8rem;}
.author-avatar{width:42px;height:42px;border-radius:50%;background:var(--primary);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1rem;flex-shrink:0;}
.author-name{font-weight:700;font-size:.88rem;color:#222;}
.author-location{font-size:.75rem;color:#888;}

/* ===== RESPONSIVE ===== */
@media(max-width:991px){.hero-slide{height:350px;}.hero-title{font-size:2rem;}.search-wrapper{max-width:100%;margin:0;}}
@media(max-width:767px){.hero-slide{height:280px;}.hero-content{padding:1.5rem;}.hero-title{font-size:1.5rem;}.hero-subtitle{display:none;}.topbar .topbar-contact{display:none;}}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, #fafafa 0%, #fff5f5 100%);
    border-top: 1px solid #f1e8e8;
    border-bottom: 1px solid #f1e8e8;
}
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.8rem 1.8rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    margin: 10px 12px 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(232,25,44,0.12);
}
.t-quote {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(232,25,44,0.35);
}
.t-stars { display: flex; gap: 2px; }
.t-message {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.4rem;
    font-style: italic;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}
.t-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}
.t-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.t-avatar-initial {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
}
.t-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #1a1a2e;
}
.t-designation {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* Carousel wrapper — flex so arrows sit on both sides */
.t-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}
.t-carousel-wrap .testimonial-slider {
    flex: 1;
    min-width: 0;
}

/* Custom nav arrow buttons */
.t-nav-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e8192c;
    background: #fff;
    color: #e8192c;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232,25,44,0.15);
    transition: all 0.25s ease;
    outline: none;
    position: relative;
    z-index: 10;
}
.t-nav-btn:hover {
    background: #e8192c;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(232,25,44,0.35);
}
.t-nav-btn:active {
    transform: scale(0.97);
}

/* Owl dot overrides */
.testimonial-slider .owl-dot span {
    background: #fca5a5 !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    transition: all 0.3s !important;
}
.testimonial-slider .owl-dot.active span {
    background: var(--primary) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

@media(max-width:767px) {
    .t-nav-btn { width: 38px; height: 38px; font-size: 0.85rem; }
    .t-carousel-wrap { gap: 8px; }
    .testimonial-card { margin: 8px 4px 16px; }
}

