/* CSS */
:root{
    --brand-color: #2246b4
}

.text-highlight{
    color: var(--brand-color);
}

.text-highlight-gradient {
    background: linear-gradient(90deg, #FFD700, #FF8C00, #FF4500);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}


/* Single Product Page */
.cw-short-description h2{
    font-size: 18px;
}



/* Epson Custom Tabs — Modern, Professional Styling
   Filename: epson-custom-tabs.css
   Place in your theme (e.g. /assets/css/epson-custom-tabs.css) and enqueue it.

   Design goals:
   - Clean card layout with soft shadows
   - Rounded, pill-like tabs
   - Smooth hover and active states
   - Responsive horizontal scroll on small screens
*/

:root {
  --epson-bg: #ffffff;
  --epson-foreground: #0f1724; /* dark slate */
  --epson-muted: #6b7280; /* muted text */
  --epson-accent: #FBA73C; /* teal */
  --epson-accent-light: #FF4500;
  --epson-border: rgba(13,16,21,0.06);
  --epson-radius: 12px;
  --epson-padding: 28px;
  --epson-shadow: 0 8px 30px rgba(15,23,36,0.06);
  --epson-transition: 0.25s cubic-bezier(.2,.9,.2,1);
}

/* Wrapper card */
.epson-tabs-wrapper {
  background: var(--epson-bg);
  border: 1px solid var(--epson-border);
  border-radius: var(--epson-radius);
  padding: 0.5rem;
  overflow: hidden;
  font-family: "Poppins", Sans-serif;
}

/* Tabs list */
.epson-tabs-list {
    display: flex;
    gap: 12px;
    list-style: none;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.epson-tabs-list::-webkit-scrollbar {
  height: 8px;
}
.epson-tabs-list::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
}

.epson-tab-item {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.epson-tab-item a {
  display: inline-block;
  padding: 10px 18px;
  background: transparent;
  color: var(--epson-muted);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--epson-transition);
  border: 1px solid transparent;
}
.epson-tab-item.active a,
.epson-tab-item a:hover,
.epson-tab-item a:focus {
  border-bottom: 1px solid #2346b4;
  color: #2346b4;
  outline: none;
}

/* Tab panels */
.epson-tab-panel {
  display: none;
  padding: var(--epson-padding);
  border-radius: calc(var(--epson-radius) - 6px);
  background: var(--epson-bg);
  color: var(--epson-foreground);
  line-height: 1.6;
  font-size: 0.98rem;
  transition: opacity var(--epson-transition) ease, transform var(--epson-transition);
}

/* Headings inside panels */
.epson-tab-panel h2,
.epson-tab-panel h3 {
  margin-top: 0;
  color: var(--epson-foreground);
}

/* Tables inside panels */
.epson-tab-panel table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.epson-tab-panel table th {
  text-align: left;
  font-weight: 700;
  padding: 10px 12px;
  background: rgba(14,165,164,0.03);
}
.epson-tab-panel table td {
  padding: 10px 12px;
  border-top: 1px solid rgba(13,16,21,0.04);
}

/* Buttons inside panels */
.epson-tab-panel a.button,
.epson-tab-panel .button {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--epson-accent);
  color: #fff;
  border: none;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--epson-transition), box-shadow var(--epson-transition);
}
.epson-tab-panel a.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6,182,212,0.12);
}

/* Responsive */
@media (max-width: 720px) {
  .epson-tabs-wrapper { padding: 0.5rem; }
  .epson-tab-item a { padding: 8px 14px; font-size: 0.9rem; }
  .epson-tab-panel { padding: 18px; }
}

/* Print-friendly */
@media print {
  .epson-tabs-wrapper, .epson-tabs-list { box-shadow: none; }
}

/* Downloads */
.epson-downloads-accordion .epson-download-category {
    margin-bottom: 10px;
    overflow: hidden;
}

.epson-accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    color: #333;
    cursor: pointer;
    padding: 10px 15px;
    text-align: left;
    width: 100%;
    outline: none;
    font-weight: bold;
    font-size: 14px;
    border-top: none!important;
    border-left: none!important;
    border-right: none!important;
    border-bottom: 1px solid #eee!important;
    transition: background 0.3s ease;
}
.epson-accordion-button:focus,
.epson-accordion-button:hover{
    background-color: transparent!important;
    color: #333;
}

.epson-accordion-button svg{
    width: 16px;
    height: 16px;
    line-height: 0;
}

