/* style.css - Main stylesheet */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== GLOBAL VARIABLES ===== */
:root {
    --primary: #b0121f;
    --primary-dim: rgba(230, 57, 70, 0.1);
    --primary-dark: #000000;
    --primary-light: #e81616;
    --bg: #f8f9fa;
    --card-bg: #ffffff;
    --text: #1e1e2f;
    --text-soft: #6c757d;
    --text-muted: #8f8fa1;
    --border: #e9ecef;
    --border-dark: #dee2e6;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --footer-bg: #2d1a1c;
    --footer-card: #3d2427;
    --footer-border: rgba(255, 255, 255, 0.08);
    --footer-text: rgba(255, 255, 255, 0.85);
    --footer-muted: rgba(255, 255, 255, 0.5);
    --font-family: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 16px 48px rgba(230, 57, 70, 0.15);
    --r: 14px;
}



/* ── Page Loader ── */
#page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Logo pulse */
.loader-logo img {
    animation: loaderPulse 1.4s ease-in-out infinite;
    border-radius: 12px;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.08); opacity: 0.75; }
}

/* Progress bar */
.loader-bar-wrap {
    width: 160px;
    height: 3px;
    background: #f0f0f0;
    border-radius: 99px;
    overflow: hidden;
}
.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #b0121f, #e81616);
    border-radius: 99px;
    animation: loaderFill 0.5s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes loaderFill {
    0%   { width: 0%; }
    60%  { width: 75%; }
    100% { width: 100%; }
}

/* Text + animated dots */
.loader-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
}
.loader-dots span {
    display: inline-block;
    animation: loaderDot 1.2s infinite;
    opacity: 0;
}
.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loaderDot {
    0%, 80%, 100% { opacity: 0; }
    40%            { opacity: 1; }
}




*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background: var(--bg);
}

/* ===== HEADER STYLES ===== */

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.announcement-bar {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.07em;
    height: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-track span {
    padding-right: 4rem; /* gap between repetitions */
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 500;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 70px;
    transition: box-shadow 0.3s;
}

.header-wrapper.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-logo img {
    display: block;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    white-space: nowrap;
    transition: all 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(.4, 0, .2, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-dim);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.chevron {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.25s, color 0.2s;
}

.has-dropdown:hover .chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.has-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 225px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.22s cubic-bezier(.4, 0, .2, 1);
    box-shadow: var(--shadow-lg);
    z-index: 600;
}

.has-dropdown:hover .dropdown-panel {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.15s;
}

.dropdown-item:hover {
    background: var(--primary-dim);
    transform: translateX(2px);
}

.di-icon {
    font-size: 14px;
    color: var(--text-muted);
    min-width: 18px;
    text-align: center;
}

.dropdown-item.featured .di-icon {
    color: var(--primary);
    font-size: 16px;
}

.di-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.di-text small {
    font-size: 11px;
    color: var(--text-soft);
}

.dropdown-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 5px 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}

.action-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.2s;
    flex-shrink: 0;
}

.action-btn:hover {
    background: var(--primary-dim);
    color: var(--primary);
    transform: scale(1.05);
}

.action-btn svg {
    width: 19px;
    height: 19px;
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(75, 73, 172, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--r);
    width: 40px;
    height: 40px;
    transition: background 0.2s;
}

.nav-toggle:hover {
    background: var(--primary-dim);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, width 0.3s, background 0.3s;
}

.nav-toggle span:nth-child(2) {
    width: 13px;
}

.nav-toggle:hover span {
    background: var(--primary);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 20px;
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 30, 47, 0.6);
    backdrop-filter: blur(4px);
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(290px, 84vw);
    height: 100dvh;
    background: var(--drawer-bg, #f8f9fa);
    border-left: 1px solid var(--border);
    z-index: 900;
    flex-direction: column;
    transition: right 0.34s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    box-shadow: -6px 0 36px rgba(75, 73, 172, 0.15);
}

.nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
}

.drawer-logo-link {
    display: flex;
    align-items: center;
}

.drawer-logo-link img {
    display: block;
}

.drawer-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.drawer-close:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.drawer-close svg {
    width: 17px;
    height: 17px;
}

.drawer-nav {
    list-style: none;
    padding: 10px 10px 0;
    flex: 1;
}

