/*
Theme Name: Vacuum 2.0
Theme URI: http://example.com/vacuum2
Author: Kabster & Antigravity
Description: A premium, minimal, and fast WordPress theme.
Version: 1.0.0
Text Domain: vacuum2
*/

/* --- Design System --- */
:root {
    --primary: #1a3a5f;
    --dark: #1a1a1a;
    --light: #f5f5f7;
    --white: #ffffff;
    --text: #333333;
    --text-muted: #666666;
    --font-main: 'PT Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Header --- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    color: inherit;
    display: flex;
}

.custom-logo {
    height: 60px;
    width: auto;
    display: block;
}

.flex-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 10px;
    gap: 2rem;
}

/* --- Navigation --- */
.main-navigation {
    margin-left: auto;
}

.main-navigation>ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-navigation ul li {
    position: relative;
    padding: 1rem 0;
}

.main-navigation ul li a {
    color: #333;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: block;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: var(--primary);
    z-index: 1002;
    transition: var(--transition);
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.25s;
    transition-timing-function: ease;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -9px;
}

.hamburger-inner::after {
    bottom: -9px;
}

/* Morph to Cross */
.menu-toggle[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

.menu-overlay {
    display: none;
}

.mobile-menu-footer {
    display: none;
}

/* Dropdown (Sub-menu) styles */
.main-navigation ul li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
    /* Ensure it's not flex */
}

.main-navigation ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul li .sub-menu li {
    padding: 0;
    margin: 0;
}

.main-navigation ul li .sub-menu li a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    transition: var(--transition);
}

.main-navigation ul li .sub-menu li a:hover {
    background-color: #f7f7f9;
    color: #1a3a5f;
    padding-left: 1.8rem;
}

/* Arrow indicator for parents */
.main-navigation ul li.menu-item-has-children>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-navigation ul li.menu-item-has-children>a::after {
    content: "\f347";
    font-family: "dashicons";
    font-size: 14px;
    margin-top: 2px;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.main-navigation ul li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
    color: #1a3a5f;
}

.main-navigation ul li a:hover {
    color: #1a3a5f;
}

/* --- Main Content --- */
main {
    padding: 0;
    min-height: 70vh;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1.1rem 3.2rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    line-height: 1;
    text-decoration: none;
}

.btn-primary {
    background: var(--white);
    color: #111111;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.hero-slider .slide-title {
    letter-spacing: normal;
    margin-bottom: 0px;
    margin-bottom: 20px;
}

.hero-slider .slide-subtitle {
    margin-bottom: 35px;
}

/* --- Best Sellers Section --- */
.best-sellers {
    padding: 3rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
}

/* Product Card */
.product-card {
    position: relative;
    transition: var(--transition);
}

.product-image-wrapper {
    position: relative;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e54b4b;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.5;
    transition: var(--transition);
}

.wishlist-btn:hover {
    opacity: 1;
    color: #e54b4b;
}

/* Learn More Button in Product Card */
.btn-learn-more {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--dark);
    color: var(--dark);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: 4px;
    text-decoration: none;
}

.btn-learn-more:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Product Info */
.product-info {
    text-align: center;
}

/* Product Title Style */
.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 2.8em;
    /* Ensure alignment if titles have different lengths */
}

.product-title a {
    color: var(--dark);
    text-decoration: none;
}

/* Star Rating */
.star-rating {
    font-size: 0.8rem;
    margin: 0.5rem auto 0;
    color: #ffb400;
}

.rating-count {
    font-size: 0.75rem;
    color: #888;
}

/* Custom Carousel Arrows */
.best-sellers-carousel .splide__arrow {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 1;
    width: 44px;
    height: 44px;
}

.best-sellers-carousel .splide__arrow--prev {
    left: -22px;
}

