/* ==========================================================
   1. Global Styles (body, headings, links)
   ========================================================== */
   /* Change global site font */
body, h1, h2, h3, h4, h5, h6, .tabs li a, ul.mobile-menu li a, .main-navigation ul, ul.primary-menu li a {
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-weight:500;
    text-transform: none;
      
  }

ul.footer-menu li a, .site-info, .newsletter label {  
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    text-transform: none;
    color: #e6e6e6;
    font-size: 14px;
  }

  .tabs li a { 
    font-size: 15px;
   
  }

  .site { 
    background-color: #fff;
  }

  body.page-template-full .content-area, body.page-template-full-widget .content-area, body.post-type-archive-products .content-area, body.tax-department .content-area, body.page-template-options .content-area, body.page-template-reps .content-area, body.page-template-dealers .content-area { 
    padding-top: 0px;
  }

/* ==========================================================
   2. Header & Navigation
   ========================================================== */

   .site-header {
    display: flex;                      /* horizontal layout */
    justify-content: space-between;     /* logo left, menu right */
    align-items: center;                /* vertical alignment */
    max-width: 1300px;                  /* constrain header width */
    margin: 0 auto;                     /* center header on page */
    padding: 0 20px;                    /* optional horizontal padding */
}

.site-branding {
    order: 1;  
    border-bottom: none;                         /* logo stays left */
}

.main-navigation {
    width: 100%;
    order: 2;                           /* menu stays right */
}

/* Space out menu links */
.main-navigation .primary-menu > li {
    margin-left: 25px;                  /* space between each menu item */
}

.main-navigation .primary-menu > li:first-child {
    margin-left: 0;                     /* no extra space on first link */
}

ul.primary-menu {
    display: flex;
    justify-content: flex-end;
}

ul.primary-menu li a { 
    font-size: 14px;
}

.site-content { 
    max-width: 1300px;
}

/* ==========================================================
   3. Homepage
   ========================================================== */

/* ==========================================================
   4. Taxonomy Department
   ========================================================== */

/* Centered header for department pages */
.centered-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e1e1e1;
    padding: 40px 0;
}

.centered-header .page-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

/* Child category links styling */
.child-category-links {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.child-category-link {
    display: inline-block;
    padding: 8px 20px;
    background: #f7f6f3;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #eae9e4;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.child-category-link:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-2px);
}

/* Active state for current category */
.child-category-link.active {
    background: #333;
    color: white;
    border-color: #333;
}

/* Parent link styling (back to main category) */
.child-category-link.parent-link {
    background: #f7f6f3;
    border: 2px solid #eae9e4;
    color: #333;
    font-weight: 400;
}

.child-category-link.parent-link:hover {
    background: #333;
    color: white;
    border-color: #333;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .centered-header .page-title {
        font-size: 28px;
    }
    
    .child-category-links {
        gap: 10px;
    }
    
    .child-category-link {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    /* Hide primary menu on mobile */
    ul.primary-menu {
        display: none;
    }
}
/* Product grid styling */
.my-products {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: -15px;
}

/* Center the product grid when it has the 'clear' class */
.my-products.clear {
    margin: -15px auto;
    max-width: 1300px;
    justify-content: center;
}
.my-products li {
    width: calc(25% - 30px); /* 4 items per row */
    margin: 15px;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    transition: transform 0.2s ease;
    max-width: 300px;
}
.my-products li:hover {
    transform: scale(1.03);
}
.my-products img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    transition: transform 0.2s ease;
}
@media (max-width: 1024px) {
    .my-products li {
        width: calc(33.333% - 30px); /* 3 items per row */
    }
    .my-products img {
        height: 180px; /* Slightly smaller for tablet */
    }
}
@media (max-width: 768px) {
    .my-products li {
        width: calc(50% - 30px); /* 2 items per row */
    }
    .my-products img {
        height: 160px; /* Smaller for mobile landscape */
    }
}
@media (max-width: 480px) {
    .my-products li {
        width: 100%; /* 1 per row */
    }
    .my-products img {
        height: 220px; /* Larger for single column mobile */
    }
}

/* ==========================================================
   5. Single Product 
   ========================================================== */
ul.document-links { 
    list-style-type: none;
}
   
.product-info-container .description-content { 
    font-weight: 400;
   }
