/*
Theme Name: Able Sheet Metal - Desktop Styles
Description: Main stylesheet for desktop devices (merged & optimized).
*/

/* =========================================
   1. VARIABLES & FONTS
   ========================================= */
:root {
    --e-global-color-primary: #04316A;
    --e-global-color-secondary: #0C155C;
    --e-global-color-text: #04316A;
    --e-global-color-accent: #04316A;
}

/* Fonts Gotham Pro are missing in /fonts directory, commenting out to avoid 404 
@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
*/

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* Merged font stack */
    font-family: 'Gotham Pro', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    color: #0C155C;
    overflow-x: hidden;
    line-height: 1.5;
}

/*p {*/
/*    color: #04316A;*/
/*    font-size: 16px;*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*}*/

.elementor-heading-title {
    color: #04316A;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.elementor-widget-button .elementor-button {
    display: flex;
    padding: 16px 63px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.elementor-widget-button .elementor-button:visited {
    color: #fff !important;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.hero-title,
.hero-description,
.section-title,
.footer-nav a,
.main-navigation a {
    font-family: 'Gotham Pro', sans-serif;
}

/* Global Transitions */
a,
button,
input,
.menu-item {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Focus Styles */
a:focus,
button:focus {
    outline: none;
}

/* =========================================
   3. HEADER
   ========================================= */
.main-navigation a {
    white-space: nowrap !important;
}

.page-title-breadcrumb a {
    white-space: nowrap !important;
}

.site-header {
    position: fixed !important;
    /* Enforced sticky */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 168px;
    box-sizing: border-box;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
    background-color: #04316A;
    /* Default Blue Header for all pages */
}

/* Header States */
body.home .site-header {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: blur(0px);
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.home .site-header.sticky {
    background: #0C155C !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    opacity: 1;
}

body.home .site-header:not(.sticky) {
    transform: translateY(0);
    opacity: 1;
}

body:not(.home) .site-header {
    background: #0c155c !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Body padding for fixed header on non-home pages */
body:not(.home) {
    padding-top: 190px;
}

body.home {
    padding-top: 0;
}

/* Invert header on archive/search/white pages */
/* Invert header on archive/search/white pages - REMOVED per user request for blue header */
/* 
body.archive .site-header,
body.search .site-header,
body.tax-product_cat .site-header,
body.able-white-header .site-header {
    background-color: #ffffff !important;
    box-shadow: none !important;
} 
*/

.page-title-breadcrumb {
    text-transform: uppercase;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 28px 170px;
    box-sizing: border-box;
    height: 100%;
}

.site-logo {
    flex-shrink: 0;
}

.logo-link {
    display: block;
    line-height: 0;
}

.logo {
    width: 99px;
    height: 100px;
    display: block;
}


/* Swapped Logo for white headers */
/* Swapped Logo for white headers - REMOVED */
/*
body.archive .site-logo img,
body.search .site-logo img,
body.tax-product_cat .site-logo img,
body.able-white-header .site-logo img {
    content: url('../images/logo-dark-mobile.svg');
    width: auto;
    height: 50px;
    transition: all 0.3s ease;
}
*/

/* Navigation links for white headers */
/* Navigation links for white headers - REMOVED */
/*
body.archive .main-navigation a,
body.search .main-navigation a,
body.tax-product_cat .main-navigation a,
body.able-white-header .main-navigation a {
    color: #0C155C;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.archive .main-navigation a:hover,
body.search .main-navigation a:hover,
body.tax-product_cat .main-navigation a:hover,
body.able-white-header .main-navigation a:hover {
    color: #04316A;
    opacity: 1;
}

body.archive .main-navigation a::after,
body.search .main-navigation a::after,
body.tax-product_cat .main-navigation a::after,
body.able-white-header .main-navigation a::after {
    background: #0C155C;
}
*/

/* Main Navigation */
.main-navigation {
    display: flex;
    gap: 50px;
    align-items: center;
}

.main-navigation .nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: normal;
    position: relative;
    font-family: 'Gotham Pro', sans-serif;
    cursor: pointer;
    display: inline-block;
    transform: translateY(0);
}

.main-navigation a:hover {
    opacity: 0.9;
    cursor: pointer;
    transform: translateY(-2px);
    color: #fff;
}

/* Nav Hover Line */
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.main-navigation a:hover::after,
.main-navigation a.current-menu-item::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
    opacity: 1;
}

.main-navigation a.current-menu-item {
    opacity: 1;
}

/* Icons */
.search-icon {
    width: 26px;
    height: 26px;
    cursor: pointer;
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 0;
    line-height: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}

.search-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.search-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

/* Dark Icons for white headers */
/* Dark Icons for white headers - REMOVED */
/*
body.archive .search-icon svg path,
body.search .search-icon svg path,
body.tax-product_cat .search-icon svg path,
body.able-white-header .search-icon svg path {
    fill: #0C155C !important;
}
*/

.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: rotate(0deg);
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

/* Dark Toggle for white headers */
/* Dark Toggle for white headers - REMOVED */
/*
body.archive .mobile-menu-toggle,
body.search .mobile-menu-toggle,
body.tax-product_cat .mobile-menu-toggle,
body.able-white-header .mobile-menu-toggle {
    color: #0C155C !important;
}
*/

/* Search Modal */
.header-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.header-search-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.search-modal-inner {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    position: relative;
}

.search-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.header-search-modal .search-form {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.header-search-modal label {
    flex: 1;
}

.header-search-modal .search-field {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    padding: 15px 0;
    outline: none;
}

.header-search-modal .search-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header-search-modal .search-submit {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0 15px;
}

.header-search-modal .search-submit svg {
    width: 30px;
    height: 30px;
}

/* =========================================
   4. COMPONENTS
   ========================================= */

/* Buttons */
.btn-primary {
    background: #04316A;
    color: #fff;
    padding: 16px 63px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    height: 56px;
    position: relative;
    overflow: hidden;
    will-change: transform, background-color, box-shadow;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: #062a54;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 15px rgba(4, 49, 106, 0.3);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Product Cards */
.product-card {
    background: #f1f1f1;
    height: 251px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: background-color 1.4s cubic-bezier(0.19, 1, 0.22, 1),
        transform 1s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 1s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, background-color, box-shadow;
}

/* Reveal animation support */
.product-card.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
        transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    background: #04316A;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(4, 49, 106, 0.25);
    z-index: 10;
}

.product-card .card-title {
    position: absolute;
    top: 29px;
    left: 22px;
    font-size: 20px;
    font-weight: bold;
    color: #04316A;
    max-width: 291px;
    line-height: normal;
    font-family: 'Inter', sans-serif;
    transition: color 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card.dark .card-title,
.product-card:hover .card-title {
    color: #fff;
}

.product-card .card-image {
    position: absolute;
    right: 22px;
    bottom: 22px;
    max-width: 160px;
    max-height: 160px;
    box-shadow: none;
    object-fit: contain;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.4));
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1),
        filter 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .card-image {
    transform: scale(1.1);
    filter: brightness(1.1) drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.4));
}

.product-card .card-arrow {
    position: absolute;
    bottom: 22px;
    left: 22px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 1s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #04316A;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
}

.product-card.dark .card-arrow {
    color: #fff;
}

.product-card .card-arrow svg {
    width: 100%;
    height: 100%;
}


.product-card .card-arrow svg rect {
    transition: fill 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .card-arrow {
    transform: translateX(8px);
}

.product-card:hover .card-arrow svg rect {
    fill: #D11122;
}

/* Products Page Layout */
.products-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.products-main {
    flex: 1;
    width: 100%;
}

.products-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.products-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.products-sidebar-item a {
    display: block;
    padding: 15px 20px;
    background-color: #F4F4F4;
    color: #04316A;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Gotham Pro', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.products-sidebar-item.current-cat a,
.products-sidebar-item a:hover {
    background-color: #04316A;
    color: #fff;
    padding-left: 25px;
    /* Slight movement effect */
}

.products-main {
    flex: 1;
}

/* Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    /* Updated gap */
}

/* =========================================
   5. SECTIONS
   ========================================= */

/* Hero Section */
.hero-section {
    position: relative;
    height: 964px;
    overflow: hidden;
}

.hero-section::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 68.432%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(270deg, rgba(255, 0, 0, 0.5) 0%, rgba(28, 45, 205, 0.5) 100%);
    z-index: 1;
    pointer-events: none; */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    padding-top: 390px;
    padding-left: 170px;
    padding-right: 170px;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 90px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 7px;
}

.hero-title .red-text {
    color: #FF0000;
}

.hero-description {
    font-size: 29px;
    color: #fff;
    font-weight: 500;
    max-width: 839px;
    line-height: 1.5;
}

.made-in-usa {
    position: absolute;
    right: 80px;
    bottom: 40px;
    text-align: center;
    z-index: 2;
}

.made-in-usa img {
    width: 301px;
    height: 174px;
    margin-bottom: 15px;
}

.made-in-usa p {
    color: #FFF;
    font-size: 29px;
    font-weight: 400;
    line-height: 150%;
}

/* Hero Slider (Slick) Overrides */
.hero-slide {
    position: relative;
    height: 964px;
    overflow: hidden;
}

.hero-slider .hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: transparent;
    cursor: pointer;
    font-size: 0;
}