.best-sellers-carousel .splide__arrow--next {
    right: -22px;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.post-entry {
    margin-bottom: 3rem;
}

.best-sellers-carousel .splide__arrow svg {
    fill: #000 !important;
}

/* --- Footer --- */
.site-footer {
    background: #1a3a5f;
    color: #fff;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column h4.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-logo .site-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info .dashicons {
    color: #fff;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-copyright p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #666;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- Homepage Specific Styles --- */
.hero-slider {
    margin-top: -1px;
}

.splide__slide {
    width: 100%;
}

.slide-inner {
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.slide-content {
    max-width: 800px;
}

.slide-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease backwards;
}

.slide-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.slide-content .btn {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Splide Pagination */
.splide__pagination {
    bottom: 2rem;
}

.splide__pagination__page {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: var(--transition);
}

.splide__pagination__page.is-active {
    background: var(--white);
    transform: scale(1.2);
}

/* Splide Arrows */
.splide__arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.splide__arrow:hover {
    background: var(--white);
}

.splide__arrow svg {
    fill: var(--white);
}

.splide__arrow:hover svg {
    fill: var(--dark);
}

/* Brands Section Styles */
.home-brands {
    padding: 100px 0;
    background: #fdfdfd;
    border-top: 1px solid #f0f0f0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
}

.brand-item {
    text-align: center;
}

.brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
    /* filter: grayscale(100%); */
    opacity: 1;
}

.brand-link:hover {
    /* filter: grayscale(0); */
    opacity: 0.9;
    transform: translateY(-5px);
}

.brand-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Guarantee Section Styles */
.home-guarantee {
    padding: 80px 0;
    background-color: #f8f9fb;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guarantee-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.guarantee-icon {
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon img {
    max-height: 100%;
    width: auto;
}

.guarantee-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 15px;
}

.guarantee-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
}

.btn-guarantee {
    margin-top: auto;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Specific colors for each button as per screenshot colors */
.btn-guarantee-1 {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-guarantee-2,
.btn-guarantee-3 {
    background-color: #b08d75;
    color: #ffffff;
}

.btn-guarantee:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
}

/* Store Gallery Section Styles */
.store-gallery {
    padding: 80px 0;
    background-color: var(--white);
}

.store-gallery-slider {
    max-width: 70%;
    margin: 0 auto;
    position: relative;
}

.store-photo-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    /* Adjusted for a more modern wide look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.store-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.store-photo-item:hover img {
    transform: scale(1.05);
}

/* Custom Splide Styles for Store Gallery */
.store-gallery-slider .splide__arrow {
    width: 45px;
    height: 45px;
    background: var(--dark);
    opacity: 0.8;
    transition: var(--transition);
}

.store-gallery-slider .splide__arrow {
    background: rgba(26, 58, 95, 0.9);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.store-gallery-slider .splide__arrow--prev {
    left: -55px;
}

.store-gallery-slider .splide__arrow--next {
    right: -55px;
}

.store-gallery-slider .splide__arrow:hover {
    opacity: 1;
    background: #1a3a5f;
}

.store-gallery-slider .splide__arrow svg {
    fill: #fff;
    width: 1.2em;
    height: 1.2em;
}

.store-gallery-slider .splide__pagination {
    bottom: -40px;
    /* Move dots below the photo */
}

.store-gallery-slider .splide__pagination__page {
    background: #cbd5e0;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.store-gallery-slider .splide__pagination__page.is-active {
    background: #1a3a5f;
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .store-gallery-slider {
        max-width: 85%;
    }

    .store-gallery-slider .splide__arrow--prev {
        left: -40px;
    }

    .store-gallery-slider .splide__arrow--next {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .store-gallery-slider {
        max-width: 100%;
    }

    .store-gallery-slider .splide__arrow {
        display: none;
    }

    /* Hide arrows on mobile */
}

/* About Section Styles */
.home-about {
    padding: 4rem 0;
    background: var(--white);
    overflow: hidden;
}

.about-flex {
    display: flex;
    min-height: 800px;
}

.about-image-side {
    flex: 0 0 50%;
    position: relative;
}

.about-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
}

.about-inner-content {
    max-width: 100%;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: var(--dark);
}

.about-text {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
}

.about-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #b5a08d;
    letter-spacing: 1.5px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid #b5a08d;
    transition: var(--transition);
}

.about-link:hover {
    color: var(--dark);
    border-bottom-color: var(--dark);
}

.about-link .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.about-link:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .about-flex {
        flex-direction: column;
        min-height: auto;
    }

    .about-image-side,
    .about-content-side {
        flex: 0 0 100%;
    }

    .about-image-side {
        height: 500px;
    }

    .about-content-side {
        padding: 4rem 2rem;
    }
}

/* Video Section Styles */
.home-videos {
    padding: 80px 0;
    background-color: #f6f9fc;
}

.section-header {
    margin-bottom: 50px;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a3a5f;
    margin-bottom: 12px;
}

.section-header .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-main-grid {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.video-main-left {
    flex: 0 0 55%;
    min-width: 0;
}

.video-main-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.main-video-wrapper {
    background: #fff;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main-video-info {
    padding: 25px 30px 30px;
    flex: 1;
}

.main-v-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 10px;
    line-height: 1.3;
}

.main-v-subtitle {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Info Box & Features */
.video-info-box {
    margin-bottom: 40px;
}

.info-box-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 25px;
}

.video-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.video-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1a3a5f;
    font-size: 1rem;
}