/* Request Quote Button (Hospitality) */
.request-quote-container {
    margin-top: 25px;
    margin-bottom: 20px;
}

.request-quote-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #2c5aa0;
}

.request-quote-btn:hover {
    background: white;
    color: #2c5aa0;
    border-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

/* Buy From Retailer Button (Residential) */
.retailer-button-container {
    margin-top: 25px;
    margin-bottom: 20px;
}

.retailer-btn {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #28a745;
}

.retailer-btn:hover {
    background: white;
    color: #28a745;
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

/* Main Product Layout - Image and Info Side by Side */
.product-main-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

/* Main Product Image to keep same size */
.product-gallery-thumb { 
    aspect-ratio: 4 / 3;
    display: flex;
}

.product-gallery-container {
    flex: 1;
    max-width: 65%;
}

.product-info-container {
    flex: 1;
    max-width: 35%;
    padding-left: 20px;
    margin-top: 30px
}

/* Product Title */
.product-info-container .entry-title {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

/* SKU Number */
.sku-number {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Description Content in Right Panel */
.product-info-container .description-content {
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.product-info-container .description-content p {
    margin-bottom: 15px;
}

.product-info-container .description-content p:last-child {
    margin-bottom: 0;
}

/* Product Details Below (Tabs, Diagrams, etc.) */
.product-details-below {
    clear: both;
    margin-top: 40px;
    padding-bottom: 40px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {

    .site-header { 
        display: block;

    }
      
    
    .product-main-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-gallery-container,
    .product-info-container {
        max-width: 100%;
        flex: none;
    }
    
    .product-info-container {
        padding-left: 0;
    }
    
    .product-info-container .entry-title {
        font-size: 24px;
    }
}

/* Gallery thumbnail styles */
.gallery-thumb {
    border: 2px solid transparent;
    display: block;
    transition: border-color 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #333;
}

/* Diagrams and PDFs section */
.diagrams-pdfs-section {
    margin: 40px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.diagrams-pdfs-section h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #333;
}

.diagrams-pdfs-section h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #555;
}

.diagram-container,
.pdf-links-container {
    margin-bottom: 25px;
}

/* Diagram Images Grid */
.diagram-images-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.diagram-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
    text-align: center;
}

.diagram-item a {
    display: block;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    background: white;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.diagram-item a:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.diagram-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.diagram-label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-top: 8px;
}

/* Responsive diagram grid */
@media (max-width: 768px) {
    .diagram-item {
        flex: 1 1 100%;
    }
}

.pdf-link {
    display: inline-block;
    padding: 10px 15px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px 5px 5px 0;
    transition: background-color 0.3s ease;
}

.pdf-link:hover {
    background: #555;
    color: white;
}

.pdf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdf-list li {
    margin-bottom: 10px;
}

/* Alt Images section */
.alt-images-section {
    margin: 40px 0;
    padding: 20px;
}

.alt-images-section h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #333;
}

.alt-images-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.alt-image-item {
    flex: 1 1 calc(25% - 12px);
    min-width: 150px;
}

.alt-image-item img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.alt-image-item a:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .alt-image-item {
        flex: 1 1 calc(50% - 8px);
    }
}

.my-products li h3 { 
    font-size: 15px;
    margin-top: 10px;
}

/* ==========================================================
   6. Archive Products
   ========================================================== */
   /* Hide breadcrumb on archive products, single products, and taxonomy department pages */
   .post-type-archive-products .breadcrumb-share, .single-products .breadcrumb-share, .tax-department .breadcrumb-share{ 
    display: none;
   }

/* ==========================================================
   7. Footer
   ========================================================== */
.copyright { 
    padding-top: 20px;
}

.footer-wrapper { 
    padding: 30px 0;
}

.site-info { 
    padding-bottom: 0px;
    padding: 0px;
}

.site-footer { 
    background-color: #272727;
    padding-top: 30px;
}

/* ==========================================================
   8. Media Queries / Responsive
   ========================================================== *


/* ==========================================================
   8. Mega Menu
   ========================================================== * / 

/* ==========================================================
   8. Contact Form
   ========================================================== *
/* Form wrapper */
.form-wrapper {
    max-width: 800px;
    padding: 25px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
  }
  
  /* Two-column layout */
  .form-row {
    display: flex;
    flex-wrap: wrap; /* makes it mobile responsive */
  }
  
  .form-col {
      margin-right: 10px;
    flex: 1;
    min-width: 250px; /* stack on smaller screens */
  }
  
  /* Labels */
  .custom-request-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
  }
  
  /* Inputs */
  .custom-request-form input[type="text"],
  .custom-request-form input[type="email"],
  .custom-request-form input[type="number"],
  .custom-request-form textarea,
  .custom-request-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
  }
  
  /* Textarea */
  .custom-request-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Submit button */
  .custom-request-form input[type="submit"] {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .custom-request-form input[type="submit"]:hover {
    background: #005f8d;
  }
  
  input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"] { 
      width: 100%;
  }

  body, button, input, select, textarea { 
    padding: 4px 0;
  }
  

 