.drawer-nav li+li {
    margin-top: 2px;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 12px 13px;
    border-radius: var(--r);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    text-align: left;
}

.drawer-link:hover {
    background: var(--primary-dim);
    color: var(--primary);
    transform: translateX(2px);
}

.dl-icon {
    font-size: 14px;
}

.drawer-chevron {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.25s, color 0.25s;
}

.drawer-has-dropdown.open .drawer-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.drawer-sub {
    display: none;
    margin: 2px 0 4px 16px;
    border-left: 2px solid var(--primary);
    border-radius: 0 var(--r) var(--r) 0;
    overflow: hidden;
    background: var(--primary-dim);
}

.drawer-has-dropdown.open .drawer-sub {
    display: block;
}

.drawer-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 13.5px;
    color: var(--text);
    transition: all 0.15s;
}

.drawer-sub-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(2px);
}

.drawer-sub-link:hover span {
    color: #fff;
}

.drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.07em;
    color: var(--primary-dark);
    text-transform: uppercase;
    background: var(--primary-dim);
    font-weight: 500;
}

/* ===== SLIDESHOW STYLES ===== */
.slideshow-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slideshow {
    position: relative;
    width: 100%;
}

.slideshow .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    text-align: center;
}

.slideshow .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.slideshow .display-xl {
    font-size: clamp(2rem, 3vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.slide-overlay-accent {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
    animation: slideShimmer 2s infinite;
    border-radius: 3px;
}

@keyframes slideShimmer {

    0%,
    100% {
        transform: translateX(-50%) scaleX(0.3);
        opacity: 0.3;
        width: 60px;
    }

    50% {
        transform: translateX(-50%) scaleX(1);
        opacity: 1;
        width: 150px;
    }
}

.icon-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(75, 73, 172, 0.2);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.icon-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(75, 73, 172, 0.5);
}

.icon-arrow-left {
    left: 30px;
}

.icon-arrow-right {
    right: 30px;
}

.icon-arrow svg {
    width: 24px;
    height: 24px;
    stroke: white;
    transition: transform 0.3s;
}

.icon-arrow-left:hover svg {
    transform: translateX(-3px);
}

.icon-arrow-right:hover svg {
    transform: translateX(3px);
}

.pagination-wrapper {
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 20;
}

.slideshow-swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.slideshow-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s;
    border-radius: 10px;
    cursor: pointer;
}

.slideshow-swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    background: var(--primary);
    box-shadow: 0 0 15px rgba(75, 73, 172, 0.6);
}

.slide-dark-overlay {
    position: absolute;
    inset: 0;                                
    background: rgba(0, 0, 0, 0.45);        
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.slide-btn {
    border-width: 2px;      
    border-color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;   
}

.slide-btn:hover {
    background: #ffffff;
    color: #000000;
}

.txt-fx {
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jarallax {
    position: relative;
}

.jarallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 73, 172, 0.2) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.display-xl:hover {
    text-shadow: 0 0 20px var(--primary);
    transition: text-shadow 0.3s;
}

.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.jarallax-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* ===== BANNER ADS STYLES ===== */
.banner-ad {
    position: relative;
    background-color: var(--bg) !important;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 280px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(75, 73, 172, 0.1);
}

.banner-ad:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.banner-ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 73, 172, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.banner-ad:hover::before {
    opacity: 1;
}

.banner-ad::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(75, 73, 172, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-discount {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.banner-discount::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.banner-ad:hover .banner-discount::after {
    width: 50px;
}

.banner-discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.5s;
}

.banner-ad:hover .banner-discount::before {
    left: 100%;
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
    transition: color 0.3s;
}

.banner-ad:hover .banner-title {
    color: var(--primary-dark);
}

.btn-primary {
    background: var(--primary) !important;
    border: none !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 10px rgba(75, 73, 172, 0.3) !important;
    text-decoration: none !important;
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    transform: translateX(5px) !important;
    box-shadow: 0 6px 15px rgba(75, 73, 172, 0.4) !important;
}

.btn-arrow {
    transition: transform 0.3s;
    display: inline-block;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===== TRENDING SECTION STYLES ===== */
.trending-section {
    background: var(--bg);
    padding: 72px 48px 80px;
}

.ts-header {
    margin-bottom: 40px;
}

.ts-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
}

.ts-title-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ts-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

.ts-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.ts-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
}

.ts-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ts-sale-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(75, 73, 172, 0.08);
    color: var(--primary-dark);
    border: 1px solid rgba(75, 73, 172, 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    letter-spacing: 0.03em;
}

.ts-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    padding: 7px 16px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    transition: all 0.2s;
    background: var(--card-bg);
}