.check-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    background: #1a3a5f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Secondary Videos Slider */
.secondary-videos-slider {
    margin-top: auto;
    padding-bottom: 10px;
}

.secondary-videos-slider .splide__track {
    border-radius: 12px;
}

.sub-video-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.sub-video-link:hover {
    transform: translateY(-5px);
}

.sub-video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.sub-video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.sub-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.sub-video-link:hover .sub-video-thumb img {
    opacity: 1;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(220, 38, 38, 0.95);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 2;
}

.sub-video-link:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff0000;
}

.play-overlay svg {
    fill: #fff;
    margin-left: 2px;
}

.sub-video-thumb .duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
}

.sub-video-content {
    padding: 15px;
}

.sub-video-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a3a5f;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom Slider arrows for secondary videos */
.secondary-videos-slider .splide__arrow {
    background: rgba(26, 58, 95, 0.9);
    opacity: 1;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
}

.secondary-videos-slider .splide__arrow--prev {
    left: -25px;
}

.secondary-videos-slider .splide__arrow--next {
    right: -25px;
}

.secondary-videos-slider:hover .splide__arrow {
    opacity: 1;
    background: #1a3a5f;
}

.secondary-videos-slider .splide__arrow svg {
    fill: #fff;
    width: 18px;
    height: 18px;
}

@media (max-width: 1200px) {
    .secondary-videos-slider .splide__arrow--prev {
        left: 5px;
    }

    .secondary-videos-slider .splide__arrow--next {
        right: 5px;
    }
}

/* Response */
@media (max-width: 1024px) {
    .video-main-grid {
        flex-direction: column;
    }

    .video-main-left {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .video-features-list {
        grid-template-columns: 1fr;
    }
}

/* Vacuum Categories Section */
.vacuum-categories {
    padding: 100px 0 50px 0;
    background-color: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    background: #fdfdfd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.category-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 12px;
}

.category-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.category-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 12px 28px;
    background-color: #1a3a5f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 1;
}

.category-btn:hover {
    /* background-color: #1a3a5f; */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 58, 95, 0.25);
    opacity: 0.95;
}

/* Map Section Styles */
.home-map-section {
    padding: 80px 0 100px;
    background-color: #f6f9fc;
}

