/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Button System */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Button Variants */
.btn-primary {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
}

.btn-secondary {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
}

.btn-secondary:hover {
    background: #229954;
    border-color: #229954;
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border-color: #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

/* Section System */
.section {
    padding: 45px 0;
}

.section--centered {
    text-align: center;
}

.section h2,
.section h3 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Navigation Styles */
nav {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav-container {
    /* max-width: 1200px; */
    width: 100%;
    /* margin: 34px auto; */
    background: rgba(255, 255, 255, 0.9);
    /* border-radius: 35px; */
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    unicode-bidi: normal;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    display: block;
    padding: 5px 15px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 10px;
    margin: 2px;
    white-space: nowrap;
}

.nav-list a:hover {
    background: #f8f9fa;
    color: #3498db;
    transform: translateY(-2px);
}

.nav-list a.active {
    background: #3498db;
    color: white;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin: -40px 10px;
}

.nav-logo a {
    padding: 0;
    margin: 0;
    background: none;
    border-radius: 50%;
    transition: transform 0.3s;
    text-decoration: none;
    border: none;
    outline: none;
}

.nav-logo a:link,
.nav-logo a:visited,
.nav-logo a:active,
.nav-logo a:focus {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.nav-logo a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.25);
    border: none !important;
    text-decoration: none !important;
}

.nav-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    border: none !important;
    margin-top: 40px;
    outline: none !important;
    display: block;
}

/* Hero Section */
.hero {
    color: white;
    text-align: center;
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Main Content */
.main-content {
    padding: 0;
}

.about-section {
    padding: 45px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}
.about-text h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image .image-placeholder {
    background: #dee2e6;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6c757d;
    border-radius: 10px;
}

.about-image img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 45px 0;
    text-align: center;
}

.services-section h3 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Customers Section */
.customers-section {
    padding: 45px 0;
    text-align: center;
}

.customers-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.customers-section > .container > p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #6c757d;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.customer-type {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.customer-type h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Contact Section */
.contact-section {
    padding: 45px 0;
    text-align: center;
}

.contact-info-main h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 38px 0 15px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-main-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    opacity: 0.8;
}

.footer-contact p a {
    color: inherit;
    text-decoration: none;
    opacity: inherit;
}

.footer-warehouses h4 {
    color: #ecf0f1;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.warehouses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.warehouse-info {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.warehouse-info p {
    margin-bottom: 3px;
    opacity: 0.9;
}

.warehouse-info p:first-child {
    font-weight: 600;
    color: #ecf0f1;
    font-size: 1.1rem;
}

