* {
    font-family: var(--fontType) !important;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2d3436;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Glassmorphism Classes */
.glass-header,
.glass-card,
.image-glass-card,
.sticky-bottom {
    background: #FFFFFFB2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #FFFFFF7F;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Header */
.glass-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.glass-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.glass-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90e2;
}

.nav-btn {
    background: #4a90e2;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.nav-btn:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge-shine {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.product_title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #2d3436, #4a90e2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-container {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 10px;
}
.product_title-bottom {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #2d3436, #4a90e2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-container-bottom {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 10px;
}

.discount-section {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-button,
.buy-now-general {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white !important;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 1.25rem;
    text-decoration: none !important;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1), 0 2px 4px -1px rgba(37, 99, 235, 0.06), 0 0 0 4px rgba(59, 130, 246, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover,
.buy-now-general:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.15), 0 0 0 4px rgba(59, 130, 246, 0.25);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.cta-button svg,
.buy-now-general svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg,
.buy-now-general:hover svg {
    transform: translateX(-5px);
}

.pulsing {
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.image-glass-card {
    padding: 20px;
    border-radius: 30px;
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.image-glass-card:hover .main-image {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.fake_sales_count {
    font-weight: bold;
    color: #ff6b6b;
    font-size: 1.2rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.trust-item i {
    color: #4a90e2;
}

/* Urgency Bar */
.urgency-bar {
    background: #ff6b6b;
    color: white;
    padding: 15px 0;
}

.urgency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.stock-warning i {
    margin-left: 5px;
    animation: flicker 1s infinite;
}

.general_countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.countdown-item span:first-child {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
}

.countdown-item span:last-child {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Features */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3436;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f2ff, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #4a90e2;
}

/* Product Details */
.details-section {
    padding: 50px 0;
}

.glass-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center !important;
}

/* Checkout Section */
.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.glass-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Form Styles */
.checkout__form-group {
    margin-bottom: 20px;
}

.checkout__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444;
}

.checkout__form-input,
.checkout__form-select,
.checkout__form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #f9f9f9;
}

.checkout__form-input:focus,
.checkout__form-select:focus {
    border-color: #4a90e2;
    outline: none;
    background: white;
}

/* Quantity Control */
.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #eee;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: #4a90e2;
    color: white;
}

.qty-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    background: transparent;
}

/* Price Info */
.example-price-info {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-weight: bold;
    font-size: 1.2rem;
    color: #2d3436;
}

/* Offers Grid */
.checkout__packages-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.checkout__package {
    display: block;
    cursor: pointer;
    position: relative;
}

.checkout__package-content {
    border: 2px solid #eee;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s;
}

.checkout__radio:checked+.checkout__package-content {
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.05);
}

.checkout__radio-visual {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-left: 10px;
    display: inline-block;
}

.checkout__radio:checked+.checkout__package-content .checkout__radio-visual {
    border-color: #4a90e2;
    background: #4a90e2;
    box-shadow: inset 0 0 0 3px white;
}

/* Footer */
.footer {
    background: #2d3436;
    color: white;
    padding: 20px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 10px;
}

.footer h4 {
    margin-bottom: 20px;
    color: #4a90e2;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}



.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}
.copyright p{
margin-bottom: 0px !important;
}
/* Sticky Bottom */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.sticky-bottom.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-info {
    font-weight: bold;
}

.sticky-btn {
    background: #4a90e2;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Variants Styling */
.variant-box {
    margin-bottom: 20px;
}

.variant-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-option-label {
    cursor: pointer;
    border: 2px solid #eee;
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s;
}

.variant-input:checked+.variant-option-label {
    border-color: #4a90e2;
    transform: scale(1.05);
}

.circle-label {
    border-radius: 50%;
    padding: 3px;
}

.variant-color-circle {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.text-label {
    padding: 8px 15px;
    background: white;
}

.image-label img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .product_title {
        font-size: 2.5rem;
    }
    .product_title-bottom {
        font-size: 1.5rem;
    }

    .checkout-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }



    .urgency-content {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }
    .glass-card {
        background: white;
        padding: 10px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
}

.social-icons img {
    height: 24px !important;
    width: 24px !important;
}