.map-grid {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.map-info-card {
    flex: 0 0 35%;
    padding: 50px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
}

.map-info-content {
    width: 100%;
}

.map-card-title {
    font-size: 2rem;
    color: #1a3a5f;
    margin-bottom: 10px;
    font-weight: 700;
}

.map-card-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.map-address {
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a3a5f;
    line-height: 1.4;
    margin-bottom: 30px;
}

.map-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.map-phone .dashicons {
    color: #1a3a5f;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.map-phone a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a3a5f;
    text-decoration: none;
}

.directions-btn {
    background-color: #c68a6b;
    border-radius: 8px;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.directions-btn:hover {
    background-color: #b3795c;
    box-shadow: 0 8px 20px rgba(198, 138, 107, 0.3);
}

.map-embed-container {
    flex: 1;
    min-height: 450px;
    position: relative;
}

.map-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .map-grid {
        flex-direction: column;
    }

    .map-info-card {
        flex: 0 0 100%;
        padding: 40px;
        text-align: center;
    }

    .map-phone {
        justify-content: center;
    }

    .directions-btn {
        align-self: center;
    }

    .map-embed-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .vacuum-categories {
        padding: 60px 0;
    }
}

/* --- Product Category Archive Styles --- */
.category-breadcrumbs,
.single-product-breadcrumb-container {
    margin-bottom: 30px;
    margin-top: 30px;
}

.container--category-header {
    padding-top: 0;
    padding-bottom: 20px;
}

.woocommerce-breadcrumb {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}

.woocommerce-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.woocommerce-breadcrumb a:first-child::before {
    content: "\f102";
    font-family: dashicons;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    margin-top: -4px;
    font-size: 16px;
    color: #666;
}

.woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

/* Breadcrumb separator style */
.woocommerce-breadcrumb .breadcrumb-separator {
    color: #ccc;
    margin: 0 8px;
}

.category-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.category-intro-logo {
    flex: 0 0 30%;
    max-width: 30%;
}

.category-intro-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.category-intro-content {
    flex: 1;
}

.category-intro-content .category-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 25px;
    margin-top: 0;
}