.hero-slider .slick-arrow::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hero-slider .slick-prev {
    left: 30px;
}

.hero-slider .slick-prev::before {
    transform: translate(-25%, -50%) rotate(-135deg);
}

.hero-slider .slick-next {
    right: 30px;
}

.hero-slider .slick-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slick-list {
    overflow: visible !important;
    padding: 10px !important;
    margin: -10px !important;
}

/* Common Section Title */
.section-title {
    font-size: 40px;
    font-weight: bold;
    color: #04316A;
    text-transform: uppercase;
    margin: 40px 0px;
    line-height: normal;
}

/* About Section */
.about-section {
    display: flex;
    gap: 178px;
    align-items: flex-start;
    padding: 100px 170px;
}

.about-content {
    max-width: 505px;
}

.about-content .section-title {
    margin-bottom: 95px;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
    color: #04316A;
    margin-bottom: 57px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    max-height: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

/* About Page Full Text */
.about-section-page .about-text-full {
    max-height: none;
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

.about-image-wrapper {
    position: relative;
    width: 702px;
    height: 408px;
    flex-shrink: 0;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: #04316A;
    bottom: -157px;
    right: 228px;
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Customers Section */
.customers-section {
    padding: 100px 0;
    overflow: hidden;
}

.customers-section .section-title {}

.customers-grid {
    display: block;
    padding: 20px 0;
    margin: 0;
}

.customer-logo {
    border: 1px solid rgba(4, 49, 106, 0.8);
    height: 187px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0 11px;
    animation: fadeInUp 0.6s ease-out;
    transition: border-color 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.customer-logo:hover {
    border-color: #04316A;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.customer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.customer-logo span {
    font-size: 16px;
    color: #04316A;
    font-weight: bold;
}

/* Featured Products Section */
.featured-section {
    padding: 100px 170px;
}

.featured-item {
    background: #f1f1f1;
    padding: 80px 111px;
    position: relative;
    margin-bottom: 61px;
    height: 600px;
    overflow: visible;
}

.featured-item::before {
    content: '';
    position: absolute;
    width: 415px;
    height: 415px;
    border-radius: 50%;
    background: #04316A;
    /* Fallback */
    background: linear-gradient(135deg, rgba(4, 49, 106, 0.1) 0%, rgba(4, 49, 106, 0.05) 100%);
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.featured-item:first-child::before,
.featured-item::before {
    right: 234px;
    top: 93px;
}

.featured-item:last-child::before,
.featured-item.reverse::before {
    left: 116px;
    right: auto;
    top: 93px;
}

.featured-content {
    max-width: 530px;
    position: relative;
    z-index: 10;
}

.featured-title {
    font-size: 40px;
    font-weight: bold;
    color: #04316A;
    text-transform: uppercase;
    margin-bottom: 58px;
    line-height: normal;
}

.featured-text {
    font-size: 20px;
    line-height: 1.6;
    color: #04316A;
    margin-bottom: 58px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    max-height: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    text-align: left;
}

/* Reverse Variations */
.featured-item.reverse {
    text-align: right;
}

.featured-item.reverse .featured-content {
    margin-left: auto;
}

.featured-item.reverse .featured-title {
    text-align: right;
}

.featured-item.reverse .featured-text {
    text-align: left;
}

.featured-item.reverse .btn-primary {
    margin-left: auto;
}

/* Featured Images */
.featured-image-wrapper {
    position: absolute;
    right: -82px;
    top: -82px;
    z-index: 1;
}

.featured-image-wrapper.left {
    left: 37px;
    right: auto;
    top: 46px;
}

.featured-image-main {
    width: 702px;
    height: 702px;
    object-fit: cover;
    box-shadow: 20px 30px 20px 0px rgba(0, 0, 0, 0.25);
    transform: rotateX(180deg) rotateY(180deg);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.featured-item.reverse .featured-image-main {
    transform: none;
}

.featured-item:hover .featured-image-main {
    transform: scale(1.02);
}

.featured-image-secondary {
    position: absolute;
    box-shadow: 20px 30px 20px 0px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

/* Contact Section & Footer */
.contact-section {
    background: #04316A;
    padding: 60px 170px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 304px;
    position: relative;
    overflow: hidden;
}

.contact-info h2 {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-info p {
    color: #FFF;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-logo {
    width: 205px;
    height: 208px;
}

.contact-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer {
    background: #03162e;
    padding: 80px 170px;
    min-height: 311px;
    box-sizing: border-box;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 160px;
    align-items: flex-start;
}

.footer-logo {
    width: 154px;
    height: 154px;
    flex-shrink: 0;
    margin-top: -12px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: normal;
    position: relative;
    display: inline-block;
    font-family: 'Gotham Pro', sans-serif;
    transform: translateX(0);
}

.footer-nav a:hover {
    opacity: 0.9;
    transform: translateX(5px);
    color: #fff;
}

.footer-nav a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(0);
}

.footer-nav a:hover::before {
    left: -20px;
    opacity: 1;
    transform: translateX(-2px);
}

.footer-contact {
    color: #fff;
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.5;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 500;
    width: 244px;
}

.footer-contact p,
.footer-contact a {
    margin-bottom: 52px;
    color: #FFF !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    opacity: 0.8;
    text-decoration: underline;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-contact p:first-child {
    font-size: 18px;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}


.site-footer .footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr auto;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    grid-column: 1;
    margin-right: 40px;
}

.footer-col-1 {
    grid-column: 2;
}

.footer-col-2 {
    grid-column: 3;
}

.footer-col-3 {
    grid-column: 4;
}

.footer-contact {
    grid-column: 5;
}

/* Single Product Page & Others */
/* Single Product Page & Others */
.single-product-main {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.6fr;
    /* Image | Summary | Extra Info */
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.single-product-image {
    max-width: 100%;
    /* Grid handles width */
}

/* WooCommerce Gallery Styles */
.woocommerce-product-gallery {
    position: relative;
    width: 100%;
}

.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
}

.woocommerce-product-gallery__wrapper {
    margin: 0;
    padding: 0;
}

.woocommerce-product-gallery__image {
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: block;
    margin: 0 auto;
    transition: transform 0.2s ease-out;
    /* Slightly faster for panning responsiveness */
    transform-origin: center center;
}

/* Fallback panning zoom class added via JS */
.woocommerce-product-gallery__image.manual-zoom-active img {
    transform: scale(1.6);
}

.zoomImg {
    z-index: 100 !important;
}

/* PhotoSwipe (Lightbox) Fixes */
.pswp {
    display: none;
    z-index: 999999 !important;
}

.pswp.pswp--open {
    display: block !important;
}

.pswp__bg {
    background: rgba(0, 0, 0, 0.9) !important;
}

.flex-control-thumbs {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    flex-wrap: wrap;
}

.flex-control-thumbs li {
    width: 80px;
    cursor: pointer;
}

.flex-control-thumbs img {
    width: 100%;
    height: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.flex-control-thumbs img.flex-active,
.flex-control-thumbs img:hover {
    opacity: 1;
}

.single-product-title {
    font-size: 32px;
    font-weight: 700;
    color: #0C155C;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.single-product-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* Move Specs Grid to vertical stack in right column */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for tight space */
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.spec-item {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.spec-item:hover {
    border-color: #007bff;
    background: #fff;
}

.spec-icon {
    font-size: 24px;
    color: #001e62;
    margin-right: 15px;
}

.spec-title {
    font-size: 13px;
}

/* Attributes */
.attribute-row {
    margin-bottom: 20px;
}

.attribute-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.attribute-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-attribute {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-attribute:hover {
    border-color: #0C155C;
    color: #0C155C;
}

/* Search Results Page */
.search-results {
    min-height: 800px;
}

.no-results .search-form,
.widget_search .search-form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.no-results .search-field,
.widget_search .search-field {
    width: 100%;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    outline: none;
}

.no-results .search-submit,
.widget_search .search-submit {
    background: #0C155C;
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page {
    padding: 0;
}

.contact-page-hero {
    background: #04316A;
    padding: 120px 170px 80px;
    text-align: center;
}

.contact-page-title {
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: normal;
}

.contact-page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-page-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding: 100px 170px;
    max-width: 1920px;
    margin: 0 auto;
}

.contact-page-info {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
}

.contact-page-info-title {
    font-size: 28px;
    font-weight: bold;
    color: #04316A;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-page-block {
    margin-bottom: 35px;
}

.contact-page-block:last-child {
    margin-bottom: 0;
}

.contact-page-block h3 {
    font-size: 16px;
    font-weight: bold;
    color: #04316A;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-page-block p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.contact-page-block a {
    color: #04316A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-page-block a:hover {
    color: #062a54;
}

.contact-region-block {
    margin-bottom: 40px;
}

.contact-region-block:last-child {
    margin-bottom: 0;
}

.region-title {
    font-size: 20px;
    font-weight: bold;
    color: #04316A;
    margin-bottom: 20px;
    font-family: 'Gotham Pro', sans-serif;
}

.contact-detail-row {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.detail-label {
    font-weight: bold;
    color: #04316A;
    display: block;
    margin-bottom: 5px;
}

.detail-value {
    display: block;
}

.operation-hours {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.contact-breadcrumbs {
    text-align: left;
    margin-top: 20px;
    font-size: 18px;
    color: #04316A;
}

.contact-breadcrumbs a {
    color: #04316A;
    /* Changed to black per user request */
    text-decoration: none;
}

.elementor a:visited {
    color: #04316A;
    /* Changed to black per user request */
    text-decoration: none;
}

.contact-breadcrumbs .breadcrumb-separator {
    margin: 0 10px;
    color: #04316A;
}

/* Update Header Title Color */
.contact-page-title {
    color: #04316A;
    /* Match design dark blue */
}

/* Contact Form Styling */
.contact-page-form {
    padding: 0;
}

.contact-page-form form {
    background: #fff;
}

.contact-page-form input[type="text"],
.contact-page-form input[type="email"],
.contact-page-form input[type="tel"],
.contact-page-form input[type="number"],
.contact-page-form textarea,
.contact-page-form select {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-page-form input[type="text"]:focus,
.contact-page-form input[type="email"]:focus,
.contact-page-form input[type="tel"]:focus,
.contact-page-form input[type="number"]:focus,
.contact-page-form textarea:focus,
.contact-page-form select:focus {
    outline: none;
    border-color: #04316A;
    box-shadow: 0 0 0 3px rgba(4, 49, 106, 0.1);
}

.contact-page-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-page-form label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #04316A;
    margin-bottom: 8px;
}

.contact-page-form input[type="submit"],
.contact-page-form button[type="submit"] {
    background: #04316A;
    color: #fff;
    padding: 16px 60px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.contact-page-form input[type="submit"]:hover,
.contact-page-form button[type="submit"]:hover {
    background: #062a54;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 49, 106, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-page-hero {
        padding: 100px 140px 60px;
    }

    .contact-page-main {
        padding: 80px 140px;
        gap: 60px;
    }

    .contact-page-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        padding: 80px 40px 50px;
    }

    .contact-page-title {
        font-size: 36px;
    }

    .contact-page-main {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 40px;
    }

    .contact-page-info {
        padding: 40px 30px;
    }
}

/* =========================================
   WHERE TO BUY WIDGET CENTERING
   ========================================= */
.able-where-to-buy-widget {
    max-width: 1200px;
    margin: 0 auto !important;
}

.entry-content {
    max-width: 1200px;
    margin: 0 auto !important;
}

.able-contact-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: inherit;
}

.able-contact-form .form-row {
    margin-bottom: 20px;
}

.able-contact-form input[type="text"],
.able-contact-form input[type="email"],
.able-contact-form input[type="tel"],
.able-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 16px;
    box-sizing: border-box;
}

.able-contact-form textarea {
    height: 150px;
}

.able-contact-form input[type="submit"] {
    background-color: #0C155C;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;
}

.able-contact-form input[type="submit"]:hover {
    background-color: #1a237e;
}

/* Hide actual labels if using placeholders exclusively,
   but keeping them in HTML is good for accessibility.
   Adjust as necessary. */
.able-contact-form label {
    font-size: 0;
    /* Hide label text but keep for screen readers if placeholders are visible */
    display: block;
}

.able-contact-form input::placeholder,
.able-contact-form textarea::placeholder {
    color: #666;
}

.contacts .southern-california {
    font-weight: 400;
    color: #29292c;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.contacts .text-wrapper {
    font-weight: 700;
}

.contacts .span {
    font-weight: 400;
    color: #29292c;
    font-size: 16px;
    letter-spacing: 0;
}

@media (max-width: 768px) {}

.e-con>.e-con-inner {
    gap: 40px !important;
}

.products-section-sidebar {
    padding-top: 40px;
    padding-bottom: 80px;
}

.products-section {
    /*padding-left: 100px;*/
    /*padding-right: 100px;*/
}

/* Homepage and Product Categories overrides for padding */
/* Homepage and Product Categories overrides for padding */
body.home .products-section,
body.page-id-283 .products-section {
    padding-left: 0;
    padding-right: 0;
}

/* Subcategory Page Padding (Restoring standard spacing) */
/* Subcategory Page Padding (Restoring standard spacing) */
body.tax-product_cat .products-section,
body.single-product .products-section {
    padding-left: 100px;
    padding-right: 100px;
}

.products-breadcrumb a:visited {
    color: #04316A;
}

/* How To Page Styles */
.page-how-to .products-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-how-to .how-to-content {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    padding-bottom: 150px;
}

.how-to-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    /* Matches Where to Buy full width */
    width: 100%;
    margin: 0;
    /* Left Aligned */
}

.how-to-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #0C155C;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
}

.how-to-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1A3DBF;
    /* Brighter Blue */
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding: 30px 40px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border-radius: 0;
}

.how-to-btn:hover {
    background-color: #0C155C;
    color: #ffffff;
}

.btn-arrow {
    display: flex;
    align-items: center;
}

/* ===== Attribute select ===== */
.single-product select.attribute-select {
    width: 100%;
    padding: 12px 44px 12px 14px;
    font-size: 14px;
    line-height: 1.4;

    border: 1px solid #d1d5db;
    border-radius: 0;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;
    background-color: #fff;

    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23000' stroke-width='2'/></svg>"),
        linear-gradient(#f2f2f2, #f2f2f2);

    background-repeat: no-repeat, no-repeat;

    background-position: right 10px center, right 0 center;

    background-size: 12px 8px, 32px 100%;
}

/* Hover и Focus */
.single-product select.attribute-select:hover {
    border-color: #a0aec0;
}

.single-product select.attribute-select:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.2);
}

.single-product select.attribute-select::-ms-expand {
    display: none;
}

/* =========================================
   PRODUCTS SIDEBAR MENU - Inter Font
   ========================================= */

.products-sidebar-item a.sidebar-link {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    background-color: #F4F4F4;
    color: #04316A;
    transition: all 0.3s ease;
}

.products-sidebar-item.current-cat a.sidebar-link,
.products-sidebar-item a.sidebar-link:hover {
    background-color: #04316A;
    color: #fff;
    padding-left: 25px;
}

.products-sidebar-item a {
    font-family: 'Inter', sans-serif !important;
}


/* ===========================
   FOOTER HEIGHT — FIXED PROPERLY
   =========================== */
@media (min-width: 1025px) {

    .site-footer {
        min-height: 311px;
        height: auto;
        box-sizing: border-box;
        display: flex;
        align-items: flex-start;
        padding-top: 60px;
        padding-bottom: 60px;
        overflow: visible;
    }

    .site-footer .footer-content {
        width: 100%;
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
        box-sizing: border-box;
        align-items: flex-start;
    }

    .site-footer p {
        margin-top: 0;
        margin-bottom: 16px;
    }

    .site-footer p:last-child {
        margin-bottom: 0;
    }

    .site-footer nav,
    .site-footer ul,
    .site-footer li {
        margin: 0;
        padding: 0;
    }

    .footer-contact p:first-child {
        max-width: 204px;
        width: 204px;

        font-family: "Gotham Pro", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0;

        opacity: 0.8;

        white-space: normal;
        word-break: normal;
    }

    .footer-contact p:last-child {
        width: 244px;

        font-family: "Gotham Pro", sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0;

        opacity: 0.8;
        margin-top: 24px;
    }
}

@media (min-width: 1025px) {

    .single-product-main {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .single-product-image {
        flex: 0 1 50%;
        position: relative;
        overflow: hidden;
        min-width: 300px;
        max-width: 600px;
    }

    .single-product-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
        cursor: zoom-in;
    }

    .single-product-summary {
        flex: 1;
        min-width: 300px;
    }


    /* ===== Description Section ===== */
    .single-product-description {
        margin-top: 40px !important;
    }

    .single-product-description .single-product-section-title {
        font-family: 'Gotham Pro', sans-serif !important;
        font-weight: 400 !important;
        /* Light */
        font-style: normal !important;
        font-size: 24px !important;
        line-height: 100% !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;
        color: #5A6778 !important;
        margin-bottom: 16px !important;
    }

    .single-product-description .single-product-description-text {
        font-family: 'Inter', sans-serif !important;
        font-weight: 400 !important;
        /* Regular */
        font-style: normal !important;
        font-size: 16px !important;
        line-height: 160% !important;
        letter-spacing: 0 !important;
        color: #5A6778 !important;
        background: transparent !important;
        margin-bottom: 32px !important;
    }

    /* ===== Product Specifications Section ===== */
    .product-specs-section {
        margin-top: 32px !important;
    }

    .product-specs-section .single-product-section-title {
        font-family: 'Gotham Pro', sans-serif !important;
        font-weight: 400 !important;
        /* Light */
        font-size: 24px !important;
        line-height: 100% !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;
        color: #5A6778 !important;
        margin-bottom: 16px !important;
    }

    .specs-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .spec-item {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 400 !important;
        font-size: 16px !important;
        line-height: 160% !important;
        color: #5A6778 !important;
        text-decoration: none !important;
    }

    .spec-item .spec-icon {
        flex-shrink: 0 !important;
    }

    .spec-item .spec-title {
        display: inline-block !important;
    }

    .single-product-description-text p {
        color: #5A6778 !important;
        font-family: Inter;
        font-weight: 400;
        font-style: Regular;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 160%;
        letter-spacing: 0%;

    }


    /* ===== Product Description / Specs Table ===== */
    .single-product-description .single-product-description-text,
    .product-specs-section,
    .specs-grid,
    .spec-item {
        color: #04316A !important;
    }

    .single-product-description .single-product-description-text p,
    .spec-item .spec-title {
        color: #5A6778 !important;
    }

    .site-header {
        height: 113px !important;
    }

    .header-container {
        padding: 21px 170px;
    }

    .logo {
        height: 75px;
        width: auto;
    }

}

/* FIX: prevent WooCommerce styles from affecting header logo */
.site-header .site-logo img,
.site-header .logo {
    width: 74.25px !important;
    height: 75px !important;
    max-width: none !important;
}


.single-product-image .woocommerce-product-gallery__image,
.single-product-image img {
    box-shadow: none !important;
}

/* --- =========================================== --- */


.single-product-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.single-product-image {
    flex: 1 1 50%;
    max-width: 500px;
    position: relative;
}

.woocommerce-product-gallery__wrapper {
    width: 100%;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-product-summary {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.single-product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.single-product-attributes-custom {
    margin-bottom: 25px;
}

.attribute-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.attribute-label {
    font-weight: 600;
    margin-right: 10px;
}

.attribute-values {
    flex: 1;
}

.btn-attribute {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 5px 12px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #fff;
    color: #000;
    border-radius: 3px;
    transition: 0.2s;
}

.btn-attribute.selected {
    background-color: #04316A;
    color: #fff;
    border-color: #04316A;
}

.single-product-extra-info {
    width: 100%;
    margin-top: 30px;
}

.single-product-description-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.single-product-description-text table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.single-product-description-text th,
.single-product-description-text td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    text-align: left;
}

.single-product-description-text th {
    background-color: #f5f5f5;
}

/* ---  PDF, links --- */
.product-specs-section {
    margin-top: 25px;
}

.product-specs-section .specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #0C155C;
    border-radius: 0px;
    transition: 0.2s;
}

.spec-item:hover {
    background-color: #f0f0f0;
}

.spec-icon {
    margin-right: 10px;
}


.single-product-attributes-custom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.attribute-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attribute-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #000000 !important;
    text-align: left !important;
    display: block;
}

.btn-attribute {
    width: 126px;
    height: 57px;
    border: 1px solid #C4C4C4;
    border-radius: 0;
    padding: 10px !important;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #000 !important;
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    text-align: center !important;
    cursor: pointer;
    opacity: 1;
}

.select-attribute {
    width: 250px;
    height: 57px;
    border: 1px solid #C4C4C4;
    border-radius: 0;
    padding: 20px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #000 !important;
    text-align: left !important;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.btn-attribute.selected {
    background-color: #04316A;
    color: #ffffff !important;
    border: 1px solid #04316A;
}

.select-attribute::after {
    content: "▾";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* =========================================
   DESKTOP LAYOUT FIX (ROBUST HEIGHT & CENTERING)
   ========================================= */
@media screen and (min-width: 1025px) {

    /* Height enforced, width fixed at 1380px as per design requirements */
    html body .ios-fix-block {
        height: 600px !important;
        min-height: 600px !important;
        width: 1380px !important;
        max-width: 1380px !important;
        margin-left: 20px !important;
        margin-right: auto !important;
    }
}

/* Global protection against horizontal scroll */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
}

/* =========================================
   COLLAPSIBLE PRODUCT TABLES
   ========================================= */
.product-table-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #04316A;
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 10px 0;
}

.product-table-toggle:hover {
    background: #ff2a00;
}

.product-table-toggle .toggle-icon {
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
}

.product-table-toggle.is-active .toggle-icon {
    transform: rotate(180deg);
}

.product-table-toggle.is-active {
    background: #555;
    margin-bottom: 0px;
}

.product-table-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.product-table-collapse.is-expanded {
    max-height: 3000px;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Ensure table is responsive inside wrapper */
.product-table-collapse table {
    width: 100% !important;
    display: table !important;
}

.able-doc-title {
    color: #FFFFFF;
}

.elementor-element-ca61cf4 .elementor-heading-title {
    font-family: "Gotham Pro", Arial, sans-serif !important;
}