.ts-view-all svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.ts-view-all:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-dim);
    box-shadow: 0 4px 10px rgba(75, 73, 172, .2);
}

.ts-view-all:hover svg {
    transform: translateX(3px);
}

.ts-rule {
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(75, 73, 172, 0.15) 60%, transparent 100%);
}

.ts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.pc {
    background: var(--card-bg);
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    animation: cardReveal 0.5s ease both;
    animation-delay: calc(var(--i) * 0.07s);
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pc:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.pc-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg);
}

.pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
    display: block;
}

.pc:hover .pc-img {
    transform: scale(1.06);
}

.pc-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s, transform 0.25s;
}

.pc:hover .pc-overlay {
    opacity: 1;
    transform: translateX(0);
}

.pc-action {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: var(--text-soft);
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.pc-action svg {
    width: 15px;
    height: 15px;
}

.pc-action:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(75, 73, 172, .3);
}

.pc-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 100px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(75, 73, 172, .3);
}

.pc-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.pc-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.pc-name {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    flex: 1;
}

.pc-name a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s;
}

.pc-name a:hover {
    color: var(--primary);
}

.pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

.pc-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.pc-price-now {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.pc-price-was {
    font-size: 12px;
    color: var(--text-soft);
}

.pc-stock {
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    padding: 3px 9px !important;
    border-radius: 100px !important;
}

.pc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    padding: 9px 14px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(75, 73, 172, .3);
}

.pc-cta svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}

.pc-cta:hover {
    background: var(--primary-dark);
    gap: 10px;
    box-shadow: 0 4px 10px rgba(75, 73, 172, .4);
}

.pc-cta:hover svg {
    transform: translateX(2px);
}

.ts-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-soft);
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.ts-empty-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    opacity: 0.6;
}

/* ===== BESTSELLING SECTION STYLES ===== */
.bs-section {
    background: var(--bg);
    padding: 72px 48px 80px;
    overflow: hidden;
}

.bs-header {
    margin-bottom: 36px;
}

.bs-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
}

.bs-title-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bs-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

.bs-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.bs-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
}

.bs-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bs-hot-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(75, 73, 172, 0.08);
    color: var(--primary-dark);
    border: 1px solid rgba(75, 73, 172, 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    letter-spacing: 0.03em;
}

.bs-nav-btns {
    display: flex;
    gap: 8px;
}

.bs-btn-nav {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--border);
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.bs-btn-nav svg {
    width: 16px;
    height: 16px;
}

.bs-btn-nav:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(75, 73, 172, .3);
}

.bs-btn-nav:disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}

.bs-rule {
    height: 1px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(75, 73, 172, 0.15) 60%, transparent 100%);
}

.bs-carousel-wrap {
    position: relative;
    margin: 0 -48px;
    padding: 0 48px;
    overflow: hidden;
}

.bs-track {
    display: flex;
    gap: var(--gap, 18px);
    transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.bs-track:active {
    cursor: grabbing;
}

.bs-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}

.bs-fade--left {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.bs-fade--right {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
}

.bpc {
    flex: 0 0 var(--card-w, 220px);
    width: var(--card-w, 220px);
    background: var(--card-bg);
    border-radius: var(--r);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s;
    animation: bpcReveal 0.5s ease both;
    animation-delay: calc(var(--i) * 0.06s);
}

@keyframes bpcReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bpc:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.bpc-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg);
}

.bpc-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

.bpc:hover .bpc-img {
    transform: scale(1.07);
}

.bpc-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 0.25s, transform 0.25s;
}

.bpc:hover .bpc-overlay {
    opacity: 1;
    transform: translateX(0);
}

.bpc-action {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-soft);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.bpc-action svg {
    width: 13px;
    height: 13px;
}

.bpc-action:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(75, 73, 172, .3);
}