.category-description-text {
    max-width: 1000px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.category-description-text p {
    margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
    .category-intro {
        flex-direction: column;
        gap: 30px;
    }

    .category-intro-logo {
        flex: 0 0 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

.category-content-area {
    padding-bottom: 80px;
}

.shop-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.woocommerce-result-count {
    margin: 0 !important;
    font-size: 0.95rem;
    color: #666;
}

.woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce-ordering select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 0.9rem;
    cursor: pointer;
}

@media (max-width: 600px) {
    .shop-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* WooCommerce Product Grid Fixes */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 40px;
    margin: 40px 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    /* Fill grid cell height */
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    /* Added to push the button below to the bottom */
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link img {
    height: 320px;
    /* Fixed height for image container */
    width: 100%;
    object-fit: contain;
    /* Prevents stretching */
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a3a5f;
    margin: 0 0 20px;
    text-transform: none;
    padding: 0;
    line-height: 1.4;
    font-family: var(--font-main);
    flex-grow: 1;
    /* Pushes the button to the bottom */
}

/* Hide rating, price and add to cart from loop */
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button.product_type_simple {
    display: none !important;
}

/* Custom Learn More Button style */
.product-learn-more-btn {
    display: inline-block;
    background-color: #1a3a5f !important;
    color: #fff !important;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-learn-more-btn:hover {
    background-color: #122a46 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 95, 0.2);
}

@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

/* WooCommerce Pagination */
.woocommerce-pagination {
    margin: 80px 0;
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border: none !important;
    gap: 12px;
}

.woocommerce-pagination ul li {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 54px;
    height: 54px;
    padding: 0 !important;
    border-radius: 12px;
    background: #f0f6fc;
    /* Light blue tint instead of pinkish */
    border: none;
    color: #1a3a5f;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    line-height: 1 !important;
    margin: 0 5px !important;
}

.woocommerce-pagination ul li span.current {
    background-color: #1a3a5f !important;
    color: #fff !important;
}

.woocommerce-pagination ul li a:hover {
    background: #1a3a5f !important;
    color: #fff !important;
    /* transform: translateY(-2px); */
}

.woocommerce-pagination .next,
.woocommerce-pagination .prev {
    font-size: 1.2rem;
}

/* Category Extra Sections */
.cat-extra-sec {
    padding: 100px 0;
}

.cat-extra-sec--img-right {
    background-color: #f7f9fc;
}

.cat-extra-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.cat-extra-content {
    flex: 1;
}

.cat-extra-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a3a5f;
    margin-bottom: 30px;
    margin-top: 0;
}

.cat-extra-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.cat-extra-text p {
    margin-bottom: 20px;
}

.cat-extra-image {
    flex: 1;
}

.cat-extra-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Features Section */
.cat-features-sec {
    padding: 100px 0;
    background: #fff;
}

.cat-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.cat-feature-item {
    text-align: center;
}

.cat-feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-feature-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cat-feature-item h3 {
    font-size: 1.8rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 700;
}

.cat-feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Response for Extra Sections */
@media (max-width: 1024px) {
    .cat-extra-grid {
        gap: 40px;
    }

    .cat-extra-content h2 {
        font-size: 2.2rem;
    }

    .cat-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .cat-extra-grid {
        flex-direction: column !important;
        text-align: center;
    }

    .cat-extra-sec--img-left .cat-extra-grid {
        flex-direction: column-reverse !important;
    }

    .cat-extra-sec {
        padding: 60px 0;
    }

    .cat-features-sec {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .cat-features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Single Product Page Styles --- */
.woocommerce div.product {
    margin-top: 20px;
    /* margin-bottom: 80px; */
}

/* Gallery / Image Section */
.woocommerce div.product div.images {
    margin-bottom: 40px;
}

.woocommerce div.product div.images img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Summary / Content Section */
.woocommerce div.product div.summary {
    padding-left: 20px;
}

.woocommerce div.product div.summary .product_title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a3a5f;
    line-height: 1.1;
    margin-bottom: 30px;
    margin-top: 0;
}

.woocommerce div.product div.summary .woocommerce-product-details__short-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

.woocommerce div.product div.summary .woocommerce-product-details__short-description p {
    margin-bottom: 20px;
}

/* CTA Replacement Block */
.product-cta-block {
    background: #f7f9fc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-top: 40px;
}

.product-cta-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a3a5f;
    margin-bottom: 15px;
}

.product-cta-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.product-cta-buttons {
    display: flex;
    gap: 15px;
}

.product-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.product-cta-btn--primary {
    background: #1a3a5f;
    color: #fff !important;
}

.product-cta-btn--primary:hover {
    background: #122a45;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 95, 0.2);
}

.product-cta-btn--secondary {
    background: #fff;
    color: #1a3a5f !important;
    border: 2px solid #1a3a5f;
}

.product-cta-btn--secondary:hover {
    background: #f7f9fc;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .woocommerce div.product div.summary .product_title {
        font-size: 2.2rem;
    }

    .woocommerce div.product div.summary {
        padding-left: 0;
    }

    .product-cta-buttons {
        flex-direction: column;
    }
}

/* Main Container on Product Page */
.single-product-main-container {
    padding-bottom: 60px;
}

/* Product Features Section */
.product-features-section {
    padding: 80px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
    clear: both;
}

.product-features-section .cat-features-grid {
    margin-top: 0;
}

/* Hide Sidebar elements on Product Page */
.single-product #secondary,
.single-product .widget-area,
.single-product #sidebar,
.single-product .woocommerce-sidebar {
    display: none !important;
}

.woocommerce div.product div.images .flex-control-thumbs {
    margin-top: 50px;
}

/* Disable Product Zoom */
.woocommerce-product-gallery__image {
    pointer-events: none;
}

.zoomImg {
    display: none !important;
}

/* Product Specifications Section */
.product-specs-section {
    background: #f1f3f5;
    padding: 80px 0;
    margin-top: 0;
    /* width: 100%;
    position: relative;
    left: 0;
    right: 0; */
}

.specs-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a3a5f;
    margin-bottom: 50px;
}

.specs-main-title.text-center {
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
}