.epson-accordion-content {
    display: none;
    background-color: #fff;
}

.epson-accordion-content ul {
    margin: 0;
    padding-left: 0;
}

.epson-accordion-content ul li.epson-download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.epson-download-item .download-title {
    flex: 1;
    font-weight: 500;
}

.epson-download-item .download-filename {
    margin: 0 10px;
    color: #555;
}

.epson-download-item .download-button {
    background-color: #2346b4;
    color: #fff;
    padding: 4px 10px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s ease;
}

.epson-download-item .download-button:hover {
    background-color: #2346b4;
    color: #fff;
}


/* WYSIWYG Typography */
/* Epson WYSIWYG Tabs Typography */
.epson-tab-panel {
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.epson-tab-panel p {
    margin-bottom: 1em;
    font-size: 15px;
    line-height: 1.7;
}

.epson-tab-panel h1,
.epson-tab-panel h2,
.epson-tab-panel h3,
.epson-tab-panel h4,
.epson-tab-panel h5,
.epson-tab-panel h6 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
}

.epson-tab-panel h1 { font-size: 24px; }
.epson-tab-panel h2 { font-size: 22px; }
.epson-tab-panel h3 { font-size: 20px; }
.epson-tab-panel h4 { font-size: 18px; }
.epson-tab-panel h5 { font-size: 16px; }
.epson-tab-panel h6 { font-size: 15px; }

.epson-tab-panel ul,
.epson-tab-panel ol {
    padding: 10px 15px;
}

.epson-tab-panel li {
    margin-bottom: 0.5em;
}

.epson-tab-panel a {
    color: #0071a1;
    text-decoration: underline;
}

.epson-tab-panel a:hover {
    color: #005577;
    text-decoration: none;
}

.epson-tab-panel strong,
.epson-tab-panel b {
    font-weight: 600;
}

.epson-tab-panel em,
.epson-tab-panel i {
    font-style: italic;
}

.epson-tab-panel blockquote {
    border-left: 4px solid #ddd;
    margin: 1em 0;
    padding-left: 15px;
    color: #555;
    font-style: italic;
}

.epson-tab-panel table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

.epson-tab-panel table th,
.epson-tab-panel table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.epson-tab-panel table th {
    background-color: #f7f7f7;
    font-weight: 600;
}


/* Printer Selector */

.epson-selector { 
    padding:25px; 
    border-radius:12px; 
    font-family:Poppins;
    color:#222; 
}
.selector-grid { 
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); 
    gap:15px ;
}
.selector-step label { 
    font-weight:600;
}
#find-printer { 
    width:100%; 
    margin-top:15px; 
    background:#FF4500; 
    color:#fff; 
    padding:12px; 
    border:none 
}
#printer-result { 
    margin-top:25px;  
    padding:20px; 
    border-radius:10px; 
}
.selector-btn { 
    font-weight:700; 
    color:#FF4500;
}

.printer-result-inner{
    display: flex;
}
#printer-result img { border-radius:8px; }


/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    font-family: 'Poppins', sans-serif;
}

.industry-item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: #fff;
    overflow: hidden;
    border-radius: 16px;
}
.industry-item:hover{
    color: #fff;
}
.industry-item::before {
    content: "";
    position: absolute;
    background-image: linear-gradient(360deg, #000, transparent);
    inset: 0;
    z-index: 1;
}

.industry-content {
    position: relative;
    z-index: 2;
    transform: translateY(120px);
    transition: all ease-in-out 250ms;
}
.industry-item:hover .industry-content{
    transform: translateY(0);
}


.industry-title a {
    color: #fff;
    text-decoration: none;
}
.industry-item .industry-arrow{
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    background-color: #fd4401;
    border-radius: 99px;
}

.industry-item .industry-arrow svg{
    width: 26px;
    height: 26px;
    line-height: 0;
}

.industry-item .industry-title{
    font-size: 19px;
    font-weight: 500;
    color: #FFFFFF;
}

.industry-item .industry-excerpt{
    font-size: 14px;
    font-weight: 200;
    color: #FFFFFF;
    height: 70px;
}
    

/* Header */
#cw-header:hover{
   background: white;
}
#cw-header.is-hovered {
  background: white;
}
#cw-header.scrolled{
     background: white;
}


/* Custom Filters */
/* Takealot-like category filter styles */
.s1-filters{
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #f7f4fb;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 1009;
    transform: translate(-100%);
    transition: all ease-in-out 250ms ;
    padding: 20px;
}
.s1-filters.active{
    transform: translate(0);
}

