 .brand-hero-section {
     position: relative;
     background: #000;
     border-radius: 16px;
     padding: 40px;
     color: #ffffff;
     margin-bottom: 30px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     display: flex;
     align-items: center;
 }

 .brand-hero-backdrop {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 80% 20%, rgba(3, 93, 106, 0.25) 0%, transparent 50%);
     z-index: 1;
 }

 .brand-hero-content {
     position: relative;
     z-index: 2;
     display: flex;
     width: 100%;
     justify-content: space-between;
     align-items: center;
     gap: 40px;
     flex-wrap: wrap;
 }

 .brand-hero-left {
     display: flex;
     align-items: center;
     gap: 24px;
     flex: 1;
     /* min-width: 503px; */
 }

 .brand-logo-frame {
     width: 110px;
     height: 110px;
     background: #ffffff;
     border-radius: 50%;
     padding: 6px;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     border: 3px solid rgba(255, 255, 255, 0.8);
 }

 .brand-logo-frame img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     border-radius: 50%;
 }

 .brand-logo-placeholder {
     width: 100%;
     height: 100%;
     background: #000;
     color: #ffffff;
     font-size: 40px;
     font-weight: 800;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-transform: uppercase;
 }

 .brand-title-wrap {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .brand-name {
     font-size: clamp(24px, 3vw, 36px);
     font-weight: 800;
     margin: 0;
     color: #ffffff;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .brand-description {
     font-size: 14.5px;
     color: rgba(255, 255, 255, 0.8);
     margin: 0;
     line-height: 1.5;
     max-width: 785px;
     text-align: justify;
 }

 .brand-hero-right {
     flex-shrink: 0;
     min-width: 170px;
     max-width: 100%;
 }

 .brand-stats-grid {
     display: grid;
     grid-template-columns: repeat(1, 1fr);
     gap: 16px;
 }

 .brand-stat-card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 12px;
     padding: 14px 18px;
     display: flex;
     align-items: center;
     gap: 12px;
     transition: all 0.3s ease;
 }

 .brand-stat-card:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateY(-2px);
 }

 .stat-icon {
     font-size: 24px !important;
     color: #000;
     background: rgba(255, 255, 255, 0.9);
     padding: 8px;
     border-radius: 50%;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .stat-info {
     display: flex;
     flex-direction: column;
     min-width: 0;
 }

 .stat-num {
     font-size: 20px;
     font-weight: 800;
     color: #ffffff;
     line-height: 1.2;
 }

 .stat-num-text {
     font-size: 13.5px;
     font-weight: 700;
     color: #ffffff;
     line-height: 1.3;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .stat-num-text.address-text {
     white-space: normal;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     line-clamp: 2;
 }

 .stat-label {
     font-size: 11px;
     color: rgba(255, 255, 255, 0.6);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .col-span-2 {
     grid-column: span 2;
 }

 /* BRAND CONTENT STYLING */
 .brand-intro-card {
     background: #ffffff;
     border-radius: 16px;
     padding: 30px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     margin-bottom: 40px;
     border: 1px solid #edf2f7;
     position: relative;
 }

 .brand-intro-title {
     font-size: 18px;
     font-weight: 700;
     color: #2d3748;
     margin-bottom: 18px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .brand-intro-title::before {
     content: '';
     display: inline-block;
     width: 4px;
     height: 18px;
     background: #000;
     border-radius: 2px;
 }

 .brand-intro-card .content-wrapper {
     position: relative;
     overflow: hidden;
     transition: max-height 0.4s ease-in-out;
 }

 .brand-intro-card .content-wrapper.collapsed {
     max-height: 220px;
 }

 .brand-intro-card .content-overlay {
     display: none;
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 80px;
     background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
     pointer-events: none;
 }

 .brand-intro-card .content-wrapper.collapsed .content-overlay {
     display: block;
 }

 .brand-intro-card .read-more-wrapper {
     display: flex;
     justify-content: center;
     margin-top: 20px;
 }

 .brand-intro-card .btn-read-more {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: transparent;
     color: #000;
     border: 1.5px solid #000;
     border-radius: 8px;
     padding: 8px 20px;
     font-size: 14px;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.25s ease;
     outline: none;
 }

 .brand-intro-card .btn-read-more:hover {
     background: #000;
     color: #ffffff;
     box-shadow: 0 4px 12px rgba(117, 83, 182, 0.25);
 }

 .brand-intro-card .btn-read-more span.material-symbols-outlined {
     font-size: 18px !important;
     transition: transform 0.3s ease;
 }

 .brand-intro-card .btn-read-more.expanded span.material-symbols-outlined {
     transform: rotate(180deg);
 }

 .brand-intro-card .content {
     font-size: 15px;
     color: #4a5568;
     line-height: 1.7;
 }

 /* CATEGORY SECTION STYLING */
 .brand-category-section {
     background: #ffffff;
     border-radius: 16px;
     padding: 30px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     margin-bottom: 35px;
     border: 1px solid #edf2f7;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .brand-category-section:hover {
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
 }

 .category-section-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-bottom: 1px solid #edf2f7;
     padding-bottom: 15px;
     margin-bottom: 25px;
     flex-wrap: wrap;
     gap: 16px;
 }

 .category-section-title-wrap {
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .category-section-title {
     font-size: clamp(16px, 2vw, 20px);
     font-weight: 700;
     color: #1a202c;
     margin: 0;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .category-section-title::before {
     content: '';
     display: inline-block;
     width: 4px;
     height: 18px;
     background: #000;
     border-radius: 2px;
 }

 .category-product-count {
     font-size: 13px;
     color: #718096;
     font-weight: 500;
 }

 .category-view-all-btn {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: transparent;
     color: #000;
     border: 1.5px solid #000;
     border-radius: 8px;
     padding: 8px 16px;
     font-size: 13px;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.25s ease;
 }

 .category-view-all-btn:hover {
     background: #000;
     color: #ffffff;
     box-shadow: 0 4px 12px rgba(117, 83, 182, 0.25);
     text-decoration: none;
 }

 .category-view-all-btn span.material-symbols-outlined {
     font-size: 16px !important;
     transition: transform 0.2s ease;
 }

 .category-view-all-btn:hover span.material-symbols-outlined {
     transform: translateX(3px);
 }

 /* Slick slider custom navigation arrows */
 .slick-has-nav {
     position: relative;
 }

 .slick-prev,
 .slick-next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     z-index: 10;
     width: 40px;
     height: 40px;
     background: #ffffff;
     border: 1px solid #edf2f7;
     border-radius: 50%;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     color: #4a5568;
     cursor: pointer;
     display: flex !important;
     align-items: center;
     justify-content: center;
     transition: all 0.25s ease;
 }

 .slick-prev:hover,
 .slick-next:hover {
     background: #000;
     color: #ffffff;
     border-color: #000;
     box-shadow: 0 6px 15px rgba(117, 83, 182, 0.3);
 }

 .slick-prev {
     left: -20px;
 }

 .slick-next {
     right: -20px;
 }

 .slick-prev span,
 .slick-next span {
     font-size: 20px !important;
 }

 @media (max-width: 992px) {
     .slick-prev {
         left: -10px;
     }

     .slick-next {
         right: -10px;
     }
 }

 @media (max-width: 768px) {
     .brand-hero-section {
         padding: 24px;
     }

     .brand-hero-content {
         flex-direction: column;
         align-items: flex-start;
         gap: 24px;
     }

     .brand-hero-right {
         width: 100%;
     }

     .brand-logo-frame {
         width: 90px;
         height: 90px;
     }

     .slick-prev,
     .slick-next {
         display: none !important;
     }
 }

 .slick-has-nav .slick-slide {
     margin: 0 10px;
 }

 .slick-has-nav .slick-list {
     margin: 0 -10px;
 }

 .home-section-verifiled .page-header {
     margin-bottom: 30px;
     border-bottom: 1px solid #edf2f7;
     padding-bottom: 20px;
 }

 .home-section-verifiled .page-title {
     font-size: 28px;
     color: #000;
     font-weight: 800;
     margin: 0 0 8px 0;
     font-family: 'ExemplarPro-Bold';
 }

 .home-section-verifiled .page-subtitle {
     font-size: 15px;
     color: #718096;
     margin: 0;
 }

 .home-section-verifiled {
     padding: 40px 0;
     background: #f8f9fa;
 }

 /* Cards Grid Layout */
 .home-section-verifiled .cards-grid {
     padding-top: 20px;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
 }

 /* Card Styles */
 .home-section-verifiled .card {
     background: #ffffff;
     border-radius: 16px;
     border: 1px solid #edf2f7;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     height: 100%;
 }

 .home-section-verifiled .card:hover {
     transform: translateY(-6px);
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
     border-color: #c5c5c5;
 }

 /* Hero Image Container inside Card */
 .home-section-verifiled .card-hero {
     position: relative;
     height: 180px;
     overflow: hidden;
     background: #f1f5f9;
 }

 .home-section-verifiled .card-hero-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .home-section-verifiled .card:hover .card-hero-image {
     transform: scale(1.06);
 }

 /* Verified Badge */
 .home-section-verifiled .badge-gold {
     position: absolute;
     top: 12px;
     left: 12px;
     background: linear-gradient(135deg, #ffd700, #000);
     color: #ffffff;
     padding: 4px 10px;
     border-radius: 50px;
     font-size: 11px;
     font-weight: 700;
     box-shadow: 0 4px 10px rgba(230, 140, 27, 0.3);
     z-index: 2;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .home-section-verifiled .badge-icon {
     display: flex;
     align-items: center;
     gap: 4px;
 }

 .home-section-verifiled .badge-icon .material-symbols-outlined {
     font-size: 14px !important;
     font-weight: 800;
 }

 /* Card Overlay with Company Info */
 .home-section-verifiled .card-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
     padding: 30px 16px 12px 16px;
     color: #ffffff;
     z-index: 1;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
 }

 .home-section-verifiled .company-name {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 4px;
     line-height: 1.3;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
     font-family: 'ExemplarPro-Bold';
 }

 .home-section-verifiled .company-location {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.85);
     display: flex;
     align-items: center;
     gap: 3px;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .home-section-verifiled .location-icon {
     display: inline-flex;
     align-items: center;
 }

 .home-section-verifiled .location-icon .material-symbols-outlined {
     font-size: 14px !important;
 }

 /* Card Body */
 .home-section-verifiled .card-body {
     padding: 16px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 /* Stats Section */
 .home-section-verifiled .stats-row {
     margin-bottom: 14px;
     display: flex;
     gap: 10px;
 }

 .home-section-verifiled .stat-box {
     background: #f8fafc;
     border: 1px solid #f1f5f9;
     padding: 6px 10px;
     border-radius: 8px;
     flex: 1;
     text-align: center;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .home-section-verifiled .stat-value {
     font-size: 16px;
     font-weight: 800;
     color: #000;
 }

 .home-section-verifiled .stat-label {
     font-size: 11px;
     color: #94a3b8;
     margin-top: 1px;
     text-transform: uppercase;
     font-weight: 600;
     letter-spacing: 0.5px;
 }

 /* Product Thumbnails list in Card */
 .home-section-verifiled .product-images {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 8px;
     margin-bottom: 16px;
 }

 .home-section-verifiled .product-img-wrap {
     aspect-ratio: 1 / 1;
     border-radius: 6px;
     overflow: hidden;
     border: 1px solid #e2e8f0;
     background: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .home-section-verifiled .product-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .home-section-verifiled .product-img-wrap:hover img {
     transform: scale(1.1);
 }

 /* Action Buttons Row */
 .home-section-verifiled .action-row {
     display: grid;
     gap: 10px;
     margin-top: auto;
 }

 .home-section-verifiled .btn-contact,
 .home-section-verifiled .btn-profile {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 9px 12px;
     font-size: 14px;
     font-weight: 700;
     border-radius: 8px;
     text-decoration: none;
     transition: all 0.2s ease;
     text-align: center;
 }

 .home-section-verifiled .btn-contact {
     background: #ffffff;
     color: #000;
     border: 1.5px solid #000;
 }

 .home-section-verifiled .btn-contact:hover {
     background: #f0fdfa;
     color: #024b56;
     border-color: #024b56;
 }

 .home-section-verifiled .btn-profile {
     background: #000;
     color: #ffffff;
     border: 1.5px solid #000;
     font-family: 'ExemplarPro-Bold';
     text-transform: uppercase;
 }

 .home-section-verifiled .btn-profile:hover {
     background: #000;
     border-color: #000;
     color: #ffffff;
     box-shadow: 0 4px 12px rgba(230, 140, 27, 0.2);
 }

 /* Pagination Wrap */
 .pagination-wrap {
     margin-top: 40px;
     display: flex;
     justify-content: center;
 }

 .pagination-wrap .pagination {
     display: flex;
     gap: 10px;
     list-style: none;
     padding: 0;
 }

 .pagination-wrap .page-item .page-link {
     padding: 8px 16px;
     border: 1px solid #ddd;
     border-radius: 8px;
     color: #000;
     text-decoration: none;
     transition: all 0.2s;
     background: #fff;
 }

 .pagination-wrap .page-item.active .page-link {
     background: #000;
     color: #fff;
     border-color: #000;
 }

 .pagination-wrap .page-item.disabled .page-link {
     color: #ccc;
     cursor: not-allowed;
 }

 .brand-intro-card .content h2 {
     font-size: 20px;
     padding: 5px 0px;
     color: #000;
 }

 .brand-intro-card .content h3 {
     font-size: 18px;
     padding: 5px 0px;
     color: #000;
 }


 .brand-intro-card .content ul li {
     padding: 5px 0px;
     list-style: disc;
     margin-left: 20px;
 }

 .brand-intro-card .content p {
     padding-bottom: 10px;
 }

 /* Media Queries for Responsiveness */
 @media (max-width: 1200px) {
     .home-section-verifiled .cards-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 20px;
     }
 }

 @media (max-width: 992px) {
     .brand-stat-card {
         justify-content: center;
     }

     .home-section-verifiled .cards-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 16px;
     }
 }

 @media (max-width: 768px) {
     .pagination-wrap .page-item .page-link {
         padding: 5px 10px;
         border-radius: 4px;
         font-size: 14px;
     }

     .pagination-wrap .pagination {
         gap: 6px;
     }
 }

 @media (max-width: 576px) {
     .home-section-verifiled .cards-grid {
         grid-template-columns: 1fr;
         gap: 16px;
     }

     .home-section-verifiled .card-hero {
         height: 200px;
     }
 }