/* ==========================================================
   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;
  }
.page .site-content { 
    max-width: 100%;
    padding: 0;
}

h1.entry-title { 
    display: none;
}

/* ==========================================================
   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 */
}

@media screen and (min-width: 960px) { 
    .site-title a {
        background-size: auto 50px;
    }
}

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

@media screen and (min-width: 768px) {
    .site-branding { 
        height: 80px;
    }
}

.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;
}

.main-navigation .current_page_item > a, .main-navigation .current-menu-item > a, .main-navigation .current_page_ancestor > a {
    color: #000000;
}

/* Moves mobile navigation links down so division switch doesn't cover it */
.mobile-navigation { 
    top: 30px;
}

/* ==========================================================
   Division Switcher
   ========================================================== */

/* Container - hidden by default, only shows when hamburger menu appears */
.division-switcher {
    display: none; /* Hidden on desktop and larger screens */
}

/* Each link */
.division-link {
    text-decoration: none;
    color: #333333;
    transition: all 0.2s ease;
    font-weight: 400;
    font-size: 14px;
}

/* Active link highlight */
.division-link.active.hospitality {
    color: black;
    border-bottom: 1px solid black;
}

.division-link.active.residential {
    color: black;
    border-bottom: 1px solid black;
}

/* Hover effect */
.division-link:hover {
    opacity: 0.8;
}

/* MOBILE - Only show when hamburger menu appears (max-width: 768px) */
@media (max-width: 768px) {
    .division-switcher {
        display: flex !important; /* Show on mobile when hamburger menu is visible */
        justify-content: center; /* center on mobile */
        gap: 20px;
        margin-bottom: 0;
        padding: 10px 16px;
        width: 100%;
        position: relative;
        z-index: 1; /* lower z-index on mobile so it doesn't cover header */
        background-color: #d4c9bb;
    }
    .division-link {
        font-size: 12px;
    }
    
    /* Ensure header appears below division switcher */
    #masthead.site-header {
        position: relative;
        z-index: 2;
    }
}

/* ==========================================================
   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;
}
.taxonomy-description { 
    max-width: 700px;
    font-weight: 400;
    margin: auto;
    line-height: 30px;
    text-align: left;
}

/* Child category links styling */
.child-category-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 40px auto;
}

.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 
   ========================================================== */

   .product-gallery .gallery {
    float: left;
    display: flex;
   }

ul.document-links { 
    list-style-type: none;
}
   
/* 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 { 
    display: block;
    background-color: none;
    width: auto;
    aspect-ratio: auto;
}

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

}

.product-info-container {
    flex: 1;
    max-width: 50%;
    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;
    display: block;
}

/* 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 {
    font-weight: 400;
    margin-top: 20px;
    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;
}

/* View Options + Technical Sheet — bar style (cream row, chevron right) */
.product-info-container .product-doc-ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    margin-top: 1.25rem;
    width: 100%;
}

.product-info-container .product-doc-cta {
    box-sizing: border-box;
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.125rem;
    color: #1a1a1a;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.product-info-container .product-doc-cta::after {
    content: '\203A';
    flex-shrink: 0;
    align-self: center;
    font-size: 2em;
    line-height: 1;
    font-weight:100;
    color: inherit;
    transform: translateY(-0.06em);
}

.product-info-container .product-doc-cta:hover,
.product-info-container .product-doc-cta:focus {
    background: #eae4dd;
    color: #111;
    text-decoration: none;
}

.product-info-container .product-doc-cta:focus-visible {
    outline: 2px solid #333;
    outline-offset: 2px;
}

/* One CTA only: full-width bar like reference */
.product-info-container .product-doc-cta:only-child {
    flex: 1 1 100%;
    max-width: 100%;
}

/* 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-gallery-container {
        margin: auto;
        order: 2;
    }
    
    .product-info-container {
        order: 1;
        padding-left: 0;
    }
    
    .product-info-container .entry-title {
        font-size: 24px;
    }

    .product-info-container .product-doc-ctas {
        gap: 10px;
    }

    .product-info-container .product-doc-cta {
        flex: 1 1 calc(50% - 5px);
        padding: 0.875rem 1rem;
        font-size: 14px;
    }
}

/* 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 - Carousel */
.alt-images-section {
    margin: 10px 0;

}

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

.alt-images-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.alt-images-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    cursor: grab;
    touch-action: pan-x pan-y pinch-zoom;
}

.alt-images-carousel-container:active {
    cursor: grabbing;
}

.alt-images-carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.alt-image-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alt-image-slide img {
    width: 100%;
    height: 600px;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    background-color: white;
    touch-action: pan-x pan-y pinch-zoom;
}

