/*
Theme Name: My Custom Theme
Author: Rahul Kumar
Version: 1.2
*/

:root {
    --primary-color: #111111;
    --secondary-color: #ff6600;
    --secondary-hover: #e65c00;
    --white-color: #ffffff;
    --text-muted: #666666;
    --border-color: #eeeeee;
    --surface-soft: #ff66001f;
    --surface-partner: #ffefe5;
    --hero-overlay: rgba(0, 0, 0, 0.55);
    --shadow-sm: 0 12px 32px rgba(255, 102, 0, 0.12);
    --shadow-md: 0 14px 30px rgba(17, 17, 17, 0.08);
    --radius: 8px;
    --section-pad: 80px;
    --section-pad-mobile: 56px;
    --nav-offset: 92px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    --hover-shadow: 0 16px 40px rgba(255, 102, 0, 0.18);
    --hover-shadow-dark: 0 20px 48px rgba(17, 17, 17, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white-color);
    color: var(--primary-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-fast);
}

        /* Navbar */
        .navbar{
            background-color: var(--white-color) !important;
        }

        .navbar-brand,
        .navbar .nav-link{
            color: var(--primary-color) !important;
            font-weight: 700;
        }

        .navbar .nav-link:hover{
            color: var(--secondary-color) !important;
        }

        /* Buttons */
        .btn-primary{
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }

        .btn-primary:hover,
        .btn-primary:focus{
            background-color: var(--secondary-hover);
            border-color: var(--secondary-hover);
            color: var(--white-color);
        }

        .btn-primary:focus-visible {
            box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.35);
        }

        .btn-outline-dark {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline-dark:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--white-color);
        }

        .text-primary {
            color: var(--secondary-color) !important;
        }

        .woocommerce-Price-amount,
        .product-price,
        .price {
            color: var(--secondary-color);
            font-weight: 700;
        }

        /* Section */
        .theme-section{
            padding: 80px 0;
        }

        .theme-title{
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .theme-text{
            font-size: 16px;
            color: #666;
        }

        .wow {
            visibility: hidden;
        }

        .animate__animated {
            --animate-duration: .9s;
            --animate-delay: 0s;
        }

        .theme-section,
        .benefit-section,
        .faq-section {
            scroll-margin-top: 92px;
        }

        /* Footer */
        .theme-footer{
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 20px 0;
            text-align: center;
        }
        .theme-text a,
        .page-content a,
        .blog-single-content a,
        .mega-menu-link,
        .link-brand {
            color: var(--secondary-color);
        }

        .theme-text a:hover,
        .page-content a:hover,
        .link-brand:hover {
            color: var(--secondary-hover);
        }
        .custom-logo{
    width: 150px;
    height: 50px;
    object-fit: contain;
}
div#mainNavbar ul li a {
    color: #000 !important;
}

.navbar .container {
    position: relative;
}

.collections-menu {
    position: static;
}
ul#menu-primary .book-a-call a {
    color: #FFF !important;
}
.collections-toggle i {
    font-size: 12px;
    transition: transform .25s ease;
}

.collections-menu:hover .collections-toggle i,
.collections-menu:focus-within .collections-toggle i {
    transform: rotate(180deg);
}

.collections-mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 12px;
    right: 12px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    pointer-events: none;
}

.collections-menu:hover .collections-mega,
.collections-menu:focus-within .collections-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 28px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 8px;
}

.mega-menu-copy h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 8px 0 10px;
}

.mega-menu-copy p,
.mega-menu-card small {
    color: #666;
    line-height: 1.5;
}

.mega-menu-link {
    display: inline-flex;
    margin-top: 12px;
    font-weight: 800;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mega-menu-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    color: var(--primary-color);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.mega-menu-card:hover {
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 14px 30px rgba(17, 17, 17, .08);
    transform: translateY(-3px);
}

.mega-menu-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 102, 0, .1);
    color: var(--secondary-color);
    font-size: 19px;
}

.mega-menu-card strong,
.mega-menu-card small {
    display: block;
}

.mega-menu-card strong {
    margin-bottom: 4px;
    font-size: 15px;
}

.nav-offcanvas .offcanvas-body {
    align-items: center;
}

