/* ==========================================
   Insuzo Landing2 Custom Header Styles
   ========================================== */

:root {
    --primary-color: #FEBD2E;
    --primary-hover: #E5A91E;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --header-bg: #FFFFFF;
    --dark-bg: #0F172A;
    --dark-card: #1E293B;
    --text-light: #F8FAFC;
    --accent-danger: #EF4444;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

body {
    background-color: #F8FAFC;
}

/* Header Container */
.landing2-header {
    background-color: var(--header-bg);
    width: 100%;
    padding: 12px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Logo Section */
.landing2-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.landing2-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Search Bar Section */
.landing2-search-container {
    flex-grow: 1;
    max-width: 50%;
    margin: 0 40px;
    position: relative;
    display: flex;
    align-items: center;
}

.landing2-search-form {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.landing2-search-input {
    width: 100%;
    height: 48px;
    padding: 10px 70px 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    background-color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

.landing2-search-input::placeholder {
    color: #94A3B8;
}

.landing2-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(254, 189, 46, 0.15);
}

.landing2-search-button {
    position: absolute;
    right: 4px;
    top: 4px;
    height: 40px;
    width: 54px;
    background-color: #000000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.landing2-search-button:hover {
    background-color: #1E293B;
}

.landing2-search-button svg {
    width: 18px;
    height: 18px;
    color: #FFFFFF;
    stroke-width: 2.5px;
}

/* Right Nav Widgets */
.landing2-widgets {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-shrink: 0;
}

.landing2-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
}

.landing2-widget-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-top: 2px;
}

.landing2-widget-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

.landing2-widget-text {
    display: flex;
    flex-direction: column;
}

.landing2-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.2;
}

.landing2-widget-sub {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .landing2-header {
        flex-wrap: wrap;
        gap: 16px;
        padding: 12px 20px;
        align-items: center;
        justify-content: center;
    }

    .landing2-search-container {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .landing2-widgets {
        gap: 20px;
    }
}

/* Swiper Banner Customization */
.landing-banner-sec {
    padding: 20px 0;
    width: 100%;
}

.banner_alishan {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Marquee Section */
.landing2-marquee-sec {
    background: #000000;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid #FEBD2E;
}

.landing2-marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.landing2-marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: landing2-marquee-scroll 30s linear infinite;
    min-width: 100%;
}

.landing2-marquee-text {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.landing2-marquee-text a {
    text-decoration: none;
    color: #fff;
}

.landing2-marquee-bullet {
    color: #FEBD2E;
    font-size: 16px;
}

@keyframes landing2-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Trust Features Row Section */
.landing2-trust-sec {
    padding: 20px 0;
    background-color: #F8FAFC;
}

.landing2-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.landing2-trust-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.03), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
    text-decoration: none;
    margin-top: 10px;
}

.landing2-trust-card:hover {
    transform: translateY(-4px);
    border-color: #FEBD2E;
    box-shadow: 0 12px 20px -5px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    background-color: #FFFDF9;
}

.landing2-trust-icon-wrapper {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFDF0;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid #FEF3C7;
}

.landing2-trust-card:hover .landing2-trust-icon-wrapper {
    background-color: #FEBD2E;
    border-color: #FEBD2E;
    transform: scale(1.06);
}

.landing2-trust-icon-wrapper img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.landing2-trust-details {
    display: flex;
    flex-direction: column;
}

.landing2-trust-title {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
    line-height: 1.3;
}

.landing2-trust-desc {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .landing2-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .landing2-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .landing2-trust-card {
        padding: 20px;
    }
}

/* Category Grid & Showcase Styles */
.center-text {
    text-align: center;
    margin-bottom: 40px;
}

.landing-section {
    padding: 40px 0;
    position: relative;
}

.landing-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.landing-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.gradient-text {
    background: linear-gradient(135deg, #FEBD2E 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-showcase-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 4px 20px 4px;
    margin-top: 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    /* Thin scrollbar for Firefox */
    scrollbar-color: #CBD5E1 #F1F5F9;
}

/* Custom scrollbar for Webkit browsers (Chrome, Safari, Edge) */
.category-showcase-grid::-webkit-scrollbar {
    height: 6px;
}

.category-showcase-grid::-webkit-scrollbar-track {
    background: #F8FAFC;
    border-radius: 10px;
}

.category-showcase-grid::-webkit-scrollbar-thumb {
    background: #E2E8F0;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.category-showcase-grid::-webkit-scrollbar-thumb:hover {
    background: #CBD5E1;
}

.category-card-premium {
    flex: 0 0 190px;
    scroll-snap-align: start;
}



.category-card-premium {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02), 0 2px 4px -1px rgba(15, 23, 42, 0.01);
}