/* ==========================================================
   8. Contact Form
   ========================================================== *
/* Form wrapper */
.form-wrapper {
    max-width: 800px;
    padding: 25px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
  }
  
  /* Two-column layout */
  .form-row {
    display: flex;
    flex-wrap: wrap; /* makes it mobile responsive */
  }
  
  .form-col {
      margin-right: 10px;
    flex: 1;
    min-width: 250px; /* stack on smaller screens */
  }
  
  /* Labels */
  .custom-request-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
  }
  
  /* Inputs */
  .custom-request-form input[type="text"],
  .custom-request-form input[type="email"],
  .custom-request-form input[type="number"],
  .custom-request-form textarea,
  .custom-request-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
  }
  
  /* Textarea */
  .custom-request-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Submit button */
  .custom-request-form input[type="submit"] {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .custom-request-form input[type="submit"]:hover {
    background: #005f8d;
  }
  
  input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"] { 
      width: 100%;
  }

  body, button, input, select, textarea { 
    padding: 4px 0;
  }
  

/* ==========================================================
   2. Header & Navigation
   ========================================================== */

   .site-header {
    display: flex;                      /* horizontal layout */
    justify-content: space-between;     /* logo left, menu right */
    align-items: center;                /* vertical alignment */
    max-width: 1300px;                  /* constrain header width */
    margin: 0 auto;                     /* center header on page */
    padding: 0 20px;                    /* optional horizontal padding */
}

.site-branding {
    order: 1;  
    border-bottom: none;                         /* logo stays left */
}

.main-navigation {
    width: 100%;
    order: 2;                           /* menu stays right */
}

/* Space out menu links */
.main-navigation .primary-menu > li {
    margin-left: 25px;                  /* space between each menu item */
}

.main-navigation .primary-menu > li:first-child {
    margin-left: 0;                     /* no extra space on first link */
}

ul.primary-menu {
    display: flex;
    justify-content: flex-end;
}

ul.primary-menu li a { 
    font-size: 14px;
}

.site-content { 
    max-width: 1300px;
}

/* ==========================================================
   3. Homepage
   ========================================================== */

/* ==========================================================
   4. Taxonomy Department
   ========================================================== */

/* Centered header for department pages */
.centered-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e1e1e1;
    padding: 40px 0;
}

.centered-header .page-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

/* Child category links styling */
.child-category-links {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.child-category-link {
    display: inline-block;
    padding: 8px 20px;
    background: #f7f6f3;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #eae9e4;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.child-category-link:hover {
    background: #333;
    color: white;
    border-color: #333;
    transform: translateY(-2px);
}

/* Active state for current category */
.child-category-link.active {
    background: #333;
    color: white;
    border-color: #333;
}

/* Parent link styling (back to main category) */
.child-category-link.parent-link {
    background: #f7f6f3;
    border: 2px solid #eae9e4;
    color: #333;
    font-weight: 400;
}

.child-category-link.parent-link:hover {
    background: #333;
    color: white;
    border-color: #333;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .centered-header .page-title {
        font-size: 28px;
    }
    
    .child-category-links {
        gap: 10px;
    }
    
    .child-category-link {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    /* Hide primary menu on mobile */
    ul.primary-menu {
        display: none;
    }
}
/* Product grid styling */
.my-products {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: -15px;
}

/* Center the product grid when it has the 'clear' class */
.my-products.clear {
    margin: -15px auto;
    max-width: 1300px;
    justify-content: center;
}
.my-products li {
    width: calc(25% - 30px); /* 4 items per row */
    margin: 15px;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    transition: transform 0.2s ease;
    max-width: 300px;
}
.my-products li:hover {
    transform: scale(1.03);
}
.my-products img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
    transition: transform 0.2s ease;
}
@media (max-width: 1024px) {
    .my-products li {
        width: calc(33.333% - 30px); /* 3 items per row */
    }
    .my-products img {
        height: 180px; /* Slightly smaller for tablet */
    }
}
@media (max-width: 768px) {
    .my-products li {
        width: calc(50% - 30px); /* 2 items per row */
    }
    .my-products img {
        height: 160px; /* Smaller for mobile landscape */
    }
}
@media (max-width: 480px) {
    .my-products li {
        width: 100%; /* 1 per row */
    }
    .my-products img {
        height: 220px; /* Larger for single column mobile */
    }
}