.bpc-badge {
    position: absolute;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bpc-badge--sale {
    bottom: 8px;
    left: 8px;
    background: var(--primary);
    color: #fff;
}

.bpc-badge--hot {
    top: 8px;
    left: 8px;
    background: var(--warning);
    color: var(--text);
    font-size: 9px;
}

.bpc-body {
    padding: 12px 13px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.bpc-cat {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.bpc-name {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.35;
    flex: 1;
}

.bpc-name a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s;
}

.bpc-name a:hover {
    color: var(--primary);
}

.bpc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}

.bpc-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.bpc-price-now {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
}

.bpc-price-was {
    font-size: 11px;
    color: var(--text-soft);
}

.bpc-save {
    font-size: 10px;
    font-weight: 600;
    color: var(--success);
    background: #e8f5e9;
    padding: 2px 6px;
    border-radius: 4px;
}

.bpc-stock {
    font-size: 9.5px !important;
    font-weight: 600 !important;
    padding: 2px 8px !important;
    border-radius: 100px !important;
}

.bpc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 12px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(75, 73, 172, .3);
}

.bpc-cta svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

.bpc-cta:hover {
    background: var(--primary-dark);
    gap: 9px;
    box-shadow: 0 4px 10px rgba(75, 73, 172, .4);
}

.bpc-cta:hover svg {
    transform: translateX(2px);
}

.bs-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

.bs-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--border-dark);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.bs-dot.active {
    width: 22px;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(75, 73, 172, .4);
}

.bs-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-soft);
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.bs-empty-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
    opacity: 0.6;
}

/* ===== ABOUT SECTION STYLES ===== */
.about-section {
    position: relative;
    background: var(--bg);
    padding: 88px 48px 0;
    overflow: hidden;
}

.about-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(75, 73, 172, 0.12);
}

.deco-circle--1 {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -140px;
}

.deco-circle--2 {
    width: 300px;
    height: 300px;
    bottom: 120px;
    left: -80px;
    border-color: rgba(75, 73, 172, 0.07);
}

.deco-line {
    position: absolute;
    background: rgba(75, 73, 172, 0.08);
}

.deco-line--1 {
    width: 1px;
    height: 100%;
    top: 0;
    left: 42%;
}

.deco-line--2 {
    width: 100%;
    height: 1px;
    top: 48%;
    left: 0;
}

.about-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 52px;
    position: relative;
}

.about-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    white-space: nowrap;
}

.about-eyebrow-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(75, 73, 172, 0.4), transparent);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
    position: relative;
}

.about-heading {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 22px;
}

.about-heading em {
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
}

.about-lead {
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-soft);
    margin-bottom: 36px;
    border-left: 2px solid var(--primary);
    padding-left: 18px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}

.af-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.25s;
    animation: fadeUp 0.5s ease both;
    box-shadow: var(--shadow-sm);
}

.af-item:nth-child(1) {
    animation-delay: 0.1s;
}

.af-item:nth-child(2) {
    animation-delay: 0.2s;
}

.af-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.af-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
    border-color: var(--primary);
}

.af-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--primary-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.2s;
}

.af-icon svg {
    width: 20px;
    height: 20px;
}

.af-item:hover .af-icon {
    background: var(--primary);
    color: var(--card-bg);
}

.af-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.af-text p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
}

.about-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.cert-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--card-bg);
    border: 1px solid rgba(75, 73, 172, 0.3);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 100px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: var(--primary);
    color: var(--card-bg);
    font-size: 13.5px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(75, 73, 172, .3);
}

.about-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.about-btn:hover {
    background: var(--primary-dark);
    gap: 12px;
    box-shadow: 0 4px 10px rgba(75, 73, 172, .4);
}

.about-btn:hover svg {
    transform: translateX(3px);
}

.stats-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.stat-item {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    transition: background 0.2s;
}

.stat-item:nth-child(2n) {
    border-right: none;
}

.stat-item:nth-child(3),
.stat-item:nth-child(4) {
    border-bottom: none;
}

.stat-item:hover {
    background: var(--primary-dim);
}

.stat-num {
    font-size: 38px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
}

.stat-label {
    font-size: 11.5px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    margin-top: 4px;
    text-transform: uppercase;
}

.stats-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

.trust-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 14px;
}

.trust-logos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text);
    padding: 9px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.2s;
}