.s1-mobile-filters-top{
    display: flex;
    justify-content: center;
    padding-block: 10px;
}
.s1-mobile-filters-top h3{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.925rem;
}
.mobile-filter-btn-wrap{
    width: 50%;
}

.mobile-filter-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #fff;
    border: none;
    height: 100%;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
.mobile-filter-btn svg{
    width: 16px;
    height: 16px;
    line-height: 0;
}
.mobile-filter-close-btn{
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 0;
        font-size: 2em;
}
.mobile-filter-close-btn svg{
    width: 18px;
    height: 18px;
}
.s1-products-top{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}
.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering{
    float: none;
    margin: 0;
    width: 50%;
}
.products-count{
    display: none;
}


.s1-filters-wrap{
    color: #222;
    max-width: 100%;
     background: #ffffff;
        border: 1px solid #eaedf0;
        border-radius: 8px;
}
.tl-cat-filter {
    color: #222;
    max-width: 100%;
     background: #ffffff;
        border: 1px solid #eaedf0;
        border-radius: 8px;
}

/* small-screen adjustments */
@media (min-width: 55em) {
    .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering{
        width: auto;
    }
    .s1-mobile-filters-top{
        display: none;
    }
    .s1-filters{
        background-color: transparent;
        position: relative;
        top: auto;
        left: auto;
        z-index: 1;
        transform: translate(0);
        height: auto;
        width: auto;
        padding: 0;
    }
    .mobile-filter-close-btn,
    .mobile-filter-btn-wrap{
        display: none;
    }
    .products-count{
        display: flex;
    }
    .s1-filters-wrap{
        background: #ffffff;
        border: 1px solid #eaedf0;
        border-radius: 8px;
        color: #222;
        box-shadow: 0 1px 2px rgba(18,24,33,0.03);
        max-width: 320px;
    }
    .tl-cat-filter {
        background: #ffffff;
        border: 1px solid #eaedf0;
        border-radius: 8px;
        color: #222;
        box-shadow: 0 1px 2px rgba(18,24,33,0.03);
        max-width: 320px;
    }
}

.filter-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f7f4fb;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.2px;
}

.tl-filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f7f4fb;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #4d4d4f;
    letter-spacing: 0.2px;
}

.tl-cat-filter-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.2px;
}

.tl-cat-filter-back {
    font-size: 16px;
    font-weight: 600;
    color: #234159;
    text-decoration: none;
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    align-items: center;
}

.tl-cat-filter-back svg{
    width: 18px;
    height: 18px;
    line-height: 0;
}

/* list */
.tl-cat-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 320px;
    overflow: auto;
    font-family: 'Poppins', sans-serif;
}

/* item */
.tl-cat-item {
    border-radius: 6px;
}

.tl-cat-item a {
    display: block;
    padding: 10px 12px;
    color: #262626;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
    font-size: 14px;
    line-height: 1.2;
}

/* hover/active states */
.tl-cat-item a:hover {
    background: #23415912;
    color: #234159;
}

.tl-cat-active a {
    background: #f7f4fb;
    border-left-color: #234159;
    color: #234159;
    font-weight: 700;
}

/* small-screen adjustments */
@media (max-width: 55em) {
    .tl-cat-filter {
        max-width: 100%;
        padding: 10px;
    }
    .tl-cat-filter-list {
        max-height: 220px;
    }
}

