:root {
    /* Colors - White & Skyblue Theme */
    --color-primary: #ffffff;
    /* White background */
    --color-secondary: #f8f9fa;
    /* Light gray for separation */
    --color-accent: #0dcaf0;
    /* Bootstrap Info / Skyblue - adjusted for visibility if needed, or use specific hex */
    --color-accent-dark: #0aa2c0;
    /* Darker skyblue for hover */
    --color-text-main: #333333;
    /* Dark gray for text */
    --color-text-muted: #6c757d;
    --color-white: #ffffff;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --navbar-height: 76px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-primary);
    color: var(--color-text-main);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #2c3e50;
    /* Dark blue-gray for headings */
}

/* Navbar Customization */
.navbar {
    transition: all 0.3s ease-in-out;
    background-color: #f8f9fa;
    padding: 0.1rem 0;
    /* Increased from 1rem */
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: .2rem 0;
    /* Increased from 0.5rem */
}

/* Homepage Transparent Navbar */
.navbar.navbar-home {
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.navbar.navbar-home.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-home:not(.scrolled) .navbar-brand {
    color: #ffffff !important;
}

.navbar.navbar-home:not(.scrolled) .nav-link {
    color: #ffffff !important;
}

.navbar.navbar-home:not(.scrolled) .navbar-toggler {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.navbar-home:not(.scrolled) .navbar-toggler i {
    color: #ffffff;
}

/* Logo Switching Logic */
/* Default (Transparent Navbar): Show White Logo, Hide Dark Logo */
.navbar.navbar-home:not(.scrolled) .logo-dark {
    opacity: 0 !important;
}

.navbar.navbar-home:not(.scrolled) .logo-white {
    opacity: 1 !important;
}

/* Scrolled Navbar: Show Dark Logo, Hide White Logo */
.navbar.navbar-home.scrolled .logo-dark {
    opacity: 1 !important;
}

.navbar.navbar-home.scrolled .logo-white {
    opacity: 0 !important;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    color: #2c3e50 !important;
}

.navbar-brand span {
    color: var(--color-accent);
}

.nav-link {
    font-weight: 500;
    color: #2c3e50 !important;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent) !important;
}

/* .nav-item {
    margin-left: 0rem !important;
} */

@media (max-width: 991.98px) {
    .navbar.navbar-home:not(.scrolled) .nav-link {
        color: var(--color-text-main) !important;
    }

    .navbar.navbar-home .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    /* Also ensure toggle button is visible if background is dark/transparent picture */
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Background Image with Overlay */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../media/home_banner_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    margin-top: -76px;
    /* Counteract navbar height if needed, or just let it be behind if transparent */
    padding-top: 76px;
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* Features */
.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* Section Common */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-padding {
    padding: 5rem 0;
}

/* How It Works with Steps */
.step-item {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: all 0.3s;
}

.step-item:hover .step-icon-wrapper {
    background: var(--color-accent);
    color: #fff;
}

/* Pricing */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.pricing-card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1rem 0;
}

.price-tag small {
    font-size: 1rem;
    color: #aaa;
    font-weight: 400;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 4rem 0 2rem;
    color: #6c757d;
}

footer h5 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

footer a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--color-accent);
}

/* Testimonial Carousel Overrides */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 50px;
    background-color: transparent;
    opacity: 1;
    /* Ensure visible */
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-color: var(--color-accent);
    /* Make arrows background colored */
    border-radius: 50%;
    background-size: 60%;
    /* Adjust arrow size inside */
    width: 3rem;
    height: 3rem;
}

#testimonialCarousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#testimonialCarousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#testimonialCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--color-accent-dark);
}

/* Ensure text doesn't touch arrows on mobile */
#testimonialCarousel .carousel-item {
    padding: 0 4rem;
    /* Add generous padding to sides so text is centered and away from arrows */
}

@media (max-width: 768px) {
    #testimonialCarousel .carousel-item {
        padding: 0 2.5rem;
        /* Less padding on mobile but enough to clear 50px width arrows if they overlap */
    }

    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 30px;
        /* Narrower control area */
    }

    #testimonialCarousel .carousel-control-prev-icon,
    #testimonialCarousel .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
        padding: 0.5rem;
    }
}