.book-a-call {
    background: #ff6600 !important;
    border-radius: 4px;
    padding: 0px;
    margin-left: 20px;
}
ul#menu-primary li .book-a-call a {
    color: #FFF !important;
}


        /* HERO SECTION */
      .hero-section{
    width:100%;
    overflow:hidden;
}

/* SLIDE */
.hero-slide{
    min-height:89vh;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    padding:0;
}

/* BACKGROUND IMAGE ZOOM EFFECT */
.hero-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:inherit;
    background-size:cover;
    background-position:center;
    transform:scale(1);
    animation:zoomBg 8s ease-in-out infinite alternate;
    z-index:0;
}

/* DARK OVERLAY */
.hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

/* CONTENT */
.hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    color:#fff;
    animation:fadeUp 1.2s ease;
}

.hero-title{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-text{
    font-size:20px;
    color:#eee;
    margin-bottom:30px;
}

/* BUTTON */
.hero-btn{
    display:inline-block;
    background:var(--secondary-color);
    color:var(--white-color) !important;
    padding:15px 35px;
    border-radius:var(--radius);
    text-decoration:none;
    font-weight:700;
    transition:all .4s ease;
    border: 2px solid var(--secondary-color);
}

.hero-btn:hover,
.hero-btn:focus{
    transform:translateY(-3px);
    background:var(--white-color);
    color:var(--primary-color) !important;
    border-color:var(--white-color);
}

/* SMOOTH SLIDER */
.carousel-item{
    transition:transform 2s cubic-bezier(.22,.61,.36,1), opacity 2s cubic-bezier(.22,.61,.36,1) !important;
}

/* FADE ANIMATION */
.carousel-fade .carousel-item{
    opacity:0;
    transition-property:opacity;
}

.carousel-fade .carousel-item.active{
    opacity:1;
}

/* CONTENT ANIMATION */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* BACKGROUND ZOOM */
@keyframes zoomBg{
    0%{
        transform:scale(1);
    }
    100%{
        transform:scale(1.08);
    }
}

/* SLIDER BUTTON */
.carousel-control-prev,
.carousel-control-next{
    width:7%;
    opacity:0;
    transition:.4s;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next{
    opacity:1;
}

/* DOTS */
.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 5px;
}

/* MOBILE */
@media(max-width:768px){

    .hero-slide{
        min-height:80vh;
        text-align:center;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-btn{
        padding:12px 28px;
    }

}

/* Categories */
.category-card {
    display: block;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    height: 100%;
    color: var(--primary-color);
}

.category-card:hover,
.category-card:focus-visible {
    border-color: var(--secondary-color);
    box-shadow: var(--hover-shadow);
    transform: translateY(-6px);
}

.category-card:hover .category-icon,
.category-card:focus-visible .category-icon {
    background: rgba(255, 102, 0, 0.2);
    transform: scale(1.08);
    color: var(--secondary-hover);
}

.category-card:hover .category-name,
.category-card:focus-visible .category-name {
    color: var(--secondary-color);
}

.category-card .category-icon {
    transition: transform var(--transition-base), background-color var(--transition-base), color var(--transition-fast);
}

.category-card .category-name {
    transition: color var(--transition-fast);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    font-size: 26px;
    color: var(--secondary-color);
}

.category-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    overflow-wrap: anywhere;
}

.category-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.45;
    margin: 8px 0 0;
}

.category-count {
    display: inline-flex;
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}

#reviews {
    background: url(https://newwebite.otomusik.com/wp-content/uploads/2026/05/sliderthere.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Footer */
.theme-footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
    text-align: left;
}

.footer-main {
    padding: 64px 0 48px;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 16px;
}

.footer-about {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color) !important;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary-color) !important;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767px) {
    .theme-section {
        padding: 56px 0;
    }

    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        min-height: 460px;
    }
}
.testimonial-card{
    border-radius:20px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-base);
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow: var(--hover-shadow-dark);
}

.testimonial-card img{
    object-fit:cover;
    border:4px solid #f1f1f1;
}

.slick-dots li button:before{
    font-size:12px;
    color:#000;
}