/* ==========================================================
   5. Single Product 
   ========================================================== */
ul.document-links { 
    list-style-type: none;
}
   
.product-info-container .description-content { 
    font-weight: 400;
   }
/* Request Quote Button (Hospitality) */
.request-quote-container {
    margin-top: 25px;
    margin-bottom: 20px;
}

.request-quote-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #2c5aa0;
}

.request-quote-btn:hover {
    background: white;
    color: #2c5aa0;
    border-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

/* Buy From Retailer Button (Residential) */
.retailer-button-container {
    margin-top: 25px;
    margin-bottom: 20px;
}

.retailer-btn {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #28a745;
}

.retailer-btn:hover {
    background: white;
    color: #28a745;
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

/* Main Product Layout - Image and Info Side by Side */
.product-main-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

/* Main Product Image to keep same size */
.product-gallery-thumb { 
    aspect-ratio: 4 / 3;
    display: flex;
}

.product-gallery-container {
    flex: 1;
    max-width: 65%;
}

.product-info-container {
    flex: 1;
    max-width: 35%;
    padding-left: 20px;
    margin-top: 30px
}

/* Product Title */
.product-info-container .entry-title {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

/* SKU Number */
.sku-number {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Description Content in Right Panel */
.product-info-container .description-content {
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.product-info-container .description-content p {
    margin-bottom: 15px;
}

.product-info-container .description-content p:last-child {
    margin-bottom: 0;
}

/* Product Details Below (Tabs, Diagrams, etc.) */
.product-details-below {
    clear: both;
    margin-top: 40px;
    padding-bottom: 40px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {

    .site-header { 
        display: block;

    }
      
    
    .product-main-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-gallery-container,
    .product-info-container {
        max-width: 100%;
        flex: none;
    }
    
    .product-info-container {
        padding-left: 0;
    }
    
    .product-info-container .entry-title {
        font-size: 24px;
    }
}

/* Gallery thumbnail styles */
.gallery-thumb {
    border: 2px solid transparent;
    display: block;
    transition: border-color 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #333;
}

/* Diagrams and PDFs section */
.diagrams-pdfs-section {
    margin: 40px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.diagrams-pdfs-section h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #333;
}

.diagrams-pdfs-section h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #555;
}

.diagram-container,
.pdf-links-container {
    margin-bottom: 25px;
}

/* Diagram Images Grid */
.diagram-images-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.diagram-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
    text-align: center;
}

.diagram-item a {
    display: block;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    background: white;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.diagram-item a:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.diagram-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.diagram-label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin-top: 8px;
}

/* Responsive diagram grid */
@media (max-width: 768px) {
    .diagram-item {
        flex: 1 1 100%;
    }
}

.pdf-link {
    display: inline-block;
    padding: 10px 15px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px 5px 5px 0;
    transition: background-color 0.3s ease;
    font-weight: 400;
}

.pdf-link:hover {
    background: #555;
    color: white;
}

.pdf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdf-list li {
    margin-bottom: 10px;
}

/* Alt Images section */
.alt-images-section {
    margin: 40px 0;
    padding: 20px;
}

.alt-images-section h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #333;
}

.alt-images-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.alt-image-item {
    flex: 1 1 calc(25% - 12px);
    min-width: 150px;
}

.alt-image-item img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.alt-image-item a:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .alt-image-item {
        flex: 1 1 calc(50% - 8px);
    }
}

.my-products li h3 { 
    font-size: 15px;
    margin-top: 10px;
}

/* ==========================================================
   6. Archive Products
   ========================================================== */
   /* Hide breadcrumb on archive products, single products, and taxonomy department pages */
   .post-type-archive-products .breadcrumb-share, .single-products .breadcrumb-share, .tax-department .breadcrumb-share{ 
    display: none;
   }

/* ==========================================================
   7. Footer
   ========================================================== */
.copyright { 
    padding-top: 20px;
}

.footer-wrapper { 
    padding: 30px 0;
}

.site-info { 
    padding-bottom: 0px;
    padding: 0px;
}

.site-footer { 
    background-color: #272727;
    padding-top: 30px;
}

/* ==========================================================
   8. Media Queries / Responsive
   ========================================================== *


/* ==========================================================
   8. Contact Form
   ========================================================== *
/* Form wrapper */
.form-wrapper {
    max-width: 800px;
    padding: 25px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
  }
  
  /* Two-column layout */
  .form-row {
    display: flex;
    flex-wrap: wrap; /* makes it mobile responsive */
  }
  
  .form-col {
      margin-right: 10px;
    flex: 1;
    min-width: 250px; /* stack on smaller screens */
  }
  
  /* Labels */
  .custom-request-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
  }
  
  /* Inputs */
  .custom-request-form input[type="text"],
  .custom-request-form input[type="email"],
  .custom-request-form input[type="number"],
  .custom-request-form textarea,
  .custom-request-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
  }
  
  /* Textarea */
  .custom-request-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Submit button */
  .custom-request-form input[type="submit"] {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .custom-request-form input[type="submit"]:hover {
    background: #005f8d;
  }
  
  input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"] { 
      width: 100%;
  }

  body, button, input, select, textarea { 
    padding: 4px 0;
  }

