/* ================================================================
   WISIVA - LEGENDARY Homepage Styles v2.0
   Ultra-Modern · Cinematic · Animated · Premium
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ================================================================
   KEYFRAMES - Epic Animations
   ================================================================ */
@keyframes heroTextReveal {
    0% { opacity: 0; transform: translateY(40px); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroSearchReveal {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-25px) rotate(2deg); }
}

@keyframes floatShapeSlow {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes dropdownReveal {
    from { opacity: 0; transform: translateY(-8px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes sectionFadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(10, 10, 10, 0.06); }
    50% { border-color: rgba(10, 10, 10, 0.15); }
}

@keyframes counterUp {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* ================================================================
   GLOBAL OVERRIDES
   ================================================================ */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fafafa;
}

::selection {
    background: #0a0a0a;
    color: #fff;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* ================================================================
   NAVBAR - Sleek Glass Effect
   ================================================================ */
.nav-bar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar.v2 {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-bar .link {
    font-size: 0.88rem;
    color: #1a1a1a !important;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.nav-bar .link:hover {
    color: #000 !important;
    transform: translateY(-1px);
}

.drop-down-btn {
    font-size: 0.88rem;
    color: #1a1a1a !important;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.drop-down .drop-down-menu {
    border: none !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 16px !important;
    padding: 8px !important;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98) !important;
    animation: dropdownReveal 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.drop-down .drop-down-menu .drop-down-item {
    font-size: 0.88rem;
    color: #333 !important;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    transition: all 0.2s ease;
}

.drop-down .drop-down-menu .drop-down-item:hover {
    background-color: #0a0a0a !important;
    color: #fff !important;
    transform: translateX(4px);
}

.drop-down .drop-down-menu .drop-down-item span:hover {
    color: #fff !important;
}

a.link.cart-btn.w-auto.d-none.d-xxl-block.me-2,
a.link.cart-btn.w-auto.d-block.d-xxl-none.mb-0.me-2 {
    background: #0a0a0a;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

a.link.cart-btn.w-auto.d-none.d-xxl-block.me-2:hover,
a.link.cart-btn.w-auto.d-block.d-xxl-none.mb-0.me-2:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

a.logo img {
    width: 180px !important;
    height: auto !important;
    transition: opacity 0.3s ease;
}

.logo {
    height: auto !important;
}

/* Nav Buttons */
.nav-bar-buttons .btn-outline-primary {
    border: 2px solid #0a0a0a !important;
    color: #0a0a0a !important;
    border-radius: 12px !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar-buttons .btn-outline-primary:hover {
    background: #0a0a0a !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-bar-buttons .btn-primary {
    background: #0a0a0a !important;
    border-color: #0a0a0a !important;
    border-radius: 12px !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar-buttons .btn-primary:hover {
    background: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ================================================================
   HERO HEADER - Cinematic Full-Screen with Floating Shapes
   ================================================================ */
.header-image {
    position: relative;
    overflow: hidden;
}

.header-image::before {
    background: linear-gradient(
        160deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.65) 100%
    ) !important;
    z-index: 1;
}

.header-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #fafafa, transparent);
    z-index: 2;
    pointer-events: none;
}

.header-height {
    min-height: 720px;
}

.header-inner {
    padding: 20px 0;
    position: relative;
    z-index: 3;
}

/* Floating geometric shapes in hero */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.06;
    background: #fff;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -5%;
    animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -3%;
    animation: floatShape 10s ease-in-out infinite 2s;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 15%;
    border-radius: 30%;
    animation: floatShapeSlow 12s ease-in-out infinite;
}

.hero-shape-4 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 15%;
    border-radius: 20%;
    animation: floatShapeSlow 9s ease-in-out infinite 1s;
}

/* Grain overlay for cinematic feel */
.header-image .hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.header-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.08 !important;
    margin-bottom: 20px !important;
}

.header-title-home {
    font-size: 56px !important;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
    animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.header-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* Hero stat badges */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.hero-stat i {
    font-size: 16px;
    opacity: 0.8;
}

.hero-stat strong {
    font-weight: 700;
    font-size: 15px;
}

/* Search Bar - Modern Glass with Glow */
.header-search {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 18px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: heroSearchReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.header-search:focus-within {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.header-search .form-control {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 24px !important;
    font-family: 'Inter', sans-serif;
}

.header-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header-search .btn-primary {
    background: #fff !important;
    color: #0a0a0a !important;
    border: none !important;
    border-radius: 14px !important;
    font-weight: 600;
    padding: 14px 32px !important;
    margin: 6px !important;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.header-search .btn-primary:hover {
    background: #f0f0f0 !important;
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announcement {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e) !important;
    font-family: 'Inter', sans-serif;
}

/* ================================================================
   SECTIONS - Modern Layout with Dividers
   ================================================================ */
.section {
    padding: 0;
    position: relative;
}

.section-inner {
    padding: 0;
}

.section-header {
    margin-bottom: 48px;
}

h2.section-title,
h2.section-title.aos-init.aos-animate {
    font-family: 'Inter', sans-serif !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #0a0a0a !important;
    letter-spacing: -0.04em !important;
    line-height: 1.12 !important;
    text-transform: none !important;
}

.section-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px !important;
    color: #666 !important;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

p.section-text.col-lg-6.mx-auto.aos-init.aos-animate {
    font-size: 17px;
    color: #666;
    width: 100%;
    max-width: 800px;
}

/* Section decorative dot pattern */
.section-inner::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #0a0a0a;
    border-radius: 4px;
    opacity: 0;
}

/* Section Buttons */
.btn-outline-primary.btn-md {
    border: 2px solid #0a0a0a !important;
    color: #0a0a0a !important;
    border-radius: 12px !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent !important;
}

.btn-outline-primary.btn-md:hover {
    background: #0a0a0a !important;
    color: #fff !important;
    border-color: #0a0a0a !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Tab Buttons - Pill Style */
.items-tabs-btn {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
    padding: 10px 24px !important;
    border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
    background: #fff !important;
}

.items-tabs-btn:hover {
    border-color: rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

.items-tabs-btn.active {
    background: #0a0a0a !important;
    color: #fff !important;
    border-color: #0a0a0a !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}

/* ================================================================
   ITEM CARDS - Premium with Shimmer Effect
   ================================================================ */
.item {
    padding: 0;
    border-radius: 20px !important;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Shimmer hover effect */
.item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    z-index: 10;
    pointer-events: none;
    transition: none;
}

.item:hover::after {
    animation: shimmerSlide 0.8s ease-out;
}

.item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.item-img {
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0 !important;
    position: relative;
}

/* Image overlay on hover */
.item-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.item:hover .item-img::after {
    opacity: 1;
}

.item-img img {
    border-radius: 20px 20px 0 0 !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item:hover .item-img img {
    transform: scale(1.08);
}

.item-content {
    padding: 20px !important;
}

.item-title a {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #0a0a0a !important;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.item-title a:hover {
    color: #555 !important;
}

.item-badge {
    position: absolute;
    top: 16px;
    padding: 7px 16px;
    border-radius: 12px !important;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(12px);
    z-index: 5;
    animation: badgePulse 3s ease-in-out infinite;
}

.item-badge-sale {
    background: rgba(10, 10, 10, 0.85) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-price {
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.item-price .item-price-through {
    font-size: 16px;
    opacity: 0.5;
}

.item-price .item-price-amount {
    color: #0a0a0a;
}

.item-sales {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    gap: 8px;
}

.easy-setup,
.responsive {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    width: 48% !important;
    padding: 8px 10px;
    border-radius: 10px !important;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    text-align: center;
    transition: all 0.3s ease;
    background: #fafafa;
}

.easy-setup:hover,
.responsive:hover {
    background: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-1px);
}

.easy-setup i,
.responsive i {
    margin-right: 5px;
    color: #0a0a0a;
}

/* Item Action Buttons */
button.btn.btn-outline-primary.btn-md.btn-padding {
    background: #0a0a0a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    text-transform: none;
    width: 100%;
    height: 44px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

button.btn.btn-outline-primary.btn-md.btn-padding:hover {
    background: #1a1a1a !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

a.btn.btn-outline-secondary.btn-md.btn-padding {
    width: 100%;
    border-radius: 12px !important;
    height: 44px;
    color: #0a0a0a !important;
    background: transparent !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a.btn.btn-outline-secondary.btn-md.btn-padding:hover {
    background: #0a0a0a !important;
    color: #fff !important;
    border-color: #0a0a0a !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

a.btn.btn-outline-secondary.btn-md.btn-padding i {
    margin-right: 6px;
    font-size: 14px;
}

.item-info.d-flex.justify-content-between.align-items-center.gap-3 {
    display: flex;
    flex-wrap: wrap;
}

.item-info.d-flex.justify-content-between.align-items-center.gap-3 div {
    width: 100%;
}

.row.row-cols-auto.g-2 {
    width: 100%;
}

.row.row-cols-auto.g-2 .col {
    width: 50% !important;
}

.gap-3 {
    gap: 8px !important;
}

/* ================================================================
   HOME CATEGORIES - Modern Grid with Hover Effects
   ================================================================ */
.home-category {
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #fff !important;
    position: relative;
    overflow: hidden;
}

.home-category::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.home-category:hover::before {
    opacity: 1;
}

.home-category:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

.home-category-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-category:hover .home-category-icon {
    transform: scale(1.1) rotate(3deg);
}

.home-category-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
}

/* ================================================================
   TESTIMONIALS - Modern Cards with Quote Decoration
   ================================================================ */
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(10, 10, 10, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonial-avatar img {
    border-radius: 14px !important;
    transition: transform 0.3s ease;
}

.testimonial:hover .testimonial-avatar img {
    transform: scale(1.05);
}

.testimonial-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.testimonial-message {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #444;
    position: relative;
    z-index: 1;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    background: #0a0a0a !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 14px !important;
}

/* ================================================================
   ACCORDION / FAQS - Modern Pill Style
   ================================================================ */
.accordion-custom .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.accordion-custom .accordion-item:hover {
    border-color: rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.accordion-custom .accordion-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    padding: 20px 24px;
    transition: all 0.3s ease;
    border-radius: 16px !important;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: #0a0a0a !important;
    color: #fff !important;
    box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) .accordion-button-icon i {
    color: #fff;
    transform: rotate(180deg);
}

.accordion-custom .accordion-button-icon i {
    transition: transform 0.35s ease, color 0.3s ease;
    font-size: 12px;
}

.accordion-custom .accordion-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding: 20px 24px;
}

/* ================================================================
   FEATURED ITEMS BOX
   ================================================================ */
.box.border.border-primary.border-dashed {
    border: 2px dashed rgba(0, 0, 0, 0.1) !important;
    border-radius: 20px !important;
}

.box.bg-color {
    background: #f5f5f5 !important;
    border-radius: 16px !important;
}

.box.bg-color.p-4.mt-4 {
    background-color: #fff !important;
    border-radius: 16px;
    padding: 22px 25px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.box.bg-color.p-4.mt-4:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.box.bg-color.p-4.mb-4 {
    padding: 20px 17px;
    box-shadow: none;
    border-radius: 16px;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ================================================================
   BLOG ARTICLES - Modern Cards
   ================================================================ */
.box.h-100.p-2 {
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.box.h-100.p-2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent !important;
}

/* ================================================================
   BAYILIK ALERT
   ================================================================ */
.bayi-bilgisi-alert {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 25px 35px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: #555 !important;
    margin-bottom: 20px;
    background-color: #fafafa;
    position: relative;
}

.left-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -13px;
    left: -10px;
    background: #0a0a0a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 10px;
    z-index: 1;
}

.icon-text {
    position: absolute;
    top: -13px;
    left: 4px;
    background: #0a0a0a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    z-index: 0;
    padding: 3px 25px;
    border-radius: 0 10px 10px 0;
    letter-spacing: 0.03em;
}

/* ================================================================
   FOOTER - Ultra Modern Dark with Animated Top Border
   ================================================================ */
.footer {
    margin-top: auto;
    background-color: #0a0a0a !important;
    color: rgba(255, 255, 255, 0.85);
    flex-grow: 0;
    overflow: hidden;
    position: relative;
    background-image: none !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), #fff, rgba(255, 255, 255, 0.15), transparent);
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
}

.footer .footer-lower {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-subscribe {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-subscribe .form-control,
.footer-subscribe .form-control:disabled,
.footer-subscribe .form-control[readonly] {
    background-color: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
}

span.h5 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 47px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    width: 175px;
    color: #fff;
}

span.h5:before {
    content: "";
    position: absolute;
    left: auto;
    bottom: auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background: #fff;
    margin-top: 43px;
    margin-left: -8px;
}

.footer .footer-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.footer-link a,
.footer a.footer-text {
    transition: all 0.3s ease !important;
}

.footer-link a:hover,
.footer a.footer-text:hover {
    color: #fff !important;
    transform: translateX(4px);
}

/* Live Chat Footer */
a.live-chat {
    background: rgba(255, 255, 255, 0.06) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 172px;
    height: 42px;
    border-radius: 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 9px 0 0 9px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

a.live-chat:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

a.live-chat span {
    margin-right: 10px;
}

a.live-chat::after {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    content: "";
    display: block;
    margin-left: auto;
    animation: pulse-green 2s infinite;
}

/* ================================================================
   ANIMATED SECTION (CTA)
   ================================================================ */
.animated-section {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e) !important;
    color: #fff;
    padding: 32px 24px 0;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
    overflow: hidden;
}

.animated-section canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.animated-section h2,
.animated-section p,
.animated-button {
    position: relative;
    z-index: 1;
}

.animated-section h2 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.animated-section h2,
.animated-section p,
.animated-button {
    margin-bottom: 20px;
}

/* ================================================================
   SERVICES GRID
   ================================================================ */
#services {
    background-color: #fafafa;
    padding: 20px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 20px !important;
    padding: 32px 22px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.08);
}

.service-item i {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
    background: #0a0a0a;
    width: 64px;
    height: 64px;
    padding: 16px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.service-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-item h3 {
    font-size: 17px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.service-item img {
    max-width: 50px;
    margin-bottom: 10px;
}

/* ================================================================
   PRICING SECTION
   ================================================================ */
#ecommerce-price {
    padding: 80px 20px;
    background: #fafafa !important;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.price-container {
    max-width: 1320px;
    margin: 0 auto;
}

.price-container h2 {
    font-size: 38px;
    color: #0a0a0a;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-family: 'Inter', sans-serif;
}

.price-container p {
    font-size: 17px;
    color: #666;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.price-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.price-card {
    background: #fff;
    border-radius: 20px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding: 32px;
    width: 24%;
    text-align: start !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
    pointer-events: none;
}

.price-card:hover::before {
    animation: shimmerSlide 0.8s ease-out;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
}

.price-card.highlight {
    border: 2px solid #0a0a0a !important;
    background: #0a0a0a;
    color: #fff;
}

.price-card.highlight h3,
.price-card.highlight p.discounted-price,
.price-card.highlight p.installment,
.price-card.highlight ul li {
    color: #fff;
}

.price-card.highlight p.original-price {
    color: rgba(255, 255, 255, 0.5);
}

.price-card.highlight::after {
    content: "En Çok Tercih Edilen";
    display: block;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.03em;
    z-index: 2;
}

.price-card.highlight::before {
    content: none;
}

.price-card h3 {
    font-size: 28px;
    color: #0a0a0a;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-family: 'Inter', sans-serif;
}

p.original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
    margin-top: 16px;
}

p.discounted-price {
    font-size: 32px;
    color: #0a0a0a;
    margin-bottom: 0;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.discounted-price span {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
    background: #e8ffe8;
    border-radius: 8px;
    width: 50px;
    height: 26px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-card.highlight .discounted-price span {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

p.installment {
    color: #666;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: start;
}

.price-card ul li {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.price-card ul li i {
    color: #22c55e;
    margin-right: 6px;
}

.price-card.highlight ul li i {
    color: #4ade80;
}

button.call-button {
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.price-card.highlight button.call-button {
    background: #fff;
    color: #0a0a0a;
}

button.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

button.details-button {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    color: #0a0a0a !important;
    padding: 14px 24px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    width: 100%;
    transition: all 0.3s ease;
}

.price-card.highlight button.details-button {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

button.details-button:hover {
    background: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px);
}

.price-card.highlight button.details-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ================================================================
   INTERACTIVE SECTION
   ================================================================ */
#interactive-section {
    position: relative;
    padding: 80px 50px;
    background: #fff !important;
    overflow: hidden;
    text-align: center;
}

#interactive-section h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    font-family: 'Inter', sans-serif;
    text-transform: none;
}

#interactive-section .intro-text {
    font-size: 17px;
    color: #666;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

section#interactive-section strong {
    color: #0a0a0a;
    font-weight: 700;
}

.scrollable-content {
    max-width: 1320px;
    margin: 0 auto;
    background: #fafafa;
    box-shadow: none;
    border-radius: 16px;
    overflow-y: auto;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    height: 300px;
    font-family: 'Inter', sans-serif;
}

.scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.cta-buttons {
    margin-top: 48px;
    text-align: center;
}

.cta-buttons .cta-button {
    display: inline-block;
    background: #0a0a0a;
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    clip-path: none;
    width: auto;
    height: auto;
}

.cta-buttons .cta-button:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ================================================================
   HEADER INNER (Detail pages)
   ================================================================ */
.header-auto {
    min-height: 50px;
}

.header-inner.text-start.py-5 {
    padding: 16px 0 !important;
}

.header-inner.text-start {
    padding: 20px 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (min-width: 1600px) {
    .container-custom {
        max-width: 1320px;
    }
}

@media (min-width: 576px) {
    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 24%;
        padding-right: 0 !important;
        padding-left: 12px !important;
        margin-top: 48px;
    }
}

@media (max-width: 1200px) {
    .header-title-home {
        font-size: 44px !important;
    }
    h2.section-title,
    h2.section-title.aos-init.aos-animate {
        font-size: 32px !important;
    }
}

@media (max-width: 768px) {
    .header-title-home {
        font-size: 34px !important;
    }
    .header-height {
        min-height: 600px;
    }
    h2.section-title,
    h2.section-title.aos-init.aos-animate {
        font-size: 28px !important;
    }
    .price-card {
        width: 100%;
    }
    p.section-text.col-lg-6.mx-auto.aos-init.aos-animate {
        width: 100%;
    }
    #interactive-section {
        padding: 40px 16px;
    }
    #ecommerce-price {
        padding: 50px 16px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    .hero-stat {
        padding: 8px 14px;
        font-size: 13px;
    }
    .hero-shape { display: none; }
}

@media (max-width: 480px) {
    .header-title-home {
        font-size: 28px !important;
    }
    .header-text {
        font-size: 15px;
    }
    .header-search .form-control {
        padding: 16px 18px !important;
    }
}

/* ================================================================
   MISC OVERRIDES
   ================================================================ */
.row.row-cols-auto.justify-content-center.g-3 {
    display: flex;
    flex-wrap: wrap;
}

.row.row-cols-auto.justify-content-center.g-3 .col {
    width: 50%;
}

.row.row-cols-auto.justify-content-center.g-3 button {
    padding: 12px 4px !important;
}

.row.row-cols-auto.justify-content-center.g-3 a {
    padding: 12px 4px !important;
}

a.btn.btn-secondary.btn-md.px-5 {
    width: 100%;
}

button#screenshots {
    width: 100%;
}

.row.row-cols-auto.justify-content-center.g-2 .col {
    width: auto !important;
}

button.btn-transparent {
    background: #0a0a0a !important;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

button.btn-transparent:hover {
    background: #1a1a1a !important;
    transform: translateY(-2px);
}

/* Inline font overrides */
span.me-2 {
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.nav-bar-links span {
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

span.mx-2.d-none.d-lg-inline-block {
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Cookie Banner Override */
#cookie-banner {
    border-radius: 16px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Scroll Top Button */
.scroll-top-btn {
    border-radius: 12px !important;
    background-color: #0a0a0a !important;
}

.scroll-top-btn:hover {
    background-color: #1a1a1a !important;
}

/* WhatsApp Button */
.whatsapp-float {
    border-radius: 16px !important;
}

/* ================================================================
   FOOTER CONTACT INFO
   ================================================================ */
.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
    max-width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-contact-item:hover span {
    color: #fff;
}

/* Social buttons */
.socials-footer .social-btn {
    transition: all 0.3s ease;
    border-radius: 12px !important;
}

.socials-footer .social-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    .header-title-home,
    .header-text,
    .header-search,
    .hero-stats,
    .hero-shape,
    .item::after,
    .price-card::before {
        animation: none !important;
    }
    .footer::before {
        animation: none !important;
    }
}