/* === Enhanced Footer === */
footer {
    background-color: #111111;
    /* Darker premium black */
    color: #b0b3b8;
    /* Softer gray text */
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer p {
    color: #b0b3b8;
    line-height: 1.7;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer ul li a {
    color: #b0b3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer ul li a:hover {
    color: #fff;
    transform: translateX(3px);
}

.social-icons {
    margin-top: 2rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #2a2a2a;
    /* Darker circle */
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.social-icons a:hover {
    background: var(--color-accent);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Contact Info in Footer */
.footer-newsletter ul li {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-newsletter ul li a {
    color: #b0b3b8;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.25rem;
    font-size: 0.95rem;
}

.footer-newsletter ul li a:hover {
    color: #fff;
    transform: none;
    /* No shift for contact links */
}

.footer-newsletter i {
    color: #666;
    /* Subtler icon color */
}

/* Footer Logo */
.footer-logo {
    width: 180px;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle divider */
    font-size: 0.85rem;
    color: #666;
}

footer img {
    /* Removed generic footer img max-width that might conflict */
    max-width: 100%;
}

.footer-bottom a {
    color: #666;
    margin-left: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #b0b3b8;
}

.footer-newsletter .btn {
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin: 2px;
    transition: all 0.3s ease;
}

.footer-newsletter .btn:hover {
    background-color: #fff;
    color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    /*margin-top: 4rem;*/
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #777;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

/* Mobile App Menu Styles */
@media (max-width: 991.98px) {
    #offcanvasNavbar {
        height: 100vh !important;
        /* Fix clipping issue */
        top: 0;
        bottom: 0;
    }

    .border-bottom-mobile {
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-nav .nav-link {
        padding: 1rem 1rem !important;
        color: #333 !important;
        font-weight: 500;
    }

    .navbar-nav .nav-link:hover {
        background-color: #f8f9fa;
        padding-left: 1.5rem !important;
        /* Slide effect */
        transition: all 0.2s ease;
    }

    .nav-item {
        margin-left: 0rem !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .width-25 {
        width: 25px;
    }
}

/* Ensure desktop nav looks standard */
@media (min-width: 992px) {
    #offcanvasNavbar {
        position: static !important;
        z-index: auto;
        height: auto !important;
        width: auto !important;
        max-width: none !important;
        /* Fix desktop overflow */
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
        display: flex !important;
        flex-grow: 1;
        box-shadow: none !important;
    }

    .offcanvas-header {
        display: none;
    }

    .offcanvas-body {
        display: flex;
        flex-direction: row;
        /* Force row on desktop */
        flex-grow: 1;
        padding: 0;
        overflow-y: visible;
        align-items: center;
    }

    .offcanvas-backdrop {
        display: none !important;
    }
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* App Video Section */
#app-video {
    background-color: #e6f3ff;
}

.video-container {
    cursor: pointer;
    overflow: hidden;
}

.play-button {
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.9;
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1) !important;
    opacity: 1;
}

.video-container img {
    transition: transform 0.5s ease;
}

.video-container:hover img {
    transform: scale(1.02);
}

/* How It Works Grid */
.bg-soft-pink {
    background-color: #fff5f5;
}

.bg-soft-green {
    background-color: #f0fff4;
}

.bg-soft-blue {
    background-color: #ebf8ff;
}

.bg-soft-yellow {
    background-color: #fffff0;
}

.process-card {
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.process-icon {
    font-size: 3.5rem;
    color: #0aa2c0;
    /* Accent dark */
    margin-bottom: 1.5rem;
    /* Add a stroke effect if possible, or just use the icon */
}

.process-card h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.process-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #6c757d;
    position: relative;
    padding-left: 1rem;
}

.process-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0aa2c0;
    font-weight: bold;
}

/* Starter Pack Section */
.bg-electric-blue {
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bg-electric-blue::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    pointer-events: none;
    z-index: -1;
}

.product-icon {
    max-height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.product-icon:hover {
    transform: translateY(-5px) scale(1.05);
}

.product-icon-large {
    max-height: 140px;
    /* Slightly larger for premium feel */
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.product-icon-large:hover {
    transform: translateY(-5px) scale(1.02);
}

.starter-product-grid .col-4 {
    position: relative;
    margin-bottom: 2rem;
}

.starter-list li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Premium Glossy Redesign */
.bg-glossy-blue {
    background: linear-gradient(135deg, #0061f2 0%, #00c6fb 100%);
}

.gloss-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    pointer-events: none;
}

.product-icon,
.product-icon-large {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.product-icon:hover,
.product-icon-large:hover {
    transform: translateY(-8px) scale(1.08);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

/* === Mobile Visibility Override (Failsafe) === */
@media (max-width: 991.98px) {
    section {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}

/* Premium Product Buttons */
.btn-premium-add {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    min-width: 100px;
}

.btn-premium-add:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-premium-details {
    background-color: transparent;
    color: var(--color-accent);
    /* #0dcaf0 */
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.btn-premium-details:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 202, 240, 0.2);
}

.btn-premium {
    background: linear-gradient(45deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 200% auto;
    color: white;
    border: none;
    transition: 0.5s;
}

.btn-premium:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

/* Refined Premium Styles */
.drop-shadow-lg {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.ls-1 {
    letter-spacing: 1px;
}

.text-primary {
    color: #005bea !important;
}

.starter-list li i {
    font-size: 1.2rem;
}

.starter-list li span {
    flex: 1;
}

/* Starter List Styling */
.starter-list li {
    font-size: 1.1rem;
    color: #444;
}

.starter-list .text-success {
    color: #198754 !important;
}

/* Smart Add-Ons Section */
.addon-card {
    padding: 3.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
}

.addon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.bg-gradient-blue {
    background: linear-gradient(to bottom, #f0f7ff, #e6f0ff);
    /*background: rgb(229,240,254);*/
}

.bg-gradient-yellow {
    background: linear-gradient(to bottom, #fffef0, #fffde6);
    /*background: rgb(244,255,206);*/
}

.bg-gradient-green {
    background: linear-gradient(to bottom, #f0fff4, #e6fffa);
}

.addon-image {
    max-height: 160px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.addon-card:hover .addon-image {
    transform: scale(1.05);
}

.addon-title {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.addon-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Alarm Modes Section */
#alarm-modes {
    background-color: #eaf6ff;
    /* Light blue match */
}

.mode-icon {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.mode-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.mode-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Subscription Section */
.subscription-price {
    font-size: 1.5rem;
    color: #333;
}

.subscription-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #444;
}

.subscription-list .fa-check-square {
    color: #28a745;
    min-width: 25px;
}

/* Why Choose Us Section */
#why-choose {
    background-color: #f0f7ff;
}

.why-card {
    border: none;
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #0aa2c0, #007bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FAQ Section */
#faq .accordion-item {
    border: none;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    /* Softer, deeper shadow */
    border-radius: 1rem;
    /* More rounded */
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#faq .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

#faq .accordion-button {
    background-color: #fff;
    color: #34495e;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.75rem 2rem;
    box-shadow: none;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
    /* Prepare for active border */
}

/* Custom Icon using FontAwesome content logic or pure CSS */
#faq .accordion-button::after {
    background-image: none;
    /* Remove default bootstrap icon */
    content: '\f078';
    /* FontAwesome Chevron Down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #aaa;
    transition: transform 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
    color: #0aa2c0;
    /* Brand info color */
    background-color: #ffffff;
    /* Keep white for cleaner look */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border-left: 5px solid #0aa2c0;
    /* Accent border */
}

#faq .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    color: #0aa2c0;
}

#faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

#faq .accordion-body {
    padding: 0 2rem 2rem 2.3rem;
    /* Align text with title */
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    background-color: #fff;
}


/* === Premium Soft/Sober Section Additions === */
.bg-premium-soft {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FB 100%);
    position: relative;
    /* Subtle geometric pattern overlay could go here if desired */
}

.card-premium-soft {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.card-premium-soft:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

.icon-box-soft {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    /* Soft gradient for the icon box background */
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    color: var(--color-accent);
    /* cyan/info color */
    font-size: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8),
        0 10px 20px rgba(0, 0, 0, 0.03);
}

.card-premium-soft:hover .icon-box-soft {
    background: var(--color-accent);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 15px 30px rgba(13, 202, 240, 0.3);
}

.text-premium-heading {
    /* Darker, softer grey for headings */
    color: #2c3e50;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.text-premium-muted {
    color: #6c757d;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* === Premium Story Section === */
.border-left-brand {
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
}

.story-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
    position: relative;
    border: 2px solid #f0f7ff;
}

.story-line-connector {
    position: absolute;
    left: 29px;
    /* Half of width (30) - half of line width (1) */
    top: 60px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    z-index: 1;
}

.text-premium-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

.story-item {
    padding-bottom: 3rem;
    position: relative;
}

.story-item:last-child .story-line-connector {
    display: none;
}

/* === Value Cards (What We Stand For) === */
.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(13, 202, 240, 0.3);
}

.value-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(13, 202, 240, 0.08);
    /* light info bg */
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--color-accent);
    color: #fff;
}

.value-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.25rem;
}

.value-desc {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* === Minimal Feature Cards (Additional Reasons) === */
.feature-minimal-card {
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 12px;
}

.feature-minimal-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.03);
    transform: translateY(-3px);
}

.minimal-icon {
    color: var(--color-accent);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.minimal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}


/* === Contact Form Enhancements === */
.required-asterisk {
    color: #dc3545;
    margin-left: 3px;
    font-weight: bold;
}

.input-with-flag-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.flag-icon-overlay {
    position: absolute;
    left: 15px;
    z-index: 5;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    /* For emoji sizing */
    line-height: 1;
}

.input-with-flag {
    padding-left: 75px !important;
}

/* === Ultra-Premium Contact Page === */
.bg-gradient-dark-premium {
    /* Midnight Tech Theme */
    background-color: #0b1120;
    background-image:
        radial-gradient(at 0% 0%, rgba(56, 189, 248, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    color: #fff;
    padding-bottom: 9rem !important;
    /* Increased padding for deeper overlap */
    overflow: hidden;
}

/* Subtle Grid Pattern Overlay */
.bg-gradient-dark-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Decorative glowing orb - refined */
.bg-gradient-dark-premium::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0) 60%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    filter: blur(60px);
}

/* Additional lighting accent */
.bg-gradient-dark-premium .container {
    position: relative;
    z-index: 3;
}

.hero-title-premium {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.mt-n5-premium {
    margin-top: -6rem !important;
    position: relative;
    z-index: 10;
}

.contact-card-premium {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Sophisticated smooth shadow */
    overflow: hidden;
}

/* Form Styles Tweaks */
.form-floating>.form-control {
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.form-floating>.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(13, 202, 240, 0.1);
}

.icon-box-premium {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.hover-lift-row:hover .icon-box-premium {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 202, 240, 0.2);
}

/* === Premium Product Features === */

/* Product Ribbons */
.ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.ribbon-new {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
}

.ribbon-hot {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
}

.ribbon-sale {
    background: linear-gradient(135deg, #f53844 0%, #42378f 100%);
    color: white;
}

.ribbon-top {
    background: linear-gradient(135deg, #ffd700 0%, #fdb931 100%);
    color: black;
}

/* Quick View Overlay */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card .card-img-top {
    position: relative;
    overflow: hidden;
}

.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    background: white;
    color: #333;
    border: none;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.product-card:hover .quick-view-btn {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.quick-view-btn:hover {
    background: var(--color-accent);
    color: white;
}

/* Quantity Selector */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.2rem;
    background: #f8f9fa;
}

.quantity-selector button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #333;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector button:hover {
    background: var(--color-accent);
    color: white;
    transform: scale(1.1);
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #333;
}

.quantity-selector input:focus {
    outline: none;
}

/* Remove scroll arrows from number input */
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-selector input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* === Floating Contact Bar === */
.floating-contact-bar {
    position: fixed;
    right: 25px;
    bottom: 40px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.floating-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.floating-item .label {
    background: white;
    color: #333;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    /*font-size: 0.9rem;*/
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    white-space: nowrap;
    position: absolute;
    right: 100%;
}

.floating-item:hover .label {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.floating-item .icon-box {
    /*width: 65px;
    height: 65px;*/
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.floating-item:hover .icon-box {
    transform: scale(1.1);
}

/* Premium Gradients */
.whatsapp-item .icon-box {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.expert-item .icon-box {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
}

.email-item .icon-box {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

/* Animations */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce-icon {

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

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@keyframes shake-icon {
    0% {
        transform: rotate(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-5deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0);
    }
}

.whatsapp-item .icon-box {
    animation: pulse-green 2s infinite;
}

.expert-item .icon-box i {
    animation: bounce-icon 2.5s infinite;
    display: inline-block;
}

.email-item .icon-box i {
    animation: shake-icon 4s infinite;
    display: inline-block;
}

/* === Back to Top Button (Integrated) === */
.floating-item.back-to-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    height: 0;
    margin: 0;
    overflow: hidden;
}

.floating-item.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: auto;
    margin-top: 20px;
    overflow: visible;
}

.back-to-top .icon-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* Premium Purple */
    box-shadow: 0 10px 25px rgba(118, 75, 162, 0.4);
}

.back-to-top:hover .icon-box {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 15px 30px rgba(118, 75, 162, 0.6);
}

/* Rocket Animation */
.animated-rocket:hover i {
    animation: rocket-fly 0.6s ease infinite alternate;
}

@keyframes rocket-fly {
    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(-5px) rotate(-10deg);
    }
}

/* Premium Product Details Page */
.product-hero {
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.product-gallery-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    background: white;
    position: relative;
    min-height: 400px;
    /* Ensure visibility */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: white;
    padding: 5px;
    object-fit: contain;
}

.product-thumb.active {
    border-color: var(--color-primary);
}

.product-price-premium {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #333, #000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-pill {
    background: rgba(13, 110, 253, 0.08);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.accordion-premium .accordion-item {
    border: none;
    background: transparent;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.accordion-premium .accordion-button {
    background: transparent;
    box-shadow: none;
    font-weight: 700;
    padding: 1.5rem 0;
    color: #333;
}

.accordion-premium .accordion-button:not(.collapsed) {
    /*color: var(--color-primary);*/
    color: #000;
}

.accordion-premium .accordion-body {
    padding: 0 0 1.5rem 0;
    color: #666;
    line-height: 1.7;
}

/* Modal Styling tweak */
.modal-content-premium {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.close-btn-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.close-btn-premium:hover {
    background: var(--color-danger);
    color: white;
}

/* === Premium Quick View Modal Redesign === */
.modal-premium {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.close-btn-floating {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn-floating:hover {
    background: #dc3545;
    color: white;
    transform: rotate(90deg);
}

.btn-premium-main {
    background: linear-gradient(135deg, var(--color-accent) 0%, #007bff 100%);
    color: white;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-premium-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 202, 240, 0.3);
    color: white;
}

.btn-premium-main:active {
    transform: translateY(0);
}

.btn-outline-premium {
    background: transparent;
    color: var(--color-text-muted);
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: var(--color-secondary);
    color: var(--color-text-main);
    border-color: #ced4da;
}

.quantity-premium {
    height: 42px;
    /* Match button height roughly */
}

/* Badge Util */
.bg-soft-info {
    background-color: rgba(13, 202, 240, 0.12) !important;
}

.ls-1 {
    letter-spacing: 1px;
}

/* === Carousel Indicators Premium === */
#qvCarousel .carousel-indicators {
    bottom: 10px;
    z-index: 15;
}

#qvCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #999;
    opacity: 0.7;
    margin: 0 5px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#qvCarousel .carousel-indicators button.active {
    background-color: var(--color-accent);
    opacity: 1;
    transform: scale(1.2);
    border-color: white;
}

#qvCarousel .carousel-control-prev-icon,
#qvCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 15px;
    background-size: 50%;
    backdrop-filter: blur(2px);
}

#qvCarousel .carousel-control-prev,
#qvCarousel .carousel-control-next {
    width: 10%;
    opacity: 0.8 !important;
    /* Always visible */
    transition: opacity 0.3s;
}

#qvCarousel:hover .carousel-control-prev,
#qvCarousel:hover .carousel-control-next {
    opacity: 1;
}

/* Review System Styles */
.accordion-premium .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.accordion-premium .accordion-button {
    background: #f8f9fa;
    border-radius: 10px !important;
    font-weight: 600;
    box-shadow: none;
    padding: 15px;
}

.accordion-premium .accordion-button:not(.collapsed) {
    background: #e9ecef;
    color: var(--bs-body-color);
}

.accordion-premium .accordion-body {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 10px;
    border: 1px solid #f0f0f0;
}

.star-rating i {
    transition: all 0.2s;
}

.star-rating i:hover {
    transform: scale(1.2);
}

/* === Mobile Product Buttons Redesign (<768px) === */
@media (max-width: 768px) {
    .action-buttons-container {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
    }

    .qty-wishlist-group {
        justify-content: space-between;
        width: 100%;
        margin-bottom: 5px;
    }

    /* Make buttons full width and chunky */
    .mobile-full-width {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1.1rem !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 !important;
        /* Reset generic margins if any */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    }

    /* Ensure icons are spaced well */
    .mobile-full-width i {
        margin-right: 10px !important;
    }

    /* Styling for the Quantity Selector on mobile */
    .quantity-selector {
        height: 50px;
        display: flex;
        align-items: center;
        width: auto !important;
        /* Let it shrink/grow naturally */
        flex-grow: 1;
        /* Take up remaining space */
        justify-content: center;
        background: #f8f9fa;
        border-radius: 50px;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
        border: 1px solid #eee;
        margin-right: 15px;
    }

    /* Wishlist button styling */
    .wishlist-btn {
        width: 50px !important;
        height: 50px !important;
        background: #fff;
        border: 1px solid #eee;
        flex-shrink: 0;
    }
}

.form-check-input {
  border: var(--bs-border-width) solid #000;
}