/* Navigation Dots */
.alt-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 0;
}

.alt-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #333;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    outline: none;
}

.alt-carousel-dot:hover {
    background: rgba(51, 51, 51, 0.3);
    transform: scale(1.2);
}

.alt-carousel-dot.active {
    background: #333;
    transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .alt-images-section {
        margin: 30px 0;
    }
    
    .alt-image-slide {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .alt-image-slide {
        height: 300px;
    }
}

.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: #7b7b7b;
    padding-top: 30px;
}

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

/* ==========================================================
  9. Products on Landing Pages
   ========================================================== */

   .entry-title::after { 
    display: none;
   }


/* ==========================================================
   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;
    }
}

/* ==========================================================
   8. Contact Form
   ========================================================== */

/* Center the contact form */

input[type="text"] { 
    height: auto !important;
}

body, button, input, select, textarea { 
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
}

.wpcf7 {
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto !important;
    padding: 25px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Contact Form 7 specific centering */
.wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
}

/* Basic form field styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="url"],
.wpcf7-form select {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    background: #fff;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form select:focus {
    border-color: #2c5aa0;
    outline: none;
    box-shadow: 0 0 5px rgba(44, 90, 160, 0.2);
}

/* Form labels */
.wpcf7-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

/* Form field containers */
.wpcf7-form p {
    margin-bottom: 20px;
}

/* Additional Information field on its own row */
.wpcf7-form p:has(textarea),
.wpcf7-form .form-group:has(textarea) {
    width: 100% !important;
    clear: both;
    margin-top: 20px;
}

/* Make sure textarea spans full width */
.wpcf7-form textarea {
    width: 100% !important;
    height: 150px;
    padding: 10px 10px;
    box-sizing: border-box;
}

/* Alternative selector for Additional Information field */
.wpcf7-form p:contains("Additional Information"),
.wpcf7-form .form-group:contains("Additional Information") {
    width: 100% !important;
    clear: both;
    margin-top: 20px;
}

/* If using specific field names */
.wpcf7-form p:has([name*="additional"]),
.wpcf7-form p:has([name*="message"]),
.wpcf7-form p:has([name*="information"]) {
    width: 100% !important;
    clear: both;
    margin-top: 20px;
}

/* Submit Button - Match Request Quote Button Style */
.wpcf7-form input[type="submit"],
.custom-request-form input[type="submit"] {
    display: inline-block;
    background: #2c5aa0 !important;
    color: white !important;
    padding: 12px 30px !important;
    text-decoration: none;
    border-radius: 4px !important;
    font-weight: 400;
    font-size: 16px !important;
    transition: all 0.3s ease;
    border: 2px solid #2c5aa0 !important;
    cursor: pointer;
    margin-top: 20px;
}

.wpcf7-form input[type="submit"]:hover,
.custom-request-form input[type="submit"]:hover {
    background: white !important;
    color: #2c5aa0 !important;
    border-color: #2c5aa0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

/* ==========================================================
   Contact Page — Residential / Hospitality Inquiry
   ========================================================== */
.elite-inquiry {
    max-width: 1100px;
    margin: 30px auto 40px;
    padding: 0 24px;
    box-sizing: border-box;
}

.elite-inquiry-heading {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.elite-inquiry-intro {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

.elite-inquiry-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.elite-inquiry-btn {
    flex: 1 1 220px;
    cursor: pointer;
    background: #fff;
    color: #1a1a1a;
    padding: 14px 24px;
    border: 1px solid #d8d2ca;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.elite-inquiry-btn:hover {
    background: #f5f2ee;
    border-color: #c9c0b4;
}

.elite-inquiry-btn.is-active {
    background: #eae4dd;
    border-color: #d8cfc2;
    color: #111;
}

.elite-inquiry-panel {
    display: none;
}

.elite-inquiry-panel.is-active {
    display: block;
}

.elite-inquiry-panel-title {
    margin: 0 0 6px;
    font-size: 20px;
}

.elite-inquiry-panel-note {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.elite-rep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.elite-rep-card {
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 18px 20px;
    background: #fafafa;
}

.elite-rep-name {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.elite-rep-card p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.45;
    word-break: break-word;
}

.elite-rep-card p:last-child {
    margin-bottom: 0;
}

.elite-rep-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
    margin-bottom: 1px;
}

.elite-rep-card a {
    color: #2c5aa0;
    text-decoration: none;
}

.elite-rep-card a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .elite-inquiry {
        padding: 0 16px;
    }
    .elite-inquiry-heading {
        font-size: 24px;
    }
    .elite-inquiry-buttons {
        flex-direction: column;
    }
    .elite-rep-grid {
        grid-template-columns: 1fr;
    }
}