/* Single column variations */
.specs-grid--only-specs,
.specs-grid--only-features {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.specs-grid--only-specs .specs-sub-title,
.specs-grid--only-features .specs-sub-title {
    display: block;
    text-align: center;
    border-bottom: none;
    margin-bottom: 40px;
}

.specs-grid--only-specs .specs-sub-title::after,
.specs-grid--only-features .specs-sub-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #1a3a5f;
    margin: 15px auto 0;
}

.specs-sub-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3a5f;
    text-transform: none;
    margin-bottom: 30px;
    border-bottom: 2px solid #1a3a5f;
    display: inline-block;
}

/* Table Style Specs */
.specs-table {
    border-top: 1px solid #dee2e6;
}

.specs-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.spec-label {
    color: #495057;
    font-weight: 500;
}

.spec-value {
    color: #1a3a5f;
    font-weight: 700;
    text-align: right;
}

/* Features List Styling */
.specs-features-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.specs-features-content ul {
    list-style: none;
    padding-left: 0;
}

.specs-features-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.specs-features-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a3a5f;
    font-weight: 800;
}

@media (max-width: 992px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Extra Product Sections (Accessories & Similar) */
.product-extra-section {
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.extra-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a3a5f;
    margin-bottom: 40px;
}

.product-extra-grid {
    display: grid;
    gap: 20px;
}

.product-extra-grid.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.product-extra-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Accessory Card (Small) */
.extra-product-card--small {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease;
    text-align: center;
}

.extra-product-card--small:hover {
    transform: translateY(-5px);
}

.extra-product-card--small .extra-product-image {
    aspect-ratio: 1/1;
    margin-bottom: 15px;
}

.extra-product-card--small .extra-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.extra-product-card--small .extra-product-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

/* Similar Card (Large) */
.extra-product-card--large {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.extra-product-card--large:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.extra-product-card--large .extra-product-image {
    background: #f1f3f5;
    aspect-ratio: 1/1;
    padding: 20px;
}

.extra-product-card--large .extra-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.extra-product-card--large .extra-product-info {
    padding: 20px;
}

.extra-product-card--large .extra-product-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a3a5f;
    margin-bottom: 10px;
}

.extra-product-card--large .extra-product-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.extra-product-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a3a5f;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #1a3a5f;
}

@media (max-width: 1200px) {
    .product-extra-grid.grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-extra-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-extra-grid.grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-extra-grid.grid-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .extra-section-title {
        font-size: 1.8rem;
    }
}

/* --- Contact Page Styles --- */
.contact-page-template {
    padding-bottom: 0;
}

.contact-hero-section {
    background: #1a3a5f;
    padding: 100px 0 60px;
    color: #fff;
    margin-bottom: 80px;
}

.contact-hero-section .page-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    text-transform: none;
}