.category-card-premium:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
}

.category-card-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-card-premium:hover .category-card-image {
    border-color: var(--primary-color);
    background-color: #FFFFFF;
    transform: scale(1.05);
}

.category-card-image img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.category-card-premium:hover .category-card-image img {
    transform: rotate(5deg);
}

.category-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.category-card-premium:hover .category-card-title {
    color: var(--primary-hover);
}

/* Product Cards Grid & Custom Cards */
.products-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card-premium {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 10px 10px -5px rgba(15, 23, 42, 0.03);
    border-color: #FEBD2E;
}

.product-badge-group {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-badge-custom {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFF;
}

.badge-sale {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.badge-featured {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.product-image-container {
    padding: 30px;
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.product-image-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-image-container img.image_hover {
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card-premium:hover .product-image-container img.image_main {
    opacity: 0;
    transform: scale(1.05);
}

.product-card-premium:hover .product-image-container img.image_hover {
    opacity: 1;
    transform: scale(1.05);
}

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.product-name-link {
    text-decoration: none;
    color: var(--text-dark);
}

.product-name {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
    color: #0F172A;
    transition: all 0.3s ease;
}

.product-card-premium:hover .product-name {
    color: var(--primary-hover);
}

.product-rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    color: #FBBF24;
}

.product-rating-stars svg {
    width: 16px;
    height: 16px;
}

.product-rating-stars span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 6px;
}

.product-price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-actual {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-crossed {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 2px;
}

.price-discount-percent {
    color: #10B981;
    font-weight: 600;
    font-size: 0.825rem;
}

.landing2-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.landing2-view-btn:hover {
    background-color: #0F172A;
    color: #FFFFFF;
}

.landing2-view-btn svg {
    transition: transform 0.2s ease;
}

.landing2-view-btn:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   Brand Authorization Section Styles
   ========================================== */
.landing2-auth-sec {
    position: relative;
    padding: 100px 0;
    background-color: #FAFBFD;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

/* Ambient glowing spotlights in background */
.auth-ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 189, 46, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -200px;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.auth-glow-right {
    top: auto;
    bottom: -150px;
    left: auto;
    right: -200px;
    background: radial-gradient(circle, rgba(254, 189, 46, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.landing2-auth-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

/* Left Side Content */
.landing2-auth-info {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.auth-header-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(254, 189, 46, 0.1);
    border: 1px solid rgba(254, 189, 46, 0.25);
    border-radius: 50px;
    padding: 8px 18px;
    gap: 8px;
}

.partner-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    position: relative;
}

.partner-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #10B981;
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.partner-text {
    color: #B45309;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brand-logo-frame {
    position: relative;
    width: 160px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 8px 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.auth-brand-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 80%;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
}

.auth-brand-logo.active {
    opacity: 1;
    visibility: visible;
}

.auth-title-block {
    width: 100%;
}

.auth-subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.auth-title-main {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.gradient-gold {
    background: linear-gradient(135deg, #FEBD2E 0%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-desc-text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #64748B;
    max-width: 580px;
    margin: 0;
}

/* 2x2 grid of premium trust cards */
.auth-trust-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 10px;
}

.trust-card {
    background: #FFFFFF;
    border: 1px solid #EEF2F6;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.01), 0 2px 4px -1px rgba(15, 23, 42, 0.005);
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: #FEBD2E;
    box-shadow: 0 12px 20px -5px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
}

.trust-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    color: #10B981;
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-card-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.trust-card-content p {
    font-size: 12px;
    line-height: 1.4;
    color: #64748B;
    margin: 0;
}

/* Right Side: Acrylic Certificate display */
.landing2-auth-visual {
    flex: 0.9;
    max-width: 620px;
    background: #FEBD2E;
    border-radius: 36px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(254, 189, 46, 0.25);
    width: 100%;
    overflow: hidden;
}

.visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.swiper_certificates {
    width: 100%;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}

.acrylic-display {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.acrylic-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 30px;
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.acrylic-glass:hover {
    transform: translateY(-4px) scale(1.01);
}

/* Corner metal standoffs */
.standoff {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #D1D5DB 40%, #9CA3AF 85%, #4B5563 100%);
    border-radius: 50%;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.1);
}

.standoff.tl {
    top: 12px;
    left: 12px;
}

.standoff.tr {
    top: 12px;
    right: 12px;
}

.standoff.bl {
    bottom: 12px;
    left: 12px;
}

.standoff.br {
    bottom: 12px;
    right: 12px;
}

.cert-img-wrapper {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.cert-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
}

.badge-genuine-ribbon {
    background: #0F172A;
    color: #FFFFFF;
    border-radius: 100px;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
    margin-top: 10px;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
}

.badge-genuine-ribbon:hover {
    background-color: #1E293B;
    transform: translateY(-1px);
}

/* Swiper Pagination customize */
.auth-swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 3;
}

.auth-swiper-pagination .swiper-pagination-bullet {
    background: #000000 !important;
    opacity: 0.2;
    width: 6px;
    height: 6px;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.auth-swiper-pagination .swiper-pagination-bullet-active {
    background: #000000 !important;
    opacity: 0.85;
    width: 16px;
    border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .landing2-auth-card {
        gap: 40px;
    }

    .auth-title-main {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .landing2-auth-sec {
        padding: 80px 0;
    }

    .landing2-auth-card {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .landing2-auth-info {
        align-items: center;
        width: 100%;
    }

    .auth-header-group {
        justify-content: center;
    }

    .auth-tagline-sub::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .landing2-auth-visual {
        max-width: 580px;
        padding: 36px;
    }
}

@media (max-width: 640px) {
    .auth-trust-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-card {
        text-align: left;
    }

    .acrylic-glass {
        padding: 20px;
    }

    .cert-img-wrapper img {
        max-height: 280px;
    }
}

@media (max-width: 575px) {
    .auth-title-main {
        font-size: 1.85rem;
    }

    .auth-subtitle {
        font-size: 0.85rem;
    }

    .badge-genuine-ribbon {
        font-size: 11px;
        padding: 8px 20px;
    }
}

/* ==========================================
   Premium Buttons & Custom Callback Form Styles
   ========================================== */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-premium.primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(254, 189, 46, 0.4);
}

.btn-premium.primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 189, 46, 0.6);
}

.btn-premium.secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-premium.secondary:hover {
    background-color: rgba(15, 23, 42, 0.05);
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-premium.dark-btn {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.btn-premium.dark-btn:hover {
    background-color: var(--dark-card);
    transform: translateY(-2px);
}

.quote-premium-card {
    background: radial-gradient(circle at top right, rgba(254, 189, 46, 0.15), transparent), var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

.quote-info-left {
    text-align: left;
}

.quote-info-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-info-left p {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.quote-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.quote-point-item svg {
    color: var(--primary-color);
}

.quote-form-right {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.form-group-premium {
    margin-bottom: 20px;
    text-align: left;
}

.form-group-premium label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 8px;
}

.form-control-premium {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.form-control-premium:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(254, 189, 46, 0.25);
    background: rgba(15, 23, 42, 0.8);
}

textarea.form-control-premium {
    resize: none;
}

/* Responsive Quote Section Breakpoints */
@media (max-width: 991px) {
    .quote-premium-card {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 30px;
    }
}

/* ============================================================
   Combined Auth + Form Section (70/30 layout)
   ============================================================ */
.auth-form-combined-sec {
    padding: 80px 0;
    background: linear-gradient(160deg, #0F172A 0%, #1A2744 55%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background texture lines */
.auth-form-combined-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(254, 189, 46, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(254, 189, 46, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.auth-form-combined-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* ---- LEFT SIDE: 70% ---- */
.afc-left {
    flex: 7;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header Block */
.afc-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.afc-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    width: fit-content;
}

.afc-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    animation: afc-pulse 2s infinite;
}

@keyframes afc-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.afc-badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #10B981;
    text-transform: uppercase;
}

.afc-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F8FAFC;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.afc-gold {
    background: linear-gradient(135deg, #FEBD2E 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.afc-subtitle {
    font-size: 0.95rem;
    color: #CBD5E1;
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
}

/* Carousel Block */
.afc-carousel-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.afc-brand-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.afc-brand-img {
    height: 40px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(1) brightness(2);
    opacity: 0.3;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.afc-brand-img.active {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.swiper_certs_main {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

/* Single brand logo above the cert image */
.afc-single-brand-logo {
    display: flex;
    align-items: center;
    /* margin-bottom: 12px; */
}

.afc-single-brand-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.afc-cert-frame {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.afc-standoff {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #D1D5DB 40%, #9CA3AF 85%, #6B7280 100%);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.afc-tl {
    top: 12px;
    left: 12px;
}

.afc-tr {
    top: 12px;
    right: 12px;
}

.afc-bl {
    bottom: 12px;
    left: 12px;
}

.afc-br {
    bottom: 12px;
    right: 12px;
}

.afc-cert-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 6;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.afc-cert-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.afc-cert-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 12px;
    display: flex !important;
    justify-content: center;
    gap: 6px;
}

.afc-cert-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    width: 6px;
    height: 6px;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.afc-cert-pagination .swiper-pagination-bullet-active {
    background: #FEBD2E !important;
    width: 18px;
    border-radius: 4px;
}

/* Trust Points Grid */
.afc-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.afc-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.afc-trust-item:hover {
    background: rgba(254, 189, 46, 0.08);
    border-color: rgba(254, 189, 46, 0.2);
    transform: translateY(-2px);
}

.afc-trust-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
}

.afc-trust-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: #F8FAFC;
    margin: 0;
    line-height: 1.3;
}

/* ---- RIGHT SIDE: 30% ---- */
.afc-right {
    flex: 3;
    min-width: 0;
    position: sticky;
    top: 20px;
}

.afc-form-card {
    background: linear-gradient(145deg, #1E293B, #0F172A);
    border: 1px solid rgba(254, 189, 46, 0.2);
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.afc-form-header {
    margin-bottom: 28px;
    text-align: center;
}

.afc-form-icon {
    width: 58px;
    height: 58px;
    background: rgba(254, 189, 46, 0.12);
    border: 1px solid rgba(254, 189, 46, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FEBD2E;
    margin: 0 auto 16px auto;
}

.afc-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #F8FAFC;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.afc-form-desc {
    font-size: 0.825rem;
    color: #94A3B8;
    line-height: 1.55;
    margin: 0;
}

.afc-field-group {
    margin-bottom: 16px;
}

.afc-field-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.afc-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #F1F5F9;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

.afc-input:focus {
    border-color: #FEBD2E;
    background: rgba(254, 189, 46, 0.05);
    box-shadow: 0 0 0 3px rgba(254, 189, 46, 0.15);
}

.afc-input::placeholder {
    color: #475569;
}

.afc-textarea {
    resize: none;
}

.afc-captcha-wrap {
    margin-bottom: 16px;
    transform: scale(0.88);
    transform-origin: left center;
}

.afc-error {
    color: #EF4444;
    font-size: 0.8rem;
    display: block;
    margin-top: 6px;
}

.afc-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #FEBD2E 0%, #F59E0B 100%);
    color: #0F172A;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Rubik', sans-serif;
    box-shadow: 0 4px 15px rgba(254, 189, 46, 0.35);
}

.afc-submit-btn:hover {
    background: linear-gradient(135deg, #FFD15C 0%, #FEBD2E 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 189, 46, 0.5);
}

/* Responsive */
@media (max-width: 1100px) {
    .afc-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .auth-form-combined-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .afc-left,
    .afc-right {
        flex: unset;
        width: 100%;
    }

    .afc-right {
        position: static;
    }

    .afc-main-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 640px) {
    .auth-form-combined-sec {
        padding: 60px 0;
    }

    .afc-trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .afc-form-card {
        padding: 28px 20px;
    }

    .afc-cert-frame {
        max-height: 260px;
    }
}

/* ============================================================
   Featured Product Showcase Section
   ============================================================ */
.premium-badge {
    background: #fef08a;
    color: #854d0e;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.featured-product-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.featured-product-card-premium {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-product-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

/* Left Image Box */
.fpc-image-box {
    flex: 1 1 45%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    border-right: 1px solid #f1f5f9;
}

.fpc-discount-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #ef4444;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.2);
    z-index: 2;
}

.fpc-image {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.featured-product-card-premium:hover .fpc-image {
    transform: scale(1.03);
}

/* Right Details Box */
.fpc-details-box {
    flex: 1 1 55%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fpc-brand {
    font-size: 13px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.fpc-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* Rating */
.fpc-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.fpc-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.fpc-stars svg {
    display: inline-block;
    vertical-align: middle;
}

.fpc-rating-value {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

/* Price */
.fpc-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
}

.fpc-sale-price {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.fpc-original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 500;
}

.fpc-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Action Buttons */
.fpc-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fpc-btn-primary {
    background: #000000;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #000000;
}

.fpc-btn-primary:hover {
    background: #1e293b;
    border-color: #1e293b;
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.fpc-btn-secondary {
    background: transparent;
    color: #0f172a;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #cbd5e1;
}

.fpc-btn-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    color: #0f172a;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-product-card-premium {
        flex-direction: column;
    }

    .fpc-image-box {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 30px;
    }

    .fpc-details-box {
        padding: 30px;
    }

    .fpc-title {
        font-size: 20px;
    }

    .fpc-sale-price {
        font-size: 24px;
    }

    .mob_banner_image {
        display: block !important;
    }
}

.whatplugin ul li,
.plugin ul li {
    height: 60px !important;
    width: 60px !important;
}