/* thin custom scrollbar for WebKit */
.tl-cat-filter-list::-webkit-scrollbar {
    width: 4px;
}
.tl-cat-filter-list::-webkit-scrollbar-track {
    background: transparent;
}
.tl-cat-filter-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* Takealot-style stock filter */
.tl-stock-filter { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.tl-stock-checkbox { display:inline-flex; align-items:center; gap:8px; background:transparent; padding:6px 8px; border-radius:6px; cursor:pointer; user-select:none; border:1px solid transparent; transition:background .12s, border-color .12s; }
.tl-stock-checkbox input[type="checkbox"] { width:16px; height:16px; accent-color:#234159; }
.tl-stock-checkbox:hover { background:#f7f4fb; border-color: rgba(100,68,195,0.08); }
.tl-stock-checkbox input[type="checkbox"]:checked + .tl-stock-label { font-weight:700; color:#234159; }
.tl-stock-label { font-size:14px; color:#333; }

/* small screens */
@media (max-width:480px){
  .tl-stock-filter { gap:8px; }
  .tl-stock-checkbox { padding:8px; }
}


/* Brand filter container — limit height and allow scroll */
.tl-brand-filter {
    display: flex;
    flex-direction: column;
    max-height: 220px;
    overflow-y: auto;
}

.tl-brand-checkbox{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    padding-left: 20px;
    color: #262626;
    cursor: pointer;
    border-left: 2px solid transparent;
}
.tl-category-label{
    font-size: 0.825rem;
}
/* hover/active states */
.tl-brand-checkbox:hover {
    background: #23415912;
    color: #234159;
}

/* Preferred: use :has() to style the label when its checkbox is checked (modern browsers) */
.tl-brand-checkbox:has(input[type="checkbox"]:checked) {
    border-left: 2px solid;
    border-color: #234159;
    background: #23415912;
}

/* Fallback for browsers without :has(): style the adjacent label text to give similar visual feedback */
.tl-brand-checkbox input[type="checkbox"]:checked + .tl-brand-label {
    color: #234159;
    font-weight: 700;
}
.tl-brand-label{
    color: #262626;
    font-size: 14px;
    line-height: 1.2;
}
    

/* scrollbar for brands */
.tl-brand-filter::-webkit-scrollbar {
    width: 4px;
}
.tl-brand-filter::-webkit-scrollbar-track {
    background: transparent;
}
.tl-brand-filter::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 6px;
}

/* ensure brand checkboxes wrap nicely on small screens */
@media (max-width: 480px) {
    .tl-brand-filter { max-height: 160px; gap:6px; }
}

.tl-filter-content {
    display: none;
    transition: max-height 0.3s ease;
}
.tl-filter-wrap.active .tl-filter-content {
    display: block;
}
.tl-filter-title {
    cursor: pointer;
}

.s1-box-shadow{
    box-shadow: 0 2px 2px 0 rgba(77, 77, 79, 0.08), 0 0 2px 0 rgba(77, 77, 79, 0.16);
}

.wcps-open-btn.black{
    color: #000;
}

.wcps-open-btn.white{
    color: #fff;
}

/* Products */
.cw-products .cw-product .attachment-woocommerce_thumbnail {
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 10px;
}

.cw-products .cw-product .button.product_type_simple{
    display: none!important;
}

/* Partner Menu */
.wp-parent-toggle-menu .partner-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: "Poppins", Sans-serif;
}

.wp-parent-toggle-menu .partner-menu > li {
    position: relative;
}

.wp-parent-toggle-menu .partner-menu li.menu-item-has-children > .sub-menu {
    display: none !important;
    list-style: none;
    margin: 0;
    padding-left: 15px;
    right: 0;
    left: auto;
}

.wp-parent-toggle-menu .partner-menu li.menu-item-has-children > a {
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
}
.wp-parent-toggle-menu .partner-menu li.menu-item-has-children{
    padding: 5px 10px;
    padding-bottom: 10px;
}
.wp-parent-toggle-menu .partner-menu li.menu-item-has-children.active {
    background-color: #fff;
}
.wp-parent-toggle-menu .partner-menu li.menu-item-has-children.active > a{
    color: #000;
}

.wp-parent-toggle-menu .partner-menu li.menu-item-has-children.active > .sub-menu {
    display: block !important;
    padding: 8px 4px;
    min-width: 130px;
}

.wp-parent-toggle-menu .partner-menu li.menu-item-has-children > .sub-menu li a{
    padding: 8px 16px;
    font-size: 12px;
} 
.wp-parent-toggle-menu .partner-menu li.menu-item-has-children > .sub-menu li a:hover{
    text-decoration: underline;
}

/* Inline SVG chevron */
.wp-parent-toggle-menu .partner-menu li.menu-item-has-children > a .chevron-svg {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    fill: currentColor;
}

/* Rotate SVG when active */
.wp-parent-toggle-menu .partner-menu li.menu-item-has-children.active > a .chevron-svg {
    transform: rotate(180deg);
}


/* Search Bar*/
.product-searchbar-form {
    width: 100%;
    margin: 0 auto;
}
.product-searchbar-input-wrap {
    width: 100%;
}
.product-searchbar-form .product-searchbar-input {
    box-sizing: border-box;
    padding-left:38px; 
    width:100%; 
    height:50px; 
    border-radius:99px; 
    border:1px solid #eee; 
    font-size:1em;
    background-color: #f2f6f7;
}
.product-searchbar-icon {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Industries Menu */
.industries-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    font-family: 'Poppins', sans-serif;
}

.industry-menu-item {
    position: relative;
    display: flex;
    color: #fff;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 16px;
}

.industry-menu-item .industry-menu-content{
    padding: 5px 15px;
}

.industry-menu-item .industry-menu-item-bg{
    width: 50%;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.industry-menu-item .industry-arrow{
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    background-color: #fd4401;
    border-radius: 99px;
}

.industry-menu-item .industry-arrow svg{
    width: 26px;
    height: 26px;
    line-height: 0;
}

.industry-menu-item .industry-title{
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.industry-menu-item .industry-excerpt{
    font-size: 10px;
    font-weight: 300;
    color: #000;
}

.wp-block-separator{
    margin-block: 20px!important;
    color: #eeee;
    border-width: 1px;
}
.support-content a{
    color: #fa9b36;
}

/* Downloads archive: denser card grid for many items */

.ct-downloads-archive {
    margin: 0 auto;
    font-family: "Poppins", Sans-serif;
    color: #222;
}

.ct-downloads-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.ct-search-wrap { flex: 1 1 360px; }
.ct-downloads-search-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    font-size: 15px;
}

.ct-filters-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ct-filter {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    background: #fff;
}

/* Cards grid */
.ct-downloads-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

/* Card */
.ct-download-card {
    background: #fff;
    border: 1px solid #eef1f3;
    border-radius: 12px;
    padding: 14px;
    transition: transform .12s ease, box-shadow .12s ease;
    display: flex;
    flex-direction: column;
    min-height: 140px;
}


.ct-card-meta { display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.ct-file-type {
    min-width:44px;
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:#f4f9ff;
    color:#0073aa;
    font-weight:700;
    font-size:14px;
    border:1px solid #e6f0fb;
}

/* Title */
.ct-download-title {
    margin: 6px 0 8px 0;
    font-size: 15px;
    line-height:1.2;
    color:#09233b;
}

/* File / size */
.ct-download-filename {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

/* Products */
.ct-linked-products {
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
}
.ct-linked-product { color:#2349b8; text-decoration:none; }
.ct-linked-product:hover { text-decoration:underline; }
.ct-more { color:#555; font-weight:600; margin-left:6px; }

/* Actions */
.ct-download-actions { margin-top:auto; }
.ct-download-button {
    display:inline-block;
    padding:8px 12px;
    background:#2349b8;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}
.ct-download-button:hover { background:#2349b8;color: #fff; }

/* Pagination */
.ct-pager { display:flex; gap:8px; align-items:center; justify-content:center; margin-top:22px; flex-wrap:wrap; }
.ct-page-btn {
    border:1px solid #dcdcdc;
    background:#fff;
    padding:8px 10px;
    border-radius:8px;
    cursor:pointer;
}
.ct-page-btn.active { background:#0073aa; color:#fff; border-color:#0073aa; }
.ct-page-btn.disabled { opacity:.45; cursor:default; }
.ct-dots { padding:0 6px; color:#888; }

/* Helpers */
.ct-loading, .ct-no-results, .ct-error { text-align:center; padding:20px; color:#666; font-style:italic; }

/* Search */
.universal-search-form{
    display: flex;
    gap: 10px;
    font-family: "Poppins", Sans-serif;
}

.universal-search-form button{
    background-color: #fd500d;
    border: none;
    color: #fff;
    border-radius: 99px;
    font-family: "Poppins", Sans-serif;
}
.universal-search-form input[type="search"]{
    border-radius: 99px;
    border: 1px solid #ccc;
}
.universal-search-form button:focus,
.universal-search-form button:hover{
    background-color: #fd500d;
    border: none;
    color: #fff;
}

.search-posts .elementor-post__thumbnail{
    border-radius: 8px;
    overflow: hidden;
}
.search-posts article{
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 10px!important;
}

/* Support List */
/* Container for the support list */
.support-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Each support item */
.support-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.support-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* The link wrapping each item */
.support-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
}

/* Icon container */
.support-icon {
    flex: 0 0 40px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG styling */
.support-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0073e6; /* Change to your accent color */
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.support-item:hover .support-icon svg {
    transform: translateX(5px);
    stroke: #005bb5; /* Hover color */
}

/* Content wrapper */
.support-content {
    flex: 1;
}

/* Title */
.support-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

/* Paragraph text */
.support-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Responsive: stack icon above text on small screens */
@media (max-width: 600px) {
    .support-link {
        flex-direction: column;
        align-items: flex-start;
    }
    .support-icon {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}