/* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #111b21;
            display: flex;
            min-height: 100vh;
        }
        
        /* Header and Navigation */
        header {
            background-color: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: .7rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
        }
        
        .nav-links {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 1.5rem;
            margin-left: auto;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #111b21;
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #25D366;
        }
        
        .nav-links a.active {
            color: #25D366;
            font-weight: 500;
        }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #25D366;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #111b21;
        }
        
        /* Main content area */
        main {
            width: 100%;
            padding-top: 70px;
        }
        
        /* Mobile Menu Styles */
        @media (max-width: 768px) {
            body {
                flex-direction: column;
            }
        
            .nav-links {
                position: fixed;
                top: 70px;
                left: -250px;
                width: 250px;
                height: calc(100vh - 70px);
                background-color: #fff;
                flex-direction: column;
                align-items: flex-start;
                padding: 0;
                box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
                display: none;
                transition: left 0.3s ease;
                gap: 0;
            }
        
            .nav-links.active {
                display: flex;
                left: 0;
            }
        
            .nav-links a {
                width: 100%;
                padding: 1rem 1.5rem;
                margin: 0;
                border-bottom: 1px solid #f0f2f5;
                display: flex;
                align-items: center;
            }
        
            .nav-links a.active::after {
                display: none;
            }
        
            .nav-links a.active {
                background-color: #f0f2f5;
                border-left: 3px solid #25D366;
            }
        
            .mobile-menu {
                display: block;
            }
        
            main {
                margin-left: 0;
                width: 100%;
            }
        
            .hero {
                padding: 6rem 1rem;
            }
        
            .hero h1 {
                font-size: 2rem;
            }
        
            .categories {
                grid-template-columns: 1fr;
            }
        
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Hero Section */
        .hero {
            padding: 8rem 2rem;
            text-align: center;
            background-color: #f0f2f5;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
        
        .search-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-container input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 1rem;
        }
        
        .search-container i {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }
        
        /* Categories Section */
        .categories {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
            gap: 2rem;
        }
        
        .category-card {
            text-align: center;
            padding: 2rem;
            border-radius: 8px;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
        }
        
        .category-card i {
            font-size: 2.5rem;
            color: #25D366;
            margin-bottom: 1rem;
        }
        
        .category-card h3 {
            margin-bottom: 0.5rem;
        }
        
        /* Popular Questions Section */
        .popular-questions {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }
        
        .popular-questions h2 {
            margin-bottom: 2rem;
        }
        
        .question-list {
            display: grid;
            gap: 1.5rem;
        }
        
        .question-item {
            padding: 1.5rem;
            border-radius: 8px;
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .question-item h3 {
            margin-bottom: 0.5rem;
            color: #25D366;
        }
        
        /* Footer */
                .footer {
            background: #024239;
            color: rgb(255, 255, 255);
            padding: 3rem 0 0 0;
            margin-top: 2rem;
        }
        
        .footer-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 2rem;
            padding: 0 2rem;
        }
        
        .footer-logo {
            max-width: 200px;
            margin-bottom: 1rem;
        }
        
        .footer-description {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            background: rgba(255, 255, 255, 0.1);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: white;
            color: #37d359;
            transform: translateY(-3px);
        }
        
        .footer-center h3,
        .footer-right h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-center ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-center ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-center ul a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-center ul a:hover {
            padding-left: 5px;
            opacity: 0.8;
        }
        
        .footer-right p {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .footer-bottom {
            margin-top: 3rem;
            padding: 1.5rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-left {
                grid-column: 1 / -1;
                text-align: center;
            }
            
            .footer-logo {
                margin: 0 auto 1rem auto;
            }
            
            .social-icons {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .footer-right p {
                justify-content: center;
            }
            
            .footer {
                padding: 2rem 0 0 0;
            }
            
            .footer-bottom {
                margin-top: 2rem;
                padding: 1rem;
            }
        }

        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 75px;
            background: linear-gradient(to right, #502787, #6147A6);
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        
        .mobile-nav-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            height: 100%;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 10px;
        }
        
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }
        
        .mobile-nav-item i {
            font-size: 1.3rem;
            margin-bottom: 3px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-item span {
            font-weight: 500;
        }
        
        .mobile-nav-item.active {
            color: #ffffff;
        }
        
        .mobile-nav-item.active i {
            color: #ffffff;
            transform: translateY(-2px);
        }
        
        .mobile-nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #ffffff;
            transition: width 0.3s ease;
            border-radius: 3px;
        }
        
        .mobile-nav-item.active::after {
            width: 25px;
        }
        
        /* Update body padding for mobile */
        @media (max-width: 768px) {
            body {
                padding-bottom: 60px;
            }
            
            .mobile-nav {
                display: block;
            }
        }

        .product-details {
            padding: 4rem 2rem 2rem;
            background: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr; /* Image takes 40%, description 60% */
            gap: 3rem;
            align-items: start;
        }
        
        .product-image {

            top: 160px; /* Below breadcrumb */
            background: white;
            padding: 1rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgb(124, 124, 124);
            height: fit-content;
            width: 100%;
        }
    
        .slider {
            position: relative;
            width: 100%;
            height: 400px; /* Fixed height */
            overflow: hidden;
            border-radius: 10px;
        }
    
        .slides {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
    
        .slides img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Changed from contain to cover */
            flex-shrink: 0;
            border-radius: 10px;
            padding: 0; /* Removed padding */
        }
    
        .slider-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 1rem;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
    
        .slider-nav button:hover {
            background: rgba(0,0,0,0.8);
        }
    
        .prev-btn {
            left: 1rem;
        }
    
        .next-btn {
            right: 1rem;
        }
    
        .slider-dots {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
        }
    
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
    
        .dot.active {
            background: #502787;
        }
    
        @media (max-width: 768px) {
            .slides {
                height: 300px;
            }
            
            .slider {
                height: 300px; /* Smaller height for mobile */
            }
            
            .slider-nav button {
                padding: 0.75rem;
            }
            
            .product-image {
                padding: 0.75rem;
            }
        }
    
        @media (max-width: 480px) {
            .slider {
                height: 250px;
            }
            
            .product-image {
                padding: 0.5rem;
            }
        }
        
        .product-info {
            padding: 1rem;
        }
        
        .product-info h2 {
            color: #111b21;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        
        .spec-grid {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 0;
        }
        
        .spec-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .spec-label {
            color: #666;
            font-size: 0.9rem;
        }
        
        .spec-value {
            color: #111b21;
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        .product-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .action-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .action-btn.whatsapp {
            background: #25D366;
            color: white;
        }
        
        .action-btn.call {
            background: #502787;
            color: white;
        }
        
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .product-features {
            padding: 4rem 2rem 0 2rem;
            background: #f8f9fa;
            margin: 0;
        }
        
        .product-features h2 {
            text-align: center;
            color: #111b21;
            margin-bottom: 3rem;
            font-size: 2rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            text-align: center;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            color: #25D366;
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            color: #111b21;
            margin-bottom: 1rem;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: 1fr;
                gap: 1rem; /* Reduced from 3rem to 1rem */
            }

            .product-image {
                margin-bottom: 0; /* Remove bottom margin */
            }

            .product-info {
                padding-top: 1rem; /* Add small padding at top */
            }
        }

        /* Add to existing styles */
        .product-features.description-section {
            padding: 4rem 2rem 0 2rem;
            background: #f8f9fa;
            margin: 0;
        }
        
        .price-list {
            padding: 2rem 2rem 0 2rem;
            background: white;
            margin: 0;
        }
        
        .price-list h2 {
            margin-bottom: 2rem;
        }
        
        .table-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: visible;
            position: relative;
        }
        
        .price-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: white;
            border: 2px solid #502787;
        }
        
        .price-table thead {
            position: sticky;
            top: 130px; /* Height of header (65px) + top-contact-bar (65px) */
            background: #502787;
            z-index: 97;
        }
        
        .price-table thead::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 2px;
            background: #502787;
        }
        
        .price-table th {
            background: #502787;
            color: white;
            font-weight: 500;
            padding: 0.75rem;
            text-align: center;
            position: relative;
        }
        
        .price-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid #dee2e6;
            background: white;
        }
        
        .price-table tr:hover td {
            background: #f8f9fa;
        }
        
        /* Column widths */
        .price-table th:nth-child(1),
        .price-table td:nth-child(1) { width: 30%; }
        
        .price-table th:nth-child(2),
        .price-table td:nth-child(2) { width: 15%; }
        
        .price-table th:nth-child(3),
        .price-table td:nth-child(3) { width: 25%; }
        
        .price-table th:nth-child(4),
        .price-table td:nth-child(4) { width: 15%; }
        
        .price-table th:nth-child(5),
        .price-table td:nth-child(5) { width: 15%; }
        
        @media (max-width: 768px) {
            .price-table thead {
                top: 129px; /* Adjusted for mobile header height */
            }
            
            .price-table th, 
            .price-table td {
                padding: 0.5rem;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 768px) {
            .product-details {
                padding: 3rem 1rem 0 1rem;
            }
            
            .product-features.description-section {
                padding: 3rem 1rem 0 1rem;
            }
            
            .price-list {
                padding: 1.5rem 1rem 0 1rem;
            }
            
            .product-features {
                padding: 3rem 1rem 0 1rem;
            }
            
            .terms-conditions {
                padding: 3rem 1rem 0 1rem;
            }
            
            .faq-section {
                padding: 3rem 1rem;
                padding-bottom: 3rem;
            }
            
            .terms-grid {
                padding: 1.5rem;
                border-radius: 10px;
            }
            
            .terms-grid li {
                font-size: 0.9rem;
            }
        }
        
        .faq-item {
            background: white;
            border-bottom: 1px solid #cdcdcd;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
.faq-question {
    padding: 0.5rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f8f9fa;
    transition: background 0.3s ease;
    border-bottom: 1px solid transparent; /* to avoid shifting when active */
}

.faq-question:hover {
    background: #f1f3f5;
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
    color: #111b21;
    font-weight: 500;
}

.faq-question.active {
    border-bottom: 2px solid red;
}

    
        .active-question {
            color: red !important;
        }
        
        
        .faq-answer {
            padding: 1rem 1.5rem;
            color: #000000;
            background: white;
            border-top: 1px solid #dee2e6;
        }
        
        .faq-answer p {
            margin: 0;
            line-height: 1.5;
        }
    
        .description-content {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            max-height: 100px; /* Height for 2-3 lines */
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
    
        .description-content.expanded {
            max-height: 2000px; /* Large enough to show full content */
        }
    
        .read-more-btn {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background: #502787;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
    
        .read-more-btn:hover {
            background: #25D366;
        }
    
        .fade-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(transparent, white);
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
    
        .expanded .fade-bottom {
            opacity: 0;
        }
    
        @media (max-width: 768px) {
            .description-content {
                padding: 2rem;
            }
    
            .description-content h2 {
                font-size: 1.5rem;
            }
    
            .description-content p {
                font-size: 1rem;
            }
        }
    
        .description-section {
            background: #f8f9fa;
            padding: 4rem 2rem 0 2rem;
            margin: 0;
        }
    
        .description-section .container {
            max-width: 1200px;
            margin: 0 auto;
        }
    
        .description-section h2 {
            text-align: center;
            color: #111b21;
            margin-bottom: 3rem;
            font-size: 2rem;
            position: relative;
        }
    
        .description-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #25D366;
            transition: width 0.3s ease;
        }
    
        .description-section:hover h2::after {
            width: 100px;
        }
    
        .description-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
    
        .description-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
    
        .description-content p:last-child {
            margin-bottom: 0;
        }
    
        @media (max-width: 768px) {
            .description-section {
                padding: 3rem 1rem 0 1rem;
            }
    
            .description-content {
                padding: 1.5rem;
            }
    
            .description-content p {
                font-size: 1rem;
            }
        }
    
        /* Standardize all section containers */
        .product-features .container,
        .price-list .container,
        .terms-conditions .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        /* Add this to your styles */
    .breadcrumb {
        background: #f8f9fa;
        border-bottom: 1px solid #dee2e6;
        position: relative;
        top: 130px; /* Below header and top contact bar */
        left: 0;
        right: 0;
        z-index: 98;
        max-width: 2800px;
    }
    
    .breadcrumb-container {
        width: 100%;
        padding: 0.5rem 2rem;
        display: flex;
        justify-content: center;
    }
    
    .breadcrumb ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        height: 40px;
    }
    
    .breadcrumb li {
        display: flex;
        align-items: center;
        color: #666;
        font-size: 0.9rem;
    }
    
    .breadcrumb li:not(:last-child)::after {
        content: '/';
        margin: 0 0.5rem;
        color: #999;
        font-size: 1.2rem;
    }
    
    .breadcrumb a {
        color: #502787;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .breadcrumb a:hover {
        color: #25D366;
        transform: translateX(3px);
    }
    
    .breadcrumb span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .breadcrumb i {
        font-size: 0.9rem;
    }
    
    /* Update main content padding */
    main {
            padding-top: 120px; /* header height + breadcrumb height */
        }
    
    @media (max-width: 768px) {
        .breadcrumb {
            top: 60px;
        }
    
        .breadcrumb-container {
            padding: 0 1rem;
        }
    }
        /* Add these styles to your existing CSS */
        .top-contact-bar {
        background: #502787;
        height: auto; /* Changed from fixed height */
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 5px 0;
    }
    
    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center horizontally */
        justify-content: center; /* Center vertically */
        gap: 5px; /* Reduced gap between items */
    }
    
    .contact-info a {
        color: white;
        text-decoration: none;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        padding: 2px 0;
    }
    
    .contact-info a:hover {
        color: #25D366;
    }
    
    /* Update header position */
    header {
        top: 65px; /* Update based on new contact bar height */
    }
    
    .breadcrumb {
        top: 130px; /* Update based on new header position */
    }
    
    
    /* Update main padding */
    main {
        padding-top: 160px; /* header + breadcrumb + top-contact-bar height */
    }
    
    @media (max-width: 768px) {
        .contact-info a {
            font-size: 0.8rem;
        }
        
        header {
            top: 60px;
        }
        
        .breadcrumb {
            top: 125px;
        }
        
        .contact-container {
            padding: 0 1rem;
        }
    }

.progress-container {
    width: 100%;
    height: 4px;
    background: transparent;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 1002; /* Increased z-index to be above all other elements */
    pointer-events: none; /* Prevents interference with scrolling */
}

.progress-bar {
    height: 4px;
    background: #00ff26;
    width: 0%;
    transition: width 0.1s ease-out;
    position: absolute; /* Added position absolute */
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .progress-container {
        top: 60px;
        position: fixed !important; /* Force fixed positioning on mobile */
    }
    
    .progress-bar {
        position: absolute !important; /* Force absolute positioning on mobile */
    }
}

/* Add these styles for sticky breadcrumb */
.breadcrumb-wrapper {
    position: relative;
    top: 0;
    z-index: 100;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    width: 100%;
    padding: 10px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure the content below doesn't jump when breadcrumb becomes sticky */
main {
    padding-top: 0px;
}

@media (max-width: 768px) {
    .product-details {
        padding-bottom: 0; /* Remove bottom padding */
    }

    .price-list {
        padding-top: 0; /* Remove top padding */
    }

    .price-list h2 {
        margin-top: 10px; /* Reduce top margin */
        margin-bottom: 0; /* Remove bottom margin */
    }

    .price-list p {
        margin-top: 5px; /* Add small margin for readability */
        padding-bottom: 5px; /* Reduce bottom padding */
    }
}


/* Add these styles for the floating button */
.float-price-btn {
    position: fixed;
    right: -45px;
    top: 70%;
    transform: rotate(-90deg) translateY(-50%);
    background-color: #502787;
    color: white;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    border: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .float-price-btn {
        right: -70px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Terms and Conditions Section Styles */
.terms-section {
    padding: 3rem 0;
    background-color: #fff;
}

.terms-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
}

.terms-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-grid ol {
    margin: 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.terms-grid li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-section {
        padding: 2rem 0;
    }

    .terms-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .terms-grid {
        padding: 0 15px;
    }

    .terms-grid li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 1.5rem 0;
    }

    .terms-grid ol {
        padding-left: 1.5rem;
    }

    .terms-grid li {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }
}