.trust-logo-item:hover {
    border-color: var(--primary);
    background: var(--primary-dim);
    transform: translateX(4px);
}

.trust-logo-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.about-mission {
    position: relative;
    background: #2f1e1e;
    border-radius: 20px 20px 0 0;
    padding: 44px 48px;
    overflow: hidden;
}

.mission-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(75, 73, 172, 0.18) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    pointer-events: none;
}

.mission-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
}

.mission-left {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    flex: 1;
}

.mission-icon {
    font-size: 28px;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 4px;
    opacity: 0.9;
}

.mission-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--card-bg);
    margin-bottom: 8px;
}

.mission-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 560px;
}

.mission-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: var(--primary);
    color: var(--card-bg);
    font-size: 13px;
    font-weight: 500;
    padding: 13px 26px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(75, 73, 172, .3);
}

.mission-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.mission-btn:hover {
    background: var(--primary-dark);
    gap: 12px;
    box-shadow: 0 4px 10px rgba(75, 73, 172, .4);
}

.mission-btn:hover svg {
    transform: translateX(3px);
}

/* ===== SERVICES/FEATURES STYLES ===== */
.features-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-inner {
    padding: 0 48px;
}

.features-grid {
    display: flex;
    align-items: stretch;
}

.feat-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--primary-dim) 30%, var(--primary-dim) 70%, transparent);
    flex-shrink: 0;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.feat-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    transform: translateY(-100%);
    transition: transform 0.5s;
}

.feat-item:hover+.feat-divider::after,
.feat-divider:hover::after {
    transform: translateY(100%);
}

.feat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 36px 24px;
    cursor: default;
    position: relative;
    transition: all 0.25s;
    animation: featReveal 0.5s ease both;
    animation-delay: calc(var(--i) * 0.08s);
    overflow: hidden;
    background: #fff;
    border-radius: 0;
}

@keyframes featReveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(75, 73, 172, 0.08) 50%, transparent 60%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feat-item:hover::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.feat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
    border-radius: 0 0 4px 4px;
    transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 15px var(--primary);
}

.feat-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.feat-item:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feat-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(75, 73, 172, 0.2), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.feat-item:hover .feat-icon-wrap::before {
    opacity: 1;
}

.feat-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--primary-dim);
    background: rgba(75, 73, 172, 0.05);
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

.feat-item:hover .feat-icon-ring {
    transform: scale(1.15);
    background: rgba(75, 73, 172, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(75, 73, 172, 0.3);
    animation: pulseRing 1.5s infinite;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(75, 73, 172, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(75, 73, 172, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(75, 73, 172, 0);
    }
}

.feat-icon-wrap svg {
    position: relative;
    z-index: 1;
    width: 26px;
    height: 26px;
    color: var(--primary);
    transition: all 0.3s;
}

.feat-item:hover .feat-icon-wrap svg {
    transform: scale(1.15) translateY(-2px);
    color: var(--primary-dark);
    filter: drop-shadow(0 4px 6px rgba(75, 73, 172, 0.3));
}

.feat-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
    letter-spacing: 0.01em;
    transition: all 0.2s;
    position: relative;
    display: inline-block;
}

.feat-text h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: transform 0.3s;
}

.feat-item:hover .feat-text h4 {
    color: var(--primary-dark);
}

.feat-item:hover .feat-text h4::after {
    transform: translateX(-50%) scaleX(1);
}

.feat-text p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
    transition: color 0.2s;
}

.feat-item:hover .feat-text p {
    color: var(--text);
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: var(--footer-bg);
    position: relative;
}

.footer-top-bar {
    height: 3px;
    background: var(--footer-bg);
    position: relative;
    overflow: hidden;
}

.footer-top-bar-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--primary) 30%,
            rgba(75, 73, 172, 0.5) 60%,
            transparent 100%);
}

.footer-body {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.4fr;
    gap: 0;
    padding: 56px 48px 48px;
    border-bottom: 1px solid var(--footer-border);
}