.warehouse-location {
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.warehouse-location p {
    margin-bottom: 5px;
}

.warehouse-location p:first-child {
    font-weight: 600;
    color: #2c3e50;
}

/* Single Contact Card Layout */
.contact-single-card {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.contact-single-card .contact-card {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: left;
}

.contact-single-card .contact-card h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.contact-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.contact-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-section .contact-icon {
    font-size: 2rem;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.contact-single-card .warehouse-location {
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-single-card .warehouse-location p {
    margin-bottom: 5px;
}

.contact-single-card .warehouse-location p:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

/* Page Header */
.page-header {
    color: #2c3e50;
    text-align: center;
    padding: 0 0 15px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.8;
    color: #6c757d;
}

/* Additional Page Styles */
.mission-section,
.team-member-section,
.culture-section,
.become-customer-section {
    padding: 45px 0;
}

.join-team-section {
    padding: 45px 0;
    text-align: center;
}

.mission-section,
.culture-section {
    background: #f8f9fa;
}

/* Mission & Values */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content .mission-image {
    order: 1;
}

.mission-content .mission-text {
    order: 2;
}

/* Service Overview */
.service-overview {
    padding: 45px 30px;
    /* background: #f8f9fa; */
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.overview-text p {
    margin-bottom: 20px;
    padding: 0 80px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.overview-image .image-placeholder {
    background: #dee2e6;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6c757d;
    border-radius: 10px;
}

.overview-image img {
    width: 100%;
    height: 300px;
    /* object-fit: contain; */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Delivery Services */
.delivery-services {
    padding: 45px 0;
    background: white;
}

.delivery-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Delivery Content */
.delivery-content {
    padding-bottom: 45px;
    /* background: white; */
}

.delivery-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.delivery-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.delivery-text p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #1e3c72;
    font-size: 1.2rem;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Service Excellence */
.service-excellence {
    padding: 45px 0;
    background: #f8f9fa;
}

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

.excellence-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.excellence-text h4 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: #1e3c72;
}

.excellence-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-standards {
    list-style: none;
    margin: 20px 0;
}

.service-standards li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.service-standards li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.excellence-image .image-placeholder {
    background: #dee2e6;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6c757d;
    border-radius: 10px;
}

/* Product Categories */
.product-categories {
    padding: 45px 0;
    /* background: white; */
    /* border-radius: 15px; */
    margin: 20px 0;
}

.product-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Category Navigation */
.category-nav {
    margin-bottom: 20px;
}

.category-nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}

.category-nav-list li {
    margin: 0;
}

.category-nav-link {
    display: inline-block;
    padding: 12px 20px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-nav-link:hover {
    background: #a9ddff;
    color: #1e3c72;
    transform: translateY(-2px);
}

.category-nav-link.active {
    background: #3498db;
    color: white;
    border-color: #2980b9;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Product Highlights */
.product-highlights {
    padding: 45px 0;
    background: #f8f9fa;
}

.product-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.highlight-item p {
    margin-bottom: 20px;
    color: #6c757d;
    line-height: 1.6;
}

.categories-content {
    max-width: 1000px;
    margin: 0 auto;
}

.kosher-categories,
.specialty-categories {
    margin-bottom: 60px;
}

.kosher-categories h3,
.specialty-categories h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e3c72;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.category-group h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.category-group p {
    color: #6c757d;
    line-height: 1.6;
}

/* Images within category list - basic styling only */
.category-list img {
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    padding: 45px 0;
    background: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.contact-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 30px 0;
}

.contact-method {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #3498db;
}

.contact-method h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-method p {
    margin-bottom: 8px;
    color: #6c757d;
}

.contact-method p:first-of-type {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.contact-image .image-placeholder {
    background: #dee2e6;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6c757d;
    border-radius: 10px;
}

.mission-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Product Categories Overview */
.products-overview-section {
    padding: 45px 0;
    background: white;
}

.products-overview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.product-categories {
    max-width: 1000px;
    margin: auto auto 40px auto;
}

.category-group {
    margin-bottom: 40px;
}

.category-group h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e3c72;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
}

.category-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.category-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Customer Types Section */
.customers-section {
    background: #f8f9fa;
    padding: 45px 0;
    text-align: center;
}

.customers-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.customer-type {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #3498db;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.customer-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.customer-type h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.customer-type h4 {
    font-size: 1.3rem;
    margin: 15px 0;
    color: #2c3e50;
    font-weight: 600;
}

.customer-type p {
    color: #6c757d;
    line-height: 1.2;
    font-size: 1rem;
    margin: 0;
}




/* Service Areas */
.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.area-group h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.area-group ul {
    padding-left: 20px;
}

.area-group li {
    margin-bottom: 8px;
}

.delivery-note {
    margin-top: 20px;
    padding: 15px;
    background: #e8f4fd;
    border-left: 4px solid #3498db;
    border-radius: 5px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-item {
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.pricing-item.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
    margin: 20px 0;
}

.pricing-item ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.pricing-item li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-style: italic;
}

/* Team */
.team-member-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.teams-list {
    max-width: 1000px;
    margin: 0 auto;
}

.teams-list h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.teams-list h3:first-child {
    margin-top: 0;
}

.teams-list .team-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-left: 30px;
    margin-bottom: 30px;
}

.teams-list .team-member-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.teams-list .team-member-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.teams-list .team-member-info {
    width: 100%;
}

.teams-list .team-member-info h5 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
}

.team-member-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* gap: 30px; */
    margin-top: 40px;
}

.team-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* background: white; */
    /* border-radius: 10px; */
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
    padding: 25px 20px;
}

.team-member-image {
    margin-bottom: 15px;
}

.team-member-image .image-placeholder {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team-member-image img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.team-member-info {
    width: 100%;
}

.team-member-info h5 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1rem;
}

.team-member-info .title {
    color: #0b5180;
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.team-member-info .phone,
.team-member-info .email {
    color: #66829b;
    font-size: 0.75rem;
    margin-bottom: 8px;
    word-break: break-word;
}

.team-member-info .email a {
    color: #3498db;
    text-decoration: none;
}

.team-member-info .email a:hover {
    text-decoration: underline;
}

/* Company Culture */
.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Departments */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.department-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.department-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.department-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.department-item ul {
    margin-top: 15px;
    padding-left: 20px;
}

.department-item li {
    margin-bottom: 8px;
}

/* Employee Benefits */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.benefit-group h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefit-group ul {
    padding-left: 20px;
}

.benefit-group li {
    margin-bottom: 8px;
}

/* Join Team */
.join-team-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.join-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.join-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Customer Types */
.customer-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.customer-type-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.customer-type-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.customer-type-card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.customer-type-card li {
    margin-bottom: 8px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image .image-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-info p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.case-study-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-study-image .image-placeholder {
    height: 200px;
    border-radius: 10px;
}

.case-study-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.case-study-content p {
    margin-bottom: 10px;
}

.case-study-content .client {
    font-weight: bold;
    color: #3498db;
}

.case-study-content .challenge,
.case-study-content .solution,
.case-study-content .result {
    font-style: italic;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.stat-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Customer Support */
.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.support-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.support-option {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.support-option h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Become Customer */
.become-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.become-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Delivery Options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.option-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.option-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.option-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.option-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.option-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.option-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.option-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #27ae60;
    margin-top: 20px;
}

/* Delivery Process */
.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Delivery Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Delivery Policies */
.policies-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.policy-group {
    margin-bottom: 30px;
}

.policy-group h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.policy-group ul {
    padding-left: 20px;
}

.policy-group li {
    margin-bottom: 8px;
}

/* Special Delivery Services */
.special-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.special-service-item {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.special-service-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.special-service-item ul {
    margin-top: 15px;
    padding-left: 20px;
}

.special-service-item li {
    margin-bottom: 8px;
}

/* Contact Actions */
.contact-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Search and Filter Styles */
.search-section {
    background: #f8f9fa;
    padding: 30px 0;
}

.search-container {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    font-size: 1rem;
}

.search-btn {
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: 2px solid #3498db;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
}

.category-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image .image-placeholder {
    height: 200px;
    background: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #6c757d;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.price {
    font-weight: bold;
    color: #27ae60;
}

.availability {
    color: #27ae60;
    font-size: 0.9rem;
}

/* Offers Section */
.offers-section {
    background: #f8f9fa;
    padding: 45px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.offer-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.offer-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.offer-item p {
    margin-bottom: 25px;
    color: #6c757d;
}

/* Contact Form Styles */
.contact-info-section {
    background: #f8f9fa;
    padding: 45px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-card p {
    margin-bottom: 10px;
}

.contact-form-section {
    padding: 45px 0;
}

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

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #6c757d;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Location Section */
.location-section {
    background: #f8f9fa;
    padding: 45px 0;
}

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

.location-info h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-info h4 {
    color: #2c3e50;
    margin: 25px 0 15px;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder .image-placeholder {
    height: 300px;
    margin-bottom: 20px;
}

/* Business Hours */
.hours-section {
    padding: 45px 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hours-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hours-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.hours-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-style: italic;
    color: #6c757d;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 45px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list a {
        padding: 15px 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-content,
    .excellence-content,
    .contact-content {
        gap: 30px;
    }
    
    .contact-single-card .contact-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .contact-section {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-section .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-main-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .warehouses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-grid,
    .customers-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid,
    .category-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-member-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .teams-list .team-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .team-member-card {
        padding: 20px;
    }
    
    .teams-list .team-member-card {
        padding: 15px 10px;
    }
    
    .team-member-image .image-placeholder {
        height: 130px;
        width: 130px;
    }
    
    .products-overview-section h2,
    .customers-section h2,
    .delivery-services h2,
    .product-categories h2,
    .product-highlights h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .category-group h3,
    .kosher-categories h3,
    .specialty-categories h3 {
        font-size: 1.6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 45px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .team-member-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .teams-list .team-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .teams-list .team-member-card {
        padding: 12px 8px;
    }
    
    .teams-list .team-member-info h5 {
        font-size: 0.9rem;
    }
    
    .about-section,
    .services-section,
    .customers-section,
    .contact-section,
    .products-overview-section,
    .service-overview,
    .delivery-services,
    .delivery-content,
    .service-excellence,
    .product-categories {
        padding: 45px 0;
    }
    
    .category-item,
    .customer-type,
    .category-group,
    .contact-method {
        padding: 20px;
    }
    
    .category-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .products-overview-section h2,
    .customers-section h2,
    .delivery-services h2,
    .product-categories h2,
    .product-highlights h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
}

/* Responsive Category Navigation */
@media (max-width: 768px) {
    .category-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .category-nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: 120px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category-nav {
        margin-bottom: 30px;
    }
    
    .category-nav-link {
        padding: 8px 14px;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

/* Center the Jew Uncle Sam image */
#jew-uncle-sam-image {
    /* Your custom styles here */
    width: 300px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    /* Any other properties you want to override */
}

/* Styling for the "What Can Kosher Do For You?" text */
.overview-image p {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    font-family: 'Open Sans', sans-serif;
}

/* Styling for brand logos on products page */
.brand-logo {
    width: 225px;
    height: 175px;
    display: block;
    object-fit: contain;
    background-color: #ffffff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    filter: grayscale(10%);
    transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.text-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 90px;
    width: 160px;
}

.text-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.text-logo h4 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
}

.brand-logo:hover {
    filter: grayscale(0%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Products page category list styling to match customers grid */
.category-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.category-group {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 120px;
    width: 200px;
}

.category-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for products page */
@media (max-width: 1200px) {
    .category-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .category-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brand-logo {
        width: 130px;
        height: 70px;
    }
    
    .text-logo {
        height: 70px;
        width: 130px;
    }
}

@media (max-width: 480px) {
    .category-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .brand-logo {
        width: 110px;
        height: 60px;
    }
    
    .text-logo {
        height: 60px;
        width: 110px;
    }
}

/* Products Hero Section Styling */
.products-hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.products-hero-section .container {
    position: relative;
    padding: 0;
}

#products-hero-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.products-hero-section h2 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
    margin: 0;
    width: 90%;
    max-width: 800px;
}

/* Products Spiel Section Styling */
.products-shpiel-section {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 90%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 15px;
}

.products-shpiel-section p {
    text-align: center;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Responsive styling for products hero section */
@media (max-width: 768px) {
    #products-hero-image {
        height: 400px;
    }
    
    .products-hero-section h2 {
        font-size: 2.5rem;
        width: 95%;
    }
    
    .products-shpiel-section {
        top: 55%;
        width: 95%;
    }
    
    .products-shpiel-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #products-hero-image {
        height: 300px;
    }
    
    .products-hero-section h2 {
        font-size: 2rem;
        width: 95%;
    }
    
    .products-shpiel-section {
        top: 50%;
        width: 95%;
    }
    
    .products-shpiel-section p {
        font-size: 1rem;
    }
}

/* Customers Section Styling */
.customers-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.customers-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
}

.customers-section > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.customers-category {
    margin-bottom: 50px;
}

.customers-category h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.customer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
    width: 100%;
    max-width: 200px;
}

.customer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.store-logo {
    max-height: 90px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(25%);
    transition: filter 0.3s ease;
    background-color: #ffffff;
    padding: 0;
    border-radius: 8px;
}

.customer-logo:hover .store-logo {
    filter: grayscale(0%);
}

/* Partners Carousel */
.partners-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 90px) / 4);
    min-width: 200px;
}

.partner-logo {
    width: 240px;
    height: 140px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(25%);
    transition: filter 0.3s ease, transform 0.3s ease;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #3498db;
    color: #3498db;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.carousel-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #3498db;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .carousel-slide {
        width: calc((100% - 60px) / 3);
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .partners-carousel-container {
        padding: 40px 50px;
    }
    
    .carousel-slide {
        width: calc((100% - 30px) / 2);
        min-width: 150px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .partner-logo {
        width: 180px;
        height: 110px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .partners-carousel-container {
        padding: 30px 45px;
    }
    
    .carousel-slide {
        width: 100%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .carousel-btn-prev {
        left: 5px;
    }
    
    .carousel-btn-next {
        right: 5px;
    }
    
    .partner-logo {
        width: 160px;
        height: 95px;
        padding: 10px;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .customers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .customers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .customer-logo {
        padding: 15px;
        min-height: 90px;
        max-width: 140px;
    }
    
    .store-logo {
        max-height: 70px;
        max-width: 130px;
        padding: 6px;
    }
    
    .customers-section h2 {
        font-size: 2rem;
    }
    
    .customers-category h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .customer-logo {
        padding: 12px;
        min-height: 80px;
        max-width: 120px;
    }
    
    .store-logo {
        max-height: 60px;
        max-width: 110px;
        padding: 5px;
    }
}

.usa-map {
    width: auto;
    height: auto;
    max-width: none;
    transform: scale(0.75);
    transform-origin: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}


/* Responsive adjustments for delivery map */
@media (max-width: 768px) {
    .delivery-map-container {
        gap: 15px;
        padding: 15px;
    }
    
    .usa-map {
        max-width: 100%;
    }
    
}

@media (max-width: 480px) {
    .delivery-map-container {
        padding: 10px;
    }
    
}