/* ==========================================================
   9. Logo Sizing
   ========================================================== */

/* Make logo slightly smaller on larger screens */
@media (min-width: 769px) {
    .site-title {
        width: 110px !important; /* Reduced from 86px */
    }
    
    .site-title a {
        height: 40x !important; /* Reduced from 35px */
        background-size: auto 50px !important; /* Reduced from 35px */
    }
}

/* ==========================================================
   11. View All Options Button (Residential Only)
   ========================================================== */

/* View All Options Button (Residential Products Only) */
.view-all-options-container {
    margin: 20px 0;
}

.view-all-options-btn {
    display: inline-block;
    background: #6c757d;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #6c757d;
}

.view-all-options-btn:hover {
    background: white;
    color: #6c757d;
    border-color: #6c757d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

/* ==========================================================
   12. Color Options Grid
   ========================================================== */

/* Color Options Grid Layout */
.color-option-group {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: -10px;
    gap: 0;
}

.color-option-item {
    flex: 0 0 calc(16.666% - 20px); /* 6 items per row */
    margin: 10px;
    text-align: center;
    padding: 15px;
   
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.color-option-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #333;
}

.color-option-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
    display: block;
}

.color-option-item span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .color-option-item {
        flex: 0 0 calc(25% - 20px); /* 4 per row on tablet */
    }
}

@media (max-width: 768px) {
    .color-option-item {
        flex: 0 0 calc(33.333% - 20px); /* 3 per row on mobile */
    }
}

@media (max-width: 480px) {
    .color-option-item {
        flex: 0 0 calc(50% - 20px); /* 2 per row on small mobile */
    }
    
    .color-option-group {
        margin: 0;
    }
}

/* ==========================================================
   13. Case Study 
   ========================================================== */

   /* Full-width photo */
.case-study-full-photo img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}

/* Two-column layout */
.case-study-two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.case-study-left, .case-study-right {
    flex: 1;
    min-width: 250px;
}

/* Gallery spacing */
.case-study-gallery img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* CTA Section */
.case-study-cta {
    text-align: center;
    padding: 3rem 1rem;
    background: #f4f4f4;
}

.case-study-cta h2 {
    font-size: 28px;
    margin-bottom: 1rem;
}

.case-study-cta a.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.case-study-cta a.btn:hover {
    background: #005f8d;
}

/* Responsive */
@media (max-width: 768px) {
    .case-study-two-columns {
        flex-direction: column;
    }
}