.footer-col {
    padding: 0 32px;
    border-right: 1px solid var(--footer-border);
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-col:last-child {
    padding-right: 0;
    border-right: none;
}

.footer-logo {
    display: inline-flex;
}

.footer-logo img {
    display: block;
    filter: brightness(0.9);
    transition: filter 0.2s, transform 0.2s;
}

.footer-logo:hover img {
    filter: brightness(1);
    transform: scale(1.02);
}

.footer-tagline {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--footer-muted);
    margin: 18px 0 24px;
    max-width: 220px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--footer-border);
    color: var(--footer-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn svg {
    width: 15px;
    height: 15px;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(75, 73, 172, 0.4);
}

.footer-col-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(75, 73, 172, 0.6);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--footer-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    position: relative;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
}

.footer-links a:hover {
    color: var(--primary-light);
    gap: 10px;
    transform: translateX(2px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links--emails a {
    font-size: 12.5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fc-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    border-radius: 8px;
    color: var(--primary-light);
    margin-top: 1px;
    transition: all 0.2s;
}

.fc-icon svg {
    width: 15px;
    height: 15px;
}

.footer-contact-list li:hover .fc-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.footer-contact-list li span:last-child {
    font-size: 12.5px;
    font-weight: 400;
    color: var(--footer-text);
    line-height: 1.6;
}

.footer-newsletter {
    margin: 24px 0 18px;
}

.footer-nl-label {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--footer-muted);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-nl-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--footer-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
}

.footer-nl-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(75, 73, 172, 0.2);
}

.footer-nl-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 12.5px;
    padding: 11px 14px;
}

.footer-nl-input::placeholder {
    color: var(--footer-muted);
}

.footer-nl-btn {
    width: 42px;
    flex-shrink: 0;
    background: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s;
}

.footer-nl-btn svg {
    width: 15px;
    height: 15px;
}

.footer-nl-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.footer-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fcert {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    padding: 5px 12px;
    border: 1px solid rgba(75, 73, 172, 0.4);
    border-radius: 100px;
    color: var(--primary-light);
    background: var(--primary-dim);
    transition: all 0.2s;
}

.fcert:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 18px 48px;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    color: var(--footer-muted);
    margin: 0;
}

.footer-copy strong {
    color: var(--primary-light);
    font-weight: 600;
    transition: color 0.2s;
}

.footer-copy strong:hover {
    color: var(--primary);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: var(--footer-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
    transform: translateY(-1px);
}

.footer-bottom-links span {
    color: var(--footer-border);
    font-size: 12px;
}



#scroll-toggle {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #333333;
    border: 1px solid #dddddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, transform 0.2s;
    z-index: 9999;
}

#scroll-toggle:hover {
    background: #f5f5f5;
    transform: scale(1.08);
}




/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .ts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .footer-body {
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
        padding: 48px 32px 40px;
    }

    .footer-col {
        padding: 0 24px;
        border-right: none;
    }

    .footer-col:nth-child(odd) {
        padding-left: 0;
    }

    .footer-col:nth-child(even) {
        padding-right: 0;
        border-right: none;
    }

    .footer-col:nth-child(1),
    .footer-col:nth-child(2) {
        border-bottom: 1px solid var(--footer-border);
        padding-bottom: 36px;
    }

    .footer-col:nth-child(3),
    .footer-col:nth-child(4) {
        padding-top: 36px;
    }

    .footer-col:nth-child(odd) {
        border-right: 1px solid var(--footer-border);
    }
}

@media (max-width: 992px) {
    .slideshow .display-xl {
        font-size: 3rem;
    }

    .slide-overlay-accent {
        width: 80px;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 48px;
    }

    .about-mission {
        padding: 36px 28px;
        border-radius: 16px 16px 0 0;
    }
}

@media (max-width: 960px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }

    .nav-drawer {
        display: flex;
    }

    .header-wrapper {
        padding: 0 24px;
    }

    .trending-section {
        padding: 48px 24px 56px;
    }

    .ts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .bs-section {
        padding: 48px 24px 56px;
    }

    .bs-carousel-wrap {
        margin: 0 -24px;
        padding: 0 24px;
    }

    .features-inner {
        padding: 0 24px;
    }

    .feat-item {
        padding: 28px 14px;
        gap: 10px;
    }

    .feat-text h4 {
        font-size: 13px;
    }

    .feat-text p {
        font-size: 12px;
    }

    .feat-icon-wrap {
        width: 50px;
        height: 50px;
    }

    .feat-icon-wrap svg {
        width: 22px;
        height: 22px;
    }

    :root {
        --card-w: 200px;
    }
}

