
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

        :root {
            --primary-color: #FF0000;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
        }

        /*
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Top Banner */
        */ .top-banner {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
            overflow: hidden;
            /* Hide overflowing text */
            white-space: nowrap;
            /* Prevent text from wrapping */
        }

        .scrolling-text {
            display: inline-block;
            animation: scroll-left 40s linear infinite;
            white-space: nowrap;
            /* Keep text on a single line */
            padding-left: 100%;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        .top-banner a {
            color: white;
            text-decoration: underline;
            font-weight: bold;
        }

        .top-links {
            text-align: right;
        }

        .top-links a {
            color: white;
            text-decoration: none;
            margin-left: 25px;
            font-size: 13px;
        }

        .top-links a:hover {
            text-decoration: underline;
        }

        /* Main Navigation */
        .main-nav {
            background-color: white;
            padding: 10px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        /* Navbar toggler for mobile */
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 8px 10px;
            min-width: 44px;
            min-height: 44px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #000;
            text-decoration: none;
        }

        .logo img {
            height: 60px;
            width: auto;
        }

        .logo span {
            background-color: var(--primary-color);
            color: white;
            padding: 2px 8px;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            align-items: center;
            margin: 0;
            padding: 0;
            gap: 25px;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .badge-tag {
            background-color: #00D084;
            color: white;
            font-size: 9px;
            padding: 2px 6px;
            border-radius: 3px;
            margin-left: 5px;
            font-weight: bold;
        }

        .badge-hot {
            background-color: #FF4444;
        }

        .quote-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .nav-icons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-icons i {
            font-size: 20px;
            color: #333;
            cursor: pointer;
            position: relative;
        }

        .icon-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--primary-color);
            color: white;
            font-size: 10px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 600px;
            background-image: url('../images/Builden Store-Website-Home-Page-Banner.JPG');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.35);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 900px;
            padding: 20px;
        }

        .hero-subtitle {
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 40px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-btn {
            background-color: white;
            color: #333;
            padding: 15px 45px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 1px;
        }

        .hero-btn,
        .action-button {
            text-decoration: none;
        }


        .hero-btn:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Product Categories Section */
        .product-categories {
            padding: 80px 0;
            background-color: #f5f5f5;
        }

        .category-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
            margin-bottom: 0;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-image {
            position: relative;
            overflow: hidden;
            height: 444px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;

        }

        .category-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
        }

        .discount-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--primary-color);
            color: white;
            padding: 6px 15px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .category-title {
            position: absolute;
            top: 70px;
            left: 20px;
            right: 20px;
            font-size: 28px;
            font-weight: 900;
            text-transform: uppercase;
            color: #ffffff;
            line-height: 1.2;
            z-index: 2;
        }

        /* About Us Section */
        .about-section {
            padding: 10px 10;
            background-color: #f8f8f8;
        }

        .about-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: #333;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .about-label::before {
            content: '';
            width: 12px;
            height: 12px;
            background-color: #000;
            transform: rotate(45deg);
        }

        .about-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            height: 450px;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit:cover;
            object-position: center;
            display: block;
        }

        .about-content {
            padding-left: 60px;
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 50px;
            color: #000;
        }

        .main-title .italic-text {
            font-style: italic;
            font-weight: 400;
        }

        .features-row {
            display: flex;
            gap: 50px;
            margin-top: 50px;
        }

        .feature-item {
            flex: 1;
        }

        .feature-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
            line-height: 1.3;
        }

        .feature-description {
            font-size: 16px;
            line-height: 1.7;
            color: #666;
            margin: 0;
            margin-bottom: 20px;
        }

        .divider-line {
            width: 100%;
            height: 1px;
            background-color: #ddd;
            margin: 45px 0;
        }

        /* Quick Actions Section */
        .quick-actions-container {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* Container padding for mobile */
        @media (max-width: 768px) {
            .container {
                padding-right: unset;
            }
        }

        .section-header {
            background-color: #000000;
            color: white;
            padding: 12px 20px;
            border-radius: 8px 8px 0 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-header i {
            font-size: 18px;
        }

        .section-header h2 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
        }

        .buttons-wrapper {
            background-color: white;
            padding: 15px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .action-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 15px;
            margin-bottom: 8px;
            border-radius: 5px;
            font-size: 13px;
            font-weight: 600;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .action-button:hover {
            background-color: #c82333;
            /* Darker red */
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .action-button:active {
            transform: translateY(0);
        }

        .action-button i {
            font-size: 16px;
        }

        .action-button:last-child {
            margin-bottom: 0;
        }

        .contact-footer {
            text-align: right;
            margin-top: 15px;
            padding: 10px 15px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .contact-footer h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            color: #333;
        }

        /* Dark Mode Toggle */
        .dark-mode-toggle {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: all 0.3s;
        }

        .dark-mode-toggle:hover {
            transform: scale(1.1);
        }

        .dark-mode-toggle i {
            font-size: 20px;
            color: #333;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .nav-menu {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .hero-title {
                font-size: 42px;
            }

            .top-links {
                text-align: center;
                margin-top: 10px;
            }

            .top-links a {
                display: block;
                margin: 8px 0;
            }

            .category-image {
                height: 300px;
            }

            .category-title {
                font-size: 24px;
            }

            .about-content {
                padding-left: 0;
                margin-top: 40px;
            }

            .main-title {
                font-size: 42px;
            }

            .features-row {
                flex-direction: column;
                gap: 35px;
            }

            /* Modal improvements for tablets */
            .modal-dialog {
                margin: 20px;
            }

            .loyalty-form-container {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {

            /* Navigation improvements */
            .main-nav {
                padding: 8px 0;
            }

            .logo img {
                height: 50px;
            }

            .top-links a {
                font-size: 12px;
                margin: 5px 0;
            }

            /* Hero section */
            .hero-section {
                height: 500px;
            }

            .hero-title {
                font-size: 32px;
                line-height: 1.3;
            }

            .hero-subtitle {
                font-size: 12px;
            }

            .hero-btn {
                padding: 14px 30px;
                font-size: 14px;
                min-height: 48px;
            }

            /* Product categories */
            .product-categories {
                padding: 20px 0 0;
            }

            .category-image {
                height: 280px;
                margin-bottom: 0;
            }

            .category-title {
                font-size: 22px;
            }

            /* About section */
            .about-section {
                padding: 50px 0;
            }

            .about-image-wrapper {
                height: 350px;
            }

            .main-title {
                font-size: 2rem;
                margin-bottom: 35px;
            }

            .feature-title {
                font-size: 20px;
            }

            .feature-description {
                font-size: 15px;
            }

            /* Quick actions - better mobile layout */
            .quick-actions-container {
                margin-top: 20px;
            }

            .action-button {
                padding: 14px 18px;
                font-size: 15px;
                min-height: 48px;
            }

           

            .contact-form-wrapper .form-control,
            .loyalty-form-container .form-control,
            .loyalty-form-container .form-select {
                padding: 14px 15px;
                font-size: 16px;
                min-height: 48px;
            }

            .contact-form-wrapper textarea.form-control,
            .loyalty-form-container textarea.form-control {
                min-height: 120px;
            }

            .submit-btn {
                padding: 16px 40px;
                font-size: 16px;
                min-height: 50px;
                width: 100%;
            }

            /* Modal adjustments */
            .modal-dialog {
                margin: 10px;
            }

            .modal-content {
                border-radius: 12px;
            }

            .loyalty-modal-header {
                padding: 12px 15px;
            }

            .loyalty-modal-header .modal-title {
                font-size: 18px;
            }

            .loyalty-form-container {
                padding: 25px 15px;
            }

            /* Gallery */
            .gallery-swiper {
                padding-bottom: 40px;
            }

            /* Contact section */
            .contact-hero-section {
                padding: 60px 20px;
            }

            .contact-hero-section h1 {
                font-size: 1.8rem;
            }

            .contact-hero-section p {
                font-size: 1rem;
            }

            .feedback-card {
                padding: 25px 15px;
                margin-bottom: 20px;
            }

            /* Footer */
            .footer-section {
                padding: 60px 0 0;
            }

            .footer-widget {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {

            /* Top banner */
            .top-banner {
                font-size: 11px;
                padding: 6px 0;
                overflow: hidden;
            }

            /* Logo */
            .logo {
                font-size: 20px;
            }

            .logo img {
                height: 45px;
            }

            /* Navigation */
            .top-links a {
                font-size: 11px;
                margin-left: 10px;
            }

            .quote-btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            /* Hero section */
            .hero-section {
                height: 400px;
            }

            .hero-title {
                font-size: 24px;
                line-height: 1.4;
                margin-bottom: 30px;
            }

            .hero-subtitle {
                font-size: 11px;
                margin-bottom: 15px;
            }

            .hero-btn {
                padding: 12px 25px;
                font-size: 13px;
                min-height: 44px;
            }

            /* Product categories */
            .category-image {
                height: 150px;
            }

            .category-title {
                font-size: 20px;
            }

            /* About section */
            .about-section {
                padding: 40px 0;
            }

            .about-image-wrapper {
                height: 300px;
            }

            .main-title {
                font-size: 1.75rem;
                margin-bottom: 25px;
            }

            .feature-title {
                font-size: 18px;
                margin-bottom: 15px;
            }

            .feature-description {
                font-size: 14px;
            }

            .features-row {
                margin-top: 25px;
            }

            /* Quick actions */
            .section-header {
                padding: 10px 15px;
            }

            .section-header h2 {
                font-size: 16px;
            }

            .action-button {
                padding: 12px 15px;
                font-size: 14px;
                min-height: 44px;
            }

            /* Forms - extra small screens */
            .contact-form-wrapper,
            .loyalty-form-container {
                padding: 20px 12px;
            }

            .form-label {
                font-size: 14px;
                margin-bottom: 6px;
            }

            .contact-form-wrapper .form-control,
            .loyalty-form-container .form-control,
            .loyalty-form-container .form-select {
                padding: 12px 12px;
                font-size: 16px;
                min-height: 44px;
            }

            .submit-btn {
                padding: 14px 30px;
                font-size: 15px;
                min-height: 48px;
                width: 100%;
            }

            /* Modal for mobile */
            .modal-dialog {
                margin: 5px;
                max-width: calc(100% - 10px);
            }

            .loyalty-modal-header .modal-title {
                font-size: 16px;
            }

            .menu-icon {
                width: 24px;
                height: 16px;
            }

            /* Gallery */
            .gallery-img {
                height: 200px;
            }

            /* Contact section */
            .contact-hero-section {
                padding: 40px 15px;
            }

            .contact-hero-section h1 {
                font-size: 1.5rem;
            }

            .contact-hero-section p {
                font-size: 0.9rem;
            }

            .feedback-card {
                padding: 20px 12px;
            }

            .feedback-card h2 {
                font-size: 1.5rem;
            }

            /* Footer */
            .footer-section {
                padding: 40px 0 0;
            }

            .footer-about p {
                font-size: 13px;
            }

            .footer-widget h5 {
                font-size: 15px;
            }

            .footer-contact p {
                font-size: 13px;
            }

            .social-icons a {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }

        /* Extra small devices - ensure usability */
        @media (max-width: 375px) {
            .hero-title {
                font-size: 22px;
            }

            .main-title {
                font-size: 1.5rem;
            }

            .contact-hero-section h1 {
                font-size: 1.3rem;
            }

            /* Ensure all touch targets are at least 44px */
            button,
            .btn,
            .action-button,
            input[type="submit"],
            input[type="button"],
            a.hero-btn,
            a.quote-btn {
                min-height: 44px;
                min-width: 44px;
            }

            /* Form inputs need to be readable */
            input,
            select,
            textarea {
                font-size: 16px !important;
                /* Prevents zoom on iOS */
            }
        }

        /* Loyalty Card Modal Styles */
        .modal-content {
            border-radius: 8px;
            overflow: hidden;
            border: none;
        }

        .loyalty-modal-header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: none;
        }

        .loyalty-modal-header .modal-title {
            font-size: 22px;
            margin: 0;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .menu-icon {
            width: 30px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .menu-icon span {
            display: block;
            height: 3px;
            background-color: white;
            border-radius: 2px;
        }

        .loyalty-modal-header .btn-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            opacity: 0.8;
            text-shadow: none;
        }

        .loyalty-modal-header .btn-close:hover {
            opacity: 1;
        }

        .loyalty-form-container {
            background: white;
            padding: 40px 30px;
            max-width: 100%;
        }

        .form-label {
            color: #6c757d;
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        /* Form row spacing */
        .row.g-4 {
            --bs-gutter-y: 1rem;
        }

        @media (max-width: 576px) {
            .row.g-4 {
                --bs-gutter-y: 0.75rem;
            }
        }

        .loyalty-form-container .form-control,
        .loyalty-form-container .form-select {
            border: 1px solid #d1d1d1;
            border-radius: 4px;
            padding: 12px 15px;
            font-size: 15px;
            color: #333;
            transition: border-color 0.3s;
        }

        .loyalty-form-container .form-control:focus,
        .loyalty-form-container .form-select:focus {
            border-color: #999;
            box-shadow: none;
            outline: none;
        }

        .loyalty-form-container .form-control::placeholder {
            color: #999;
        }

        .loyalty-form-container textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 30px 0;
        }

        .terms-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .terms-checkbox label {
            color: #666;
            font-size: 15px;
            margin: 0;
            cursor: pointer;
        }

        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 50px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            display: block;
            margin: 0 auto;
        }

        .submit-btn:hover {
            background-color: #c82333;
        }

        @media (max-width: 576px) {
            .section-header {
                padding: 15px 20px;
            }

            .section-header h2 {
                font-size: 20px;
            }

            .action-button {
                font-size: 16px;
                padding: 14px 18px;
            }
        }

        @media (max-width: 768px) {
            .loyalty-form-container {
                padding: 30px 20px;
            }
        }

        /* Specials Section Styles */
        .specials-section {
            padding: 40px 20px;
            background-color: #f8f9fa;
            margin: 0 auto;
            max-width: 1200px;
        }

        .specials-hero-box {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            height: 400px;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .specials-hero-box.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .specials-hero-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .specials-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 40%, transparent 70%);
            display: flex;
            align-items: center;
            padding: 40px;
        }

        .specials-hero-content {
            max-width: 350px;
        }

        .specials-hero-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 15px;
        }

        .specials-hero-title {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.6;
            color: #333;
            margin-bottom: 0;
        }

        /* Version 2 with red panel */
        .specials-hero-box.version-2 .specials-hero-overlay {
            background: none;
        }

        .specials-hero-box.version-2 .hero-content-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .specials-hero-box.version-2 .left-content {
            flex: 0 0 45%;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            display: flex;
            align-items: center;
        }

        .specials-hero-box.version-2 .right-content {
            flex: 1;
            background-color: #dc3545;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .specials-hero-box.version-2 .right-text {
            color: white;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.6;
        }

        /* Version 3 - Purple variation */
        .specials-hero-box.version-3 .right-content {
            background-color: #6f42c1;
        }

        /* Version 4 - Dark variation */
        .specials-hero-box.version-4 .right-content {
            background-color: #212529;
        }

        @media (max-width: 768px) {
            .specials-hero-box {
                height: 350px;
            }

            .specials-hero-overlay {
                padding: 30px 20px;
            }

            .specials-hero-content {
                max-width: 100%;
            }

            .specials-hero-title {
                font-size: 24px;
            }

            .specials-hero-box.version-2 .hero-content-wrapper {
                flex-direction: column;
            }

            .specials-hero-box.version-2 .left-content,
            .specials-hero-box.version-2 .right-content {
                flex: 1;
                padding: 30px 20px;
            }

            .specials-hero-box.version-2 .right-text {
                font-size: 24px;
            }

            .specials-section .inspiration-title {

                margin-bottom: 20px;

            }
        }

        @media (max-width: 576px) {
            .specials-hero-box {
                height: 300px;
            }

            .specials-hero-title {
                font-size: 12px;
            }

            .specials-hero-label {
                font-size: 10px;
            }
        }

        /* Make images responsive */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Responsive iframes (maps, videos) */
        iframe {
            max-width: 100%;
        }

        @media (max-width: 768px) {
            iframe {
                height: 200px !important;
            }
        }

        /* Prevent horizontal scroll */
        body {
            overflow-x: hidden;
        }

        .container-fluid,
        .row {
            max-width: 100%;
            overflow-x: hidden;
        }



        .gallery-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        .gallery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .gallery-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .gallery-body {
            padding: 25px;
            border-left: 3px solid #f7c948;
        }

        .gallery-title {
            font-weight: 700;
            font-size: 1.25rem;
            color: #0a1a3f;
        }

        .gallery-text {
            color: #333;
            font-size: 1rem;
            margin-top: 12px;
            line-height: 1.6;
        }

        @media (max-width: 991px) {
            .gallery-img {
                height: 240px;
            }
        }

        /* Inspiration Section */
        .inspiration-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .inspiration-title {
            font-weight: 800;
            font-size: 2.5rem;
            line-height: 1.2;
            color: #000;
        }

        .inspiration-section .accordion-button:not(.collapsed) {
            color: #fff;
            background-color: var(--primary-color);
        }

        .inspiration-section .accordion-button:focus {
            box-shadow: none;
        }

        .idea-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        @media (max-width: 992px) {
            .inspiration-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .inspiration-section h2 {
                font-size: 1.8rem;
            }

            .inspiration-section p {
                font-size: 1rem;

            }
        }

        @media (max-width: 768px) {
            .inspiration-title {
                font-size: 2rem;
            }
        }





        .layout-section {
            padding: 100px 0;
            text-align: center;
            background-color: #fff;
        }

        .layout-section h2 {
            font-weight: 700;
            font-size: 2.5rem;
            color: #222;
        }

        .layout-section p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 800px;
            margin: 10px auto 0;
        }

        @media (max-width: 768px) {
            .layout-section h2 {
                font-size: 1.8rem;
            }

            .layout-section p {
                font-size: 1rem;
                padding: 0 15px;
            }
        }

        /* Footer Section */
        .footer-section {
            background-color: #1a1a1a;
            color: #a9a9a9;
            padding: 80px 0 0;
        }

        .footer-section .logo {
            color: white;
        }

        .footer-section img.logo {
            height: 60px;
            width: auto;
        }

        .footer-about p {
            font-size: 14px;
            line-height: 1.8;
            margin-top: 20px;
        }

        .footer-widget h5 {
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 16px;
            margin-bottom: 30px;
            position: relative;
        }

        .footer-widget h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a9a9a9;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 16px;
            width: 20px;
            text-align: center;
            padding-top: 4px;
        }

        .footer-bottom {
            background-color: #111;
            padding: 20px 0;
            margin-top: 60px;
            text-align: center;
            font-size: 14px;
        }


        /* Contact Us Section */
        .contact-hero-section {
            background-color: black;
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .contact-hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .contact-hero-section .value-text {
            color: var(--primary-color);
        }

        .contact-hero-section p {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-cards-section {
           
            background-color: #f5f5f5;
        }

        .feedback-card {
            background: white;
            border-radius: 8px;
            padding: 30px 10px;
            height: 100%;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--primary-color);
        }

        .feedback-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        }

        .feedback-card h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .feedback-card h2 i {
            font-size: 1.3rem;
        }

        .feedback-card .underline {
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            margin-bottom: 25px;
        }

        .feedback-card p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .trading-hours h3,
        .contact-info h3,
        .feedback-card h3 {
            color: #2c3e50;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .trading-hours p {
            margin: 8px 0;
            color: #555;
        }

        .contact-info a {
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            margin: 12px 0;
            font-size: 1.05rem;
        }

        .contact-info a i {
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .contact-info a:hover {
            color: #c0392b;
        }

        .email-link {
            color: #2c3e50 !important;
            word-break: break-all;
        }

        .email-link:hover {
            color: #34495e !important;
        }

        .social-channels h3 {
            color: #2c3e50;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background-color: #2c3e50;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .contact-hero-section h1 {
                font-size: 2rem;
            }

            .contact-hero-section p {
                font-size: 1rem;
            }

            .feedback-card {
                margin-bottom: 30px;
            }
        }

        /* Contact Form */
        .contact-form-wrapper {
            background-color: white;
            padding: 30px 10px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
        }

        .contact-form-wrapper h3 {
            text-align: center;
            margin-bottom: 30px;
            font-weight: 600;
            color: #2c3e50;
        }

        .contact-form-wrapper .form-control {
            border: 1px solid #d1d1d1;
            border-radius: 4px;
            
            font-size: 15px;
        }

        .contact-form-wrapper .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
        }

        .contact-form-wrapper textarea.form-control {
            min-height: 150px;
        }

        .contact-form-wrapper .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
          
            font-size: 16px;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .resectionviews- {
            padding: 80px 0;
            background-color: #ffffff;
            display: none;
        }

        .section-subtitle {
            color: #ff6b6b;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .section-description {
            color: #666;
            font-size: 16px;
            margin-bottom: 60px;
        }

        .review-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 35px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin: 15px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .stars {
            color: #ffa500;
            font-size: 20px;
            margin-bottom: 25px;
        }

        .stars i {
            margin-right: 3px;
        }

        .stars .empty-star {
            color: #e0e0e0;
        }

        .review-text {
            color: #1a1a1a;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 30px;
            min-height: 120px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .reviewer-details {
            display: flex;
            align-items: center;
        }

        .reviewer-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .reviewer-name {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 3px;
        }

        .reviewer-title {
            font-size: 13px;
            color: #999;
        }

        .quote-icon {
            font-size: 40px;
            color: #ff6b6b;
            opacity: 0.8;
        }

        /* Override for product category slider controls */
        .product-categories .carousel-control-prev,
        .product-categories .carousel-control-next {
            background-color: rgba(0, 0, 0, 0.3);
        }

        .product-categories .carousel-control-prev {
            left: 10px;
        }

        .product-categories .carousel-control-next {
            right: 10px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: #ff6b6b;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }

        .carousel-control-prev {
            left: -70px;
        }

        .carousel-control-next {
            right: -70px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: #ff5252;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }

        .carousel-indicators {
            bottom: -50px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            border: none;
            margin: 0 5px;
        }

        .carousel-indicators button.active {
            background-color: #ff6b6b;
        }

        .promotion-title {
            font-size: 2.5rem;
            /* default desktop */
            font-weight: 800;
            line-height: 1.3;
            color: #000;
        }

        .promotion-title span {
            font-size: 1.3rem;
            display: block;
            margin-top: 10px;
            font-weight: 400;
            text-transform: none;
            color: #555;
        }

        @media (max-width: 991px) {
            .promotion-title {
                font-size: 2rem;
            }

            .promotion-title span {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .promotion-title {
                font-size: 1.8rem;
            }

            .promotion-title span {
                font-size: 1rem;

            }

            .specials-section {
                padding: 30px 15px;
            }
        }

        @media (max-width: 480px) {
            .promotion-title {
                font-size: 1.4rem;
            }

            .promotion-title span {
                font-size: 0.9rem;

            }

            .specials-section {
                padding: 20px 10px;
            }

            .specials-section .inspiration-title {
                margin-bottom: 15px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 32px;
            }

            .review-card {
                margin: 15px 5px;
            }
        }

        /* Dark Mode Styles */
        .dark-mode {
            background-color: #121212;
            color: #ffffff;
        }

        .dark-mode .top-banner {
            background-color: white;
            color: black;
        }

        .dark-mode .top-links a {
            color: black;
        }

        .dark-mode .main-nav {
            background-color: #333;
        }

        .dark-mode .hero-section {
            background-color: #000;
        }

        .dark-mode .product-categories {
            background-color: #1a1a1a;
        }

        .dark-mode .about-section {
            background-color: #1a1a1a;
        }

        .dark-mode .inspiration-section {
            background-color: #121212;
        }

        .dark-mode .specials-section {
            background-color: #1a1a1a;
        }

        .dark-mode .gallery-section {
            background-color: #121212;
        }

        .dark-mode .contact-hero-section {
            background-color: #000;
        }

        .dark-mode .contact-cards-section {
            background-color: #1a1a1a;
        }

        .dark-mode .footer-section {
            background-color: #000;
        }

        .dark-mode .modal-content {
            background-color: #333;
            color: #ffffff;
        }

        .dark-mode .form-control {
            background-color: #444;
            color: #ffffff;
            border-color: #666;
        }

        .dark-mode .form-control:focus {
            background-color: #555;
            border-color: #999;
        }

        .dark-mode .btn-close {
            filter: invert(1);
        }

        .dark-mode .dark-mode-toggle i {}

        .contact-link {
            color: #949494;
            /* white text */
            text-decoration: none;
            /* remove underline */
            font-weight: 500;
            margin-right: 20px;
            /* space between links */
            transition: color 0.3s ease;
        }

        .contact-link i {
            margin-right: 8px;
            /* space between icon and text */
        }
    