/*
Theme Name: BSX
Theme URI: http://example.com
Author: Motasem Odeh
Author URI: http://example.com
Description: A minimal WordPress starter theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: my-starter-theme
*/

        
        
                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #d50834;
            --primary-teal: #55bebc;
            --primary-orange: #fdb01c;
            --primary-blue: #1753a5;
            --dark: #0a0a0a;
            --light: #ffffff;
            --gray: #f5f5f5;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            box-shadow: 0 2px 20px rgba(213, 8, 52, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--light);
            letter-spacing: 3px;
        }

        .logo span {
            color: var(--primary-red);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--light);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
            opacity: 0.15;
            top: -200px;
            right: -200px;
            animation: pulse 4s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--primary-teal) 0%, transparent 70%);
            opacity: 0.15;
            bottom: -150px;
            left: -150px;
            animation: pulse 4s ease-in-out infinite 2s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.15; }
            50% { transform: scale(1.2); opacity: 0.25; }
        }

        .hero-content {
            max-width: 1400px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 4rem;
            color: var(--light);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text h1 .highlight {
            background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .tagline {
            font-size: 1.5rem;
            color: var(--primary-teal);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero-text p {
            font-size: 20px;
            color: #ccc;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--primary-red);
            color: var(--light);
            box-shadow: 0 4px 15px rgba(213, 8, 52, 0.4);
        }

        .btn-primary:hover {
            background: #ff0a3d;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(213, 8, 52, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--primary-teal);
        }

        .btn-secondary:hover {
            background: var(--primary-teal);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        
                .product-showcase {
            width: 100%;
            max-width: 500px;
            height: 450px;
            background: url(/wp-content/uploads/2025/11/bsx-all.webp) no-repeat center / cover;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }


        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Products Section */
        .products {
            padding: 6rem 5%;
            background: var(--gray);
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Swiper Container */
        .products-swiper {
            max-width: 1400px;
            margin: 0 auto !important;
            padding: 2rem 0 4rem !important;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            height: auto;
        }

        .product-card {
            background: var(--light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            width: 100%;
            max-width: 350px;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .product-image {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

.product-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  z-index: 0; /* 👈 This sends it behind the background image */
}

        
        .product-1 .product-image {
  background: url('/wp-content/uploads/2025/10/pouch.webp') no-repeat center/cover !important;
}
.product-2 .product-image {
  background: url('/wp-content/uploads/2025/10/22.webp') no-repeat center/cover !important;
}
.product-3 .product-image {
  background: url('/wp-content/uploads/2025/10/33.webp') no-repeat center/cover !important;
}
.product-4 .product-image {
  background: url('/wp-content/uploads/2025/10/44.webp') no-repeat center/cover !important;
}
.product-5 .product-image {
  background: url('/wp-content/uploads/2025/10/55.webp') no-repeat center/cover !important;
}
.product-6 .product-image {
  background: url('/wp-content/uploads/2025/11/7.webp') no-repeat center/cover !important;
}
.product-7 .product-image {
  background: url('/wp-content/uploads/2025/11/stramelon.webp') no-repeat center/cover !important;
}


        /* Product colors based on slide position */


        .product-info {
            padding: 2rem;
        }

        .product-info h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 0.8rem;
            font-weight: 800;
        }

        .product-info p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .strength-options {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .strength-badge {
            padding: 0.5rem 1rem;
            background: var(--gray);
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .strength-badge:hover {
            background: var(--primary-red);
            color: var(--light);
            border-color: var(--primary-red);
            transform: scale(1.05);
        }

        /* Swiper Navigation Buttons */
        .swiper-button-next,
        .swiper-button-prev {
            width: 50px !important;
            height: 50px !important;
            background: var(--primary-red);
            border-radius: 50%;
            color: var(--light) !important;
            transition: all 0.3s ease;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--primary-orange);
            transform: scale(1.1);
        }

        .swiper-button-next {
            right: 10px;
        }

        .swiper-button-prev {
            left: 10px;
        }

        /* Swiper Pagination */
        .swiper-pagination {
            bottom: 10px !important;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #ccc;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary-red);
            width: 30px;
            border-radius: 6px;
        }

        /* Responsive adjustments for swiper */
        @media (max-width: 968px) {
            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 16px !important;
            }

            .product-image {
                height: 220px;
            }

            .product-info {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .swiper-button-next,
            .swiper-button-prev {
                display: none;
            }

            .product-card {
                max-width: 100%;
            }
        }

        /* About Section */
        .about {
            padding: 6rem 5%;
            background: #fff;
            color: var(--dark);
        }

        .about-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-orange);
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: #000;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .feature {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid var(--primary-red);
        }

        .feature h4 {
            font-size: 1.2rem;
            color: var(--primary-teal);
            margin-bottom: 0.5rem;
        }

        /* Retail Partners Section */
        .retail {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--primary-blue), #0d3a75);
            color: var(--light);
        }

        .retail-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .retail-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .retail-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .benefit {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background: var(--gray);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 2rem;
        }

        .info-item {
            margin-bottom: 2rem;
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .info-icon {
            font-size: 1.5rem;
            color: var(--primary-red);
        }

        .contact-form {
            background: var(--light);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .age-restriction {
            background: var(--primary-red);
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }

        .age-restriction h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-teal);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 5rem 2rem;
                transition: right 0.3s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-visual {
                display: none;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                justify-content: center;
            }
        }

                    @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text .tagline {
                font-size: 1.2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        
        /* Swiper Container - MUST have relative positioning */
.products-swiper {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 2rem 60px 4rem !important; /* Extra padding for arrows */
    position: relative !important; /* CRITICAL - allows absolute positioning of arrows */
}

/* Navigation Arrows - Better Positioning */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    color: var(--light) !important;
    transition: all 0.3s ease;
    position: absolute; /* Make sure it's absolute */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Perfect vertical center */
    z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next {
    right: 10px !important; /* Position from right edge */
}

.swiper-button-prev {
    left: 10px !important; /* Position from left edge */
}

/* Pagination Dots - Better Positioning */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #ccc !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}

/* Mobile Adjustments */
@media (max-width: 968px) {
    .products-swiper {
        padding: 2rem 50px 4rem !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .products-swiper {
        padding: 2rem 0 4rem !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important; /* Hide arrows on small screens */
    }
}

.swiper-pagination-bullet-active{
    background: var(--primary-red) !important;
    width: 30px !important;
    border-radius: 6px !important;
}


.age-restriction-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

.age-restriction {
    background: #fff;
    color: #222;
    padding: 2rem;
    max-width: 600px;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.age-restriction h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

#age-consent-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

#age-consent-btn:hover {
    background: #444;
}