@media (max-width: 768px) {
    .slideshow .display-xl {
        font-size: 2.5rem;
    }

    .icon-arrow {
        width: 40px;
        height: 40px;
    }

    .icon-arrow-left {
        left: 15px;
    }

    .icon-arrow-right {
        right: 15px;
    }

    .icon-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slideshow-swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .slideshow-swiper-pagination .swiper-pagination-bullet-active {
        width: 25px;
    }

    .slide-overlay-accent {
        width: 60px;
        height: 2.5px;
        bottom: -15px;
    }

    .banner-ad {
        min-height: 220px;
    }

    .banner-content {
        max-width: 70%;
        padding: 24px !important;
    }

    .banner-title {
        font-size: 22px;
    }

    .btn-primary {
        padding: 8px 20px !important;
        font-size: 13px !important;
    }

    .about-section {
        padding: 60px 24px 0;
    }

    .about-mission {
        padding: 28px 20px;
    }

    .mission-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-num {
        font-size: 30px;
    }

    .about-heading {
        font-size: 26px;
    }

    .deco-circle--1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -80px;
    }

    .af-item {
        padding: 14px 16px;
    }

    .af-text h4 {
        font-size: 14px;
    }

    .af-text p {
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .feat-divider {
        display: none;
    }

    .feat-item {
        border: 1px solid var(--border);
        margin: -0.5px;
        border-radius: 0;
        padding: 24px 16px;
        background: #fff;
    }

    .feat-item:first-child {
        border-radius: 0;
    }
}

@media (max-width: 640px) {
    .trending-section {
        padding: 36px 16px 44px;
    }

    .ts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ts-title {
        font-size: 26px;
    }

    .ts-header-right {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pc-body {
        padding: 12px;
    }

    .pc-price-now {
        font-size: 14px;
    }

    .bs-section {
        padding: 36px 16px 44px;
    }

    .bs-carousel-wrap {
        margin: 0 -16px;
        padding: 0 16px;
    }

    .bpc-body {
        padding: 10px;
    }

    .bpc-price-now {
        font-size: 14px;
    }

    :root {
        --card-w: 175px;
        --gap: 12px;
    }

    .footer-body {
        grid-template-columns: 1fr;
        padding: 40px 20px 32px;
        gap: 32px;
    }

    .footer-col {
        padding: 0 !important;
        border-right: none !important;
        border-bottom: 1px solid var(--footer-border);
        padding-bottom: 28px !important;
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        padding: 16px 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .slideshow .display-xl {
        font-size: 2rem;
    }

    .icon-arrow {
        width: 35px;
        height: 35px;
    }

    .icon-arrow svg {
        width: 18px;
        height: 18px;
    }

    .slide-overlay-accent {
        width: 50px;
        height: 2px;
        bottom: -10px;
    }

    .pagination-wrapper {
        bottom: 20px;
    }

    .banner-ad {
        min-height: 200px;
    }

    .banner-content {
        max-width: 80%;
        padding: 20px !important;
    }

    .banner-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .banner-discount {
        font-size: 14px !important;
    }

    .col-md-6:first-child {
        margin-bottom: 16px;
    }

    .ts-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 0 14px;
    }

    .wishlist-btn {
        display: none;
    }

    .announcement-bar {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .ts-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feat-item {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 20px 16px;
    }

    .feat-item::after {
        display: none;
    }

    .feat-text h4 {
        margin-bottom: 2px;
    }

    .feat-text h4::after {
        display: none;
    }

    .feat-icon-wrap {
        width: 45px;
        height: 45px;
    }

    .feat-icon-wrap svg {
        width: 20px;
        height: 20px;
    }


    /* Add to your existing CSS file */
.service-detail-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.service-hero {
    position: relative;
    overflow: hidden;
}

.service-feature, 
.security-item, 
.quality-item, 
.savings-item, 
.offer-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

.service-feature:hover,
.security-item:hover,
.quality-item:hover,
.savings-item:hover,
.offer-item:hover {
    transform: translateX(10px);
    background-color: #f8f9fa;
}

.feat-item-link {
    display: block;
    transition: transform 0.3s ease;
}

.feat-item-link:hover {
    transform: translateY(-5px);
}
}