.contact-details-section {
    padding-bottom: 100px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-label {
    font-size: 1rem;
    font-weight: 800;
    color: #1a3a5f;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 2px solid #1a3a5f;
    display: inline-block;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-value {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

.contact-value a {
    color: #1a3a5f;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #000;
}

.contact-opening-block {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
}

.opening-times-content {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}

/* Expert Advice CTA */
.contact-expert-cta {
    background: #1a3a5f;
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    position: relative;
    color: #fff;
    text-align: center;
}

.expert-cta-text {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
    color: #fff;
}

.expert-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.expert-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.expert-btn--white {
    background: #fff;
    color: #1a3a5f !important;
    opacity: 1;
}

.expert-btn--white:hover {
    /* background: #f1f3f5; */
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.expert-btn--outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
    opacity: 1;
}

.expert-btn--outline:hover {
    /* background: rgba(255, 255, 255, 0.1); */
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.expert-btn--primary {
    background: var(--primary);
    color: #fff !important;
    opacity: 1;
}

.expert-btn--primary:hover {
    /* background: #142d4a; */
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-phone-wrapper .expert-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.hide-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .contact-expert-cta {
        padding: 60px 20px 30px;
    }

    .expert-cta-text {
        font-size: 1.3rem;
    }

    .expert-btn {
        width: 100%;
    }
}

.contact-page-map {
    margin-top: 0;
    border-top: 1px solid #eee;
}

@media (max-width: 992px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-hero-section .page-title {
        font-size: 2.5rem;
    }
}

/* Single Product Map adjustments */
.single-product-map {
    border-top: 1px solid #eee;
}

/* --- About Page Styles --- */
.about-section {
    padding: 100px 0;
}

.about-section:nth-child(even) {
    background: #f8f9fc;
}

.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    grid-template-areas: "content image";
}

.about-section--reverse .about-section-grid {
    grid-template-areas: "image content";
}

.about-section-content {
    grid-area: content;
}

.about-section-image {
    grid-area: image;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a3a5f;
    margin-bottom: 30px;
    text-transform: none;
}

.sewing-main-content {
    padding: 0;
}

.sewing-cta-section {
    padding: 80px 0;
}

.sewing-cta-section .contact-expert-cta {
    margin-top: 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.about-section-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-page-map {
    margin-top: 0;
}

@media (max-width: 992px) {
    .about-section-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "content" !important;
        gap: 40px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-overlay {
        display: block;
        /* Show on mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 998;
    }

    .menu-overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-footer {
        display: block;
        /* Show on mobile */
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        padding: 0;
        display: flex;
        flex-direction: column;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .main-navigation.is-open {
        max-height: 85vh;
        padding-bottom: 1rem;
        overflow-y: auto;
    }

    .main-navigation>ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 0 0;
    }

    .main-navigation ul li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .main-navigation ul li a {
        padding: 1.2rem;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    /* Accordion */
    .main-navigation ul li.menu-item-has-children>a::after {
        content: "\f347";
        font-family: "dashicons";
        font-size: 18px;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .main-navigation ul li.menu-item-has-children.is-active>a::after {
        transform: rotate(180deg);
    }

    .main-navigation ul li .sub-menu {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f9f9fb;
        width: 100%;
        padding: 0;
        transition: max-height 0.3s ease-out;
        display: block;
    }

    .main-navigation ul li .sub-menu li a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        text-transform: none;
        color: #555;
    }

    .mobile-menu-footer {
        padding: 1.5rem;
    }

    .mobile-menu-footer .contact-expert-cta {
        background: var(--primary);
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        margin: 0;
    }

    .mobile-menu-footer .expert-cta-text {
        font-size: 1rem;
        color: #fff;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .mobile-menu-footer .expert-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-menu-footer .expert-btn {
        width: 100%;
        display: block;
        padding: 12px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        font-size: 0.95rem;
        transition: var(--transition);
    }

    .mobile-menu-footer .expert-btn--white {
        background: #fff;
        color: var(--primary) !important;
    }

    .mobile-menu-footer .expert-btn--outline {
        background: transparent;
        color: #fff !important;
        border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .site-header {
        z-index: 1001;
        /* Stay above overlay */
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Homepage Grid & Layout Adjustments */
    .hero-slider .slide-title {
        font-size: 2.2rem;
    }

    .slide-inner {
        height: 500px;
    }

    .section-header .section-title,
    .section-title {
        font-size: 1.8rem;
    }

    .guarantee-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .video-main-grid,
    .map-grid {
        flex-direction: column;
        gap: 30px;
    }

    .video-main-left,
    .video-main-right,
    .map-info-card,
    .map-embed-container {
        flex: 0 0 100%;
    }

    .about-flex {
        flex-direction: column;
    }

    .about-image-side {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 599px) {
    .container {
        padding: 0 1.25rem;
    }

    .flex-header {
        padding: 0.5rem 0;
    }

    .custom-logo {
        height: 45px;
    }

    .menu-toggle .dashicons {
        font-size: 26px;
        width: 26px;
        height: 26px;
    }

    .hero-slider .slide-title {
        font-size: 1.8rem;
    }

    .slide-inner {
        height: 400px;
    }

    .section-header .section-title,
    .section-title {
        font-size: 1.6rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .video-features-list {
        grid-template-columns: 1fr;
    }

    .info-box-title {
        font-size: 1.3rem;
    }
}