.slick-prev:before,
.slick-next:before{
    color:#ff6600;
    font-size: 28px;
}
.clind{
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #1f1208 45%, #111111 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.clind .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Content */
.clind .testimonial-section{
    position: relative;
    z-index: 2;
}

/* Card — testimonial (clind section) */
.clind .testimonial-card {
    border: none;
}

/* Image */
.object-fit-cover{
    object-fit: cover;
}

/* Slick spacing fix */
.slick-slide{
    height: auto;
}

.slick-track{
    display: flex !important;
}

.slick-slide > div{
    height: 100%;
}

.testimonial-slider {
    padding: 0 28px 40px;
}

.testimonial-slider .slick-list {
    margin: 0 -6px;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    z-index: 3;
}

.testimonial-slider .slick-dots {
    bottom: 0;
}

.testimonial-slider .slick-dots li button:before {
    color: #fff;
    opacity: .55;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--secondary-color);
    opacity: 1;
}

/* Blog */
.blog-section {
    background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.blog-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.blog-heading-row .theme-text {
    max-width: 430px;
}

.blog-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(17, 17, 17, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 102, 0, .45);
    box-shadow: 0 24px 55px rgba(17, 17, 17, .1);
}

.blog-image-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eee;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 12px;
    color: #777;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.blog-title a {
    color: var(--primary-color);
}

.blog-title a:hover,
.blog-read-more:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    min-height: 72px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 800;
}

.blog-read-more::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform .25s ease;
}

.blog-read-more:hover::after {
    transform: translateX(4px);
}
/* FAQ SECTION */
        .faq-section{
           background: #000;
        }

        /* DARK OVERLAY */
        .faq-overlay{
            position:absolute;
            inset:0;
            background:rgba(0,0,0,0.65);
        }

        .faq-content{
            position:relative;
            z-index:2;
        }

        /* TITLE */
        .faq-title{
            font-size:55px;
            font-weight:800;
            color:#fff;
        }

        .faq-subtitle{
            color:#ddd;
            font-size:18px;
        }

        /* ACCORDION */
        .accordion-item{
            border:none;
            border-radius:18px !important;
            overflow:hidden;
            margin-bottom:20px;
            background:rgba(255,255,255,0.08);
            backdrop-filter:blur(10px);
        }

        .accordion-button{
            background:#000;
            color:#fff;
            font-size:18px;
            font-weight:700;
            padding:22px;
            box-shadow:none !important;
        }

        .accordion-button:not(.collapsed){
            background:#000;
            color:#fff;
        }

        .accordion-button::after{
            filter:brightness(0) invert(1);
        }

.accordion-body {
    color: #000000;
    font-size: 16px;
    line-height: 1.7;
    background: rgb(255 87 34 / 9%);
}

        /* HOVER */
        .accordion-item:hover{
            transform:translateY(-3px);
            transition:0.3s;
        }

        /* MOBILE */
        @media(max-width:768px){

            .faq-title{
                font-size:38px;
            }

            .accordion-button{
                font-size:16px;
                padding:18px;
            }
        }

@media (max-width: 991px) {
    .nav-offcanvas {
        --bs-offcanvas-width: min(320px, 88vw);
        max-width: min(320px, 88vw);
    }

    .nav-offcanvas .offcanvas-header {
        padding: 20px 22px;
        border-bottom: 1px solid rgba(17, 17, 17, .08);
    }

    .nav-offcanvas .offcanvas-body {
        display: block;
        padding: 18px 22px 28px;
    }

    .nav-offcanvas .navbar-nav {
        gap: 4px;
    }

    .nav-offcanvas .nav-link {
        padding: 12px 0;
        font-size: 16px;
    }

    .blog-heading-row {
        display: block;
    }

    .blog-heading-row .theme-text {
        max-width: 100%;
        margin-top: 12px;
    }

    .collections-mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        box-shadow: none !important;
        margin: 10px 0 0;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .book-a-call {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .theme-title {
        font-size: 32px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 34px;
    }

    .testimonial-slider {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wow {
        visibility: visible !important;
    }

    .animate__animated {
        animation: none !important;
    }
}

/* Shared inner-page layout */
.section-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.page-hero-section,
.about-section {
    background: #000;
    color:#FFF;
}

.top-bar-header {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
}

.top-bar-header a {
    color: var(--white-color) !important;
}

.top-bar-header .brand-accent {
    color: var(--secondary-color) !important;
}

.site-navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.site-navbar .custom-logo-link,
.site-navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    margin-right: auto;
    color: var(--primary-color) !important;
    font-weight: 800;
}

.site-navbar .navbar-toggler {
    padding: 0.35rem 0.5rem;
}

.site-navbar .navbar-toggler-icon {
    filter: none;
}

.center-media img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.product-card-home .card-img-top {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.product-card-home .card-title a {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.product-card-home .card-title a:hover {
    color: var(--secondary-color) !important;
}

.benefit-content h4 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.theme-max-width {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-section--compact .theme-title {
    font-size: 36px;
}

.page-main-section {
    scroll-margin-top: 92px;
}

.page-content p:last-child {
    margin-bottom: 0;
}

/* Product shop layout */
.integration-section {
    background: #fff;
}

.category-sidebar {
    padding: 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    position: sticky;
    top: 108px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.category-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--primary-color) !important;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

.category-list li.is-active a,
.category-list a:hover {
    background: rgba(255, 102, 0, .1);
    color: var(--secondary-color) !important;
}

.top-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.search-box {
    position: relative;
    flex: 1 1 280px;
    max-width: 480px;
}

.search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.search-box input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.sort-box select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.result-text {
    color: #666;
    font-weight: 600;
    margin-bottom: 0;
}

.platform-card {
    height: 100%;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.platform-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 14px 30px rgba(17, 17, 17, .08);
    transform: translateY(-3px);
}

.platform-card a {
    color: inherit;
}

.platform-logo {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.platform-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

.product-card-home .card-img-top {
    transition: transform var(--transition-smooth);
}

.inquiry-form-box {
    border: 1px solid var(--border-color) !important;
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.platform-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.product-price {
    font-weight: 800;
    color: var(--secondary-color);
}

.shop-pagination .page-numbers,
.blog-pagination .page-numbers {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.shop-pagination a,
.shop-pagination span,
.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    color: var(--primary-color) !important;
    font-weight: 700;
}

.shop-pagination .current,
.blog-pagination .current {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff !important;
}

.blog-single-content {
    font-size: 17px;
    line-height: 1.75;
}

.blog-single-content h2,
.blog-single-content h3 {
    margin-top: 1.5rem;
    font-weight: 800;
}

.error-404-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 102, 0, .12);
    color: var(--secondary-color);
    font-size: 36px;
}

.error-404-search {
    max-width: 480px;
}

.text-orange,
.brand-accent {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .category-sidebar {
        position: static;
    }

    .page-hero-section--compact .theme-title {
        font-size: 28px;
    }
}

/* Home page — fixed section spacing */
.home-page .theme-section {
    padding: 80px 0;
    margin: 0;
}

.home-page .section-heading {
    margin-bottom: 48px;
}

.home-page .section-heading .theme-title {
    margin-bottom: 12px;
}

.home-page .section-heading .theme-text {
    margin-bottom: 0;
}

.home-page .benefit-row {
    margin-top: 0;
}

.home-page .home-reviews-section {
    padding: 80px 0;
}

.home-page .home-reviews-section .theme-title,
.home-page .home-reviews-section p {
    color: #fff;
}

.home-page .home-partner-section.faq-section {
    display: block;
    align-items: stretch;
    background: #ffefe5;
}

.home-page .home-partner-section .faq-subtitle {
    color: #444 !important;
}

.home-page .home-faq-section {
    background: #fff;
}

body.home-template .theme-footer {
    margin-top: 0 !important;
}

.home-page .blog-section {
    background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

@media (max-width: 767px) {
    .home-page .theme-section {
        padding: var(--section-pad-mobile) 0;
    }

    .home-page .section-heading {
        margin-bottom: 32px;
    }
}

/* Global responsive & polish */
@media (max-width: 991px) {
    .theme-section {
        padding: 64px 0;
    }

    .benefit-row .col-lg-3,
    .benefit-row .col-lg-6 {
        margin-bottom: 0;
    }

    .center-media {
        margin: 24px 0;
        text-align: center;
    }

    .top-bar .search-box {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .top-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .category-sidebar {
        margin-bottom: 8px;
    }

    .product-show .row {
        text-align: center;
    }

    .product-show .woocommerce div.product form.cart {
        justify-content: center;
    }

    .inquiry-form-box {
        position: static !important;
        margin-top: 24px;
    }
}

.inquiry-form-box {
    position: sticky;
    top: var(--nav-offset);
    background: var(--white-color);
}

.product-show {
    background: var(--surface-soft);
}

.product-gallery-banner {
    display: grid;
    gap: 14px;
}

.product-main-image {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-gallery-thumb {
    display: inline-flex;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.18);
}

.product-option-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-color);
}

.product-summary form.variations_form table.variations {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.product-summary form.variations_form table.variations select {
    pointer-events: none;
}

.product-summary form.variations_form .single_variation {
    display: none !important;
}

.product-live-details {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 8px;
}

.product-live-stock,
.product-live-stock .stock,
.product-live-sku,
.product-live-description {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}

.product-live-description p:last-child {
    margin-bottom: 0;
}

.product-live-stock .in-stock {
    color: #198754;
}

.product-live-stock .out-of-stock {
    color: #dc3545;
}

.product-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-color-swatch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.product-color-swatch:hover,
.product-color-swatch.is-active {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.16);
}

.product-color-swatch.is-active {
    background: rgba(255, 102, 0, 0.08);
}

.product-color-swatch.is-disabled,
.product-color-swatch:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    box-shadow: none;
    transform: none;
}

.product-color-dot {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 50%;
}

.product-attribute-swatches.is-color-only {
    gap: 12px;
}

.product-color-swatch.is-color-only-swatch {
    min-width: 44px;
    min-height: 44px;
    padding: 6px;
    justify-content: center;
}

.product-color-swatch.is-color-only-swatch .product-color-dot {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.product-color-swatch.is-color-only-swatch.is-active .product-color-dot {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--secondary-color);
}

.product-attribute-image {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 6px;
    object-fit: cover;
    background: #f6f6f6;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.product-color-name {
    line-height: 1.2;
}


.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.2);
}

@media (max-width: 767px) {
    .theme-section {
        padding: var(--section-pad-mobile) 0;
    }

    .hero-slide {
        min-height: 70vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 8px;
    }

    .carousel-indicators {
        margin-bottom: 0.5rem;
    }

    .category-card {
        padding: 14px 12px;
    }

    .category-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .platform-card {
        padding: 16px;
    }

    .platform-logo {
        width: 72px;
        height: 72px;
    }

    .page-hero-section .theme-title {
        font-size: 30px;
    }

    .footer-main {
        padding: 48px 0 32px;
    }

    .footer-brand {
        font-size: 1.4rem;
    }

    .accordion-button {
        font-size: 15px;
        padding: 16px;
    }
}

@media (max-width: 575px) {
    .col-6.col-lg-2 {
        flex: 0 0 auto;
        width: 50%;
    }

    .product-card-home.col-md-3 {
        width: 50%;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.15;
    }

    .hero-text {
        font-size: 15px;
    }

    .testimonial-slider .slick-slide {
        padding: 0 6px;
    }
}

/* Focus & accessibility */
:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--secondary-color);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ==========================================================================
   Unified hover & interactive effects
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
    .top-bar-header a:hover .brand-accent {
        color: #ff8533 !important;
    }

    .site-navbar .navbar-brand:hover,
    .site-navbar .custom-logo-link:hover {
        opacity: 0.85;
    }

    .navbar .nav-link {
        position: relative;
        transition: color var(--transition-fast);
    }

    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        transition: width var(--transition-base);
    }

    .navbar .nav-link:hover::after,
    .navbar .nav-item.current-menu-item > .nav-link::after,
    .navbar .nav-item.current_page_item > .nav-link::after {
        width: 100%;
    }

    .navbar .nav-item.current-menu-item > .nav-link,
    .navbar .nav-item.current_page_item > .nav-link {
        color: var(--secondary-color) !important;
    }

    .hero-btn:hover {
        box-shadow: 0 12px 28px rgba(255, 102, 0, 0.35);
    }

    .hero-btn:active {
        transform: translateY(-1px) scale(0.98);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(255, 102, 0, 0.35);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    .btn-outline-dark:hover {
        transform: translateY(-2px);
        box-shadow: var(--hover-shadow-dark);
    }

    .btn-dark {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--white-color);
        transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-base), box-shadow var(--transition-base);
    }

    .btn-dark:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        color: var(--white-color);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(255, 102, 0, 0.3);
    }

    .product-card-home .category-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--hover-shadow);
    }

    .product-card-home .category-card:hover .card-img-top {
        transform: scale(1.05);
    }

    .product-card-home .card-img-top {
        transition: transform var(--transition-smooth);
    }

    .platform-card:hover h4 {
        color: var(--secondary-color);
    }

    .platform-card h4 {
        transition: color var(--transition-fast);
    }

    .blog-card:hover .blog-title a {
        color: var(--secondary-color);
    }

    .blog-image-link:hover .blog-image {
        transform: scale(1.08);
    }

    .accordion-button:hover {
        background: #1a1a1a !important;
        color: var(--white-color) !important;
    }

    .accordion-item:hover {
        box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
    }

    .category-list a:hover {
        transform: translateX(4px);
    }

    .category-sidebar:hover {
        box-shadow: var(--hover-shadow-dark);
    }

    .category-sidebar {
        transition: box-shadow var(--transition-base);
    }

    .search-box input:hover {
        border-color: #ccc;
    }

    .sort-box select:hover {
        border-color: var(--secondary-color);
    }

    .shop-pagination a:hover,
    .blog-pagination a:hover {
        background: rgba(255, 102, 0, 0.1);
        border-color: var(--secondary-color);
        color: var(--secondary-color) !important;
        transform: translateY(-2px);
    }

    .footer-social a:hover {
        transform: translateY(-4px) scale(1.05);
        background: var(--secondary-color);
    }

    .footer-links a:hover,
    .footer-contact a:hover {
        color: var(--secondary-color) !important;
        padding-left: 4px;
    }

    .footer-links a,
    .footer-contact a {
        transition: color var(--transition-fast), padding-left var(--transition-fast);
    }

    .testimonial-slider .slick-prev:hover,
    .testimonial-slider .slick-next:hover {
        color: var(--secondary-hover);
        filter: drop-shadow(0 2px 6px rgba(255, 102, 0, 0.4));
    }

    .testimonial-slider .slick-dots li button:hover:before {
        opacity: 1;
        color: var(--secondary-color);
    }

    .carousel-indicators [data-bs-target]:hover {
        transform: scale(1.2);
        opacity: 1 !important;
    }

    .inquiry-form-box {
        transition: box-shadow var(--transition-base), border-color var(--transition-base);
    }

    .inquiry-form-box:hover {
        box-shadow: var(--hover-shadow-dark);
        border-color: rgba(255, 102, 0, 0.25);
    }

    .error-404-icon {
        transition: transform var(--transition-base), background-color var(--transition-base);
    }

    .error-404-icon:hover {
        transform: scale(1.08) rotate(-6deg);
        background: rgba(255, 102, 0, 0.2);
    }

    .mega-menu-card:hover .mega-menu-icon {
        transform: scale(1.1);
        background: rgba(255, 102, 0, 0.2);
    }

    .mega-menu-icon {
        transition: transform var(--transition-base), background-color var(--transition-base);
    }

    /* WooCommerce */
    .woocommerce a.button:hover,
    .woocommerce button.button:hover,
    .woocommerce input.button:hover,
    .woocommerce #respond input#submit:hover {
        background-color: var(--secondary-hover) !important;
        color: var(--white-color) !important;
    }

    .product-summary .single_add_to_cart_button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(255, 102, 0, 0.35);
    }
}

/* Touch devices: no sticky lift hover */
@media (hover: none) {
    .category-card:hover,
    .blog-card:hover,
    .platform-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .category-card:hover,
    .blog-card:hover,
    .platform-card:hover,
    .testimonial-card:hover,
    .hero-btn:hover,
    .btn-primary:hover {
        transform: none;
    }

    .blog-card:hover .blog-image,
    .category-card:hover .category-icon {
        transform: none;
    }

    .navbar .nav-link::after {
        transition: none;
    }
}
.product-btn {
    display: none;
}
 textarea.wpcf7-form-control.wpcf7-textarea.form-control {
    height: 100px;
}
