* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: #388e3c;
}

.hero-section {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.category-sidebar {
    width: 250px;
    flex-shrink: 0;
    height: 400px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.category-sidebar h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
}

.category-list li {
    width: 100%;
}

.category-list a {
    text-decoration: none;
    color: #555;
    display: block;
    padding: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.category-list a:hover {
    background-color: #e8f5e9;
    color: #4caf50;
}

.carousel {
    flex: 1;
    min-width: 300px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

.carousel-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    display: block;
    display: flex;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: white;
}

/* Category Page Styles */
.category-layout {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.category-content {
    flex: 1;
    min-width: 300px;
}

/* Category Banner */
.category-banner {
    height: 150px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    display: none; /* Hidden by default */
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Show banner only for fire-resistant category */
.category-content[data-category="1"] .category-banner {
    display: block;
}

.content-header {
    margin-bottom: 30px;
}

.category-title {
    font-size: 24px;
    color: #333;
    padding-bottom: 10px;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.subcategories-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.subcategory-card,
.product-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.subcategory-card:hover,
.product-card:hover {
    transform: translateY(-5px);
}

.subcategory-card img,
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.subcategory-card h3 {
    padding: 15px 10px;
    margin: 0;
    font-size: 14px;
    color: #333;
    text-align: center;
    background: #f8f9fa;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Update existing category-list styles */
.category-list a.active {
    background-color: #333;
    color: #fff;
}

.category-list a.active:hover {
    background-color: #000;
    color: #fff;
}

/* Breadcrumbs Styles */
.breadcrumbs {
    margin-top: 20px;
    margin-bottom: 15px;
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs li {
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #2d7230;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumbs .current {
    color: #333;
}

/* Subcategory Page Styles */
.subcategory-title {
    font-size: 24px;
    color: #333;
    padding-bottom: 10px;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.product-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #FF6B00;
    margin-top: auto;
}

.product-card--catalog {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card--catalog .product-image {
    margin-bottom: 15px;
}

.product-card--catalog .product-image img {
    background: #fff;
}

.product-card--catalog .product-name {
    margin-bottom: 12px;
}

.product-card--catalog .product-description {
    margin-bottom: 16px;
}

.product-card--catalog .view-details {
    margin-top: 14px;
}

/* Product Details Page */
.product-details {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-image-container {
    flex: 0 0 400px;
    max-width: 400px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    flex: 1;
    min-width: calc(100% - 430px); /* 400px image + 30px gap */
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-info .manufacturer,
.product-info .price,
.product-info .availability {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.product-info .price {
    font-size: 28px;
    font-weight: bold;
    color: #FF6B00;
}

.product-info .price .currency {
    font-size: 16px;
    margin-left: 5px;
}

.product-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 25px;
}

.product-phone {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.product-phone:hover {
    color: #388e3c;
}

.product-specs {
    margin-top: 30px;
}

.product-specs h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.specs-table td {
    padding: 12px 8px;
}

.specs-table td:first-child {
    color: #666;
    width: 40%;
}

.product-description {
    margin-top: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
}

.product-description h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.description-content {
    color: #666;
    line-height: 1.6;
}

/* Warehouse Info Block */
.warehouse-info {
    margin-top: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
}

.warehouse-info h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.warehouse-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.warehouse-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.warehouse-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.warehouse-gallery img:hover {
    transform: scale(1.05);
}

/* Delivery Info Block */
.delivery-block {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    align-items: center;
}

.delivery-info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-logos {
    max-width: 400px;
}

.delivery-logos img {
    width: 100%;
    height: auto;
}

.delivery-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.delivery-vehicle {
    flex: 0 0 400px;
}

.delivery-vehicle img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    margin-top: 60px;
    padding: 40px 0;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

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

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #388e3c;
}

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

.footer-contact h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.footer-contact p,
.footer-contact a {
    color: #333;
    font-size: 16px;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #388e3c;
}

.footer-contact .address {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-menu ul {
        align-items: center;
    }

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

/* Tablet Styles */
@media (max-width: 992px) {
    .hero-section {
        gap: 20px;
    }

    .category-sidebar {
        height: fit-content;
        width: 100%;
    }

    .category-list {
        gap: 8px;
    }

    .carousel-inner {
        height: 350px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .category-sidebar {
        width: 100%;
    }

    .carousel-inner {
        height: 300px;
    }

    .category-list a {
        padding: 12px;
        font-size: 16px;
    }

    .carousel-button {
        padding: 10px 15px;
        font-size: 16px;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
        margin: 0 5px;
    }

    .carousel-inner {
        aspect-ratio: 4/3;
    }

    .carousel-button {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .carousel-inner {
        height: 250px;
    }

    .category-sidebar h2 {
        font-size: 1.2rem;
    }

    .category-list a {
        padding: 10px;
        font-size: 14px;
    }

    .carousel-inner {
        aspect-ratio: 1/1;
    }

    .carousel-button {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .category-layout {
        gap: 20px;
    }

    .category-sidebar {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .category-layout {
        flex-direction: column;
    }

    .category-sidebar {
        width: 100%;
    }

    .subcategories-grid,
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .subcategory-card img,
    .product-card img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .subcategories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .subcategory-card img,
    .product-card img {
        height: 160px;
    }
}

/* Product Page Styles */
.product-layout {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.product-main {
    flex: 1;
    min-width: 300px;
}

.product-gallery {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #4caf50;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
}

.product-info {
    flex: 1;
    min-width: calc(100% - 430px); /* 400px image + 30px gap */
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Product Styles */
@media (max-width: 992px) {
    .product-gallery {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
    }

    .main-image {
        height: 350px;
    }

    .product-info {
        flex: 1 1 100%;
        min-width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .product-layout {
        flex-direction: column;
    }

    .product-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .thumbnail-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .main-image {
        height: 300px;
        order: -1;
    }

    .product-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 250px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Popular Products Section */
.popular-products {
    margin: 60px 0;
    padding-bottom: 20px; /* Prevent card shadow clipping */
}

.popular-products h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 35px;
}

.products-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 450px; /* Ensure consistent height */
}

.carousel-container {
    overflow: hidden;
    position: relative;
    padding: 10px 0; /* Space for card hover shadow */
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.product-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
    min-height: 2.6em;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: auto;
    min-height: 2.8em;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-details {
    display: inline-block;
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
    margin-top: 15px;
    text-align: left;
}

.view-details:hover {
    color: #388e3c;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #4caf50;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: #388e3c;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-card {
        flex: 0 0 250px;
        min-height: 360px;
    }

    .product-card img {
        height: 180px;
    }

    .product-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 220px;
        min-height: 340px;
    }

    .product-card img {
        height: 160px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-card--catalog {
        min-height: 100%;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 200px;
        min-height: 320px;
    }

    .product-card img {
        height: 140px;
    }

    .product-card h3 {
        font-size: 0.95rem;
        min-height: 2.4em;
    }

    .product-description {
        font-size: 0.8rem;
        min-height: 2.6em;
    }

    .view-details {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .product-cta {
        align-items: stretch;
    }
}

/* Activities Section */
.activities-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.activities-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.activities-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.activity-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.activity-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.learn-more {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #388e3c;
}

.additional-products {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.additional-products h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

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

.product-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.product-item:hover {
    background: #e9ecef;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.product-header h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.product-icon {
    font-size: 1.5rem;
}

.product-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.brands {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* Responsive adjustments for additional products */
@media (max-width: 768px) {
    .additional-products {
        padding: 30px 20px;
    }

    .products-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .product-header h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-list {
        grid-template-columns: 1fr;
    }

    .product-item {
        padding: 15px;
    }

    .product-icon {
        font-size: 1.3rem;
    }
}

/* Warehouse Section */
.warehouse-section {
    width: 100%;
    margin: 0;
    padding: 60px 0;
    background: #f8f9fa;
}

.warehouse-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.warehouse-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.warehouse-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.warehouse-container {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.warehouse-track {
    display: flex;
    transition: transform 0.5s ease;
}

.warehouse-slide {
    flex: 0 0 100%;
    padding: 0 15px;
}

.warehouse-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.warehouse-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #4caf50;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    position: static;
    z-index: 2;
    flex: 0 0 auto;
}

.warehouse-arrow:hover {
    background: #388e3c;
}

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

.warehouse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.warehouse-dot.active {
    background: #4caf50;
}

/* Responsive adjustments for warehouse section */
@media (max-width: 992px) {
    .warehouse-slide img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .warehouse-section {
        padding: 40px 0;
    }

    .warehouse-slide img {
        height: 300px;
    }

    .warehouse-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .warehouse-section h2 {
        font-size: 1.6rem;
    }

    .warehouse-intro {
        font-size: 1rem;
        padding: 0 20px;
    }

    .warehouse-slide img {
        height: 250px;
    }

    .warehouse-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Delivery Section */
.delivery-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.delivery-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.delivery-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.delivery-info {
    display: flex;
    gap: 40px;
    align-items: center;
}

.delivery-text {
    flex: 1;
}

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

.delivery-features {
    list-style: none;
}

.delivery-features li {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-vehicle {
    flex: 1;
}

.delivery-vehicle img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.delivery-partners {
    text-align: center;
}

.delivery-partners h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
}

.partners-logos {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partners-logos img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments for delivery section */
@media (max-width: 992px) {
    .delivery-info {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .delivery-vehicle {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .delivery-section {
        padding: 40px 0;
    }

    .delivery-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .delivery-text p {
        font-size: 1rem;
    }

    .delivery-features li {
        font-size: 1rem;
    }

    .delivery-partners h3 {
        font-size: 1.3rem;
    }

    .partners-logos {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .delivery-section h2 {
        font-size: 1.6rem;
    }

    .delivery-content {
        gap: 30px;
    }

    .delivery-features li {
        font-size: 0.95rem;
    }
}

/* Product Page Delivery Block */
.delivery-block {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    align-items: center;
}

.delivery-info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-logos {
    max-width: 400px;
}

.delivery-logos img {
    width: 100%;
    height: auto;
}

.delivery-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.delivery-vehicle {
    flex: 0 0 400px;
}

.delivery-vehicle img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for delivery block */
@media (max-width: 992px) {
    .delivery-block {
        flex-direction: column;
        padding: 20px;
    }

    .delivery-vehicle {
        flex: 0 0 auto;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .delivery-logos {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .delivery-block {
        gap: 20px;
        margin: 30px 0;
    }

    .delivery-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .delivery-block {
        padding: 15px;
        gap: 15px;
        margin: 20px 0;
    }
}

/* Coming Soon Page */
.coming-soon-section {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.coming-soon-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.coming-soon-content h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 16px;
}

.coming-soon-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.back-home {
    display: inline-block;
    text-decoration: none;
    color: #4caf50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: #388e3c;
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 30px;
    }

    .coming-soon-icon {
        font-size: 48px;
    }

    .coming-soon-content h1 {
        font-size: 24px;
    }

    .coming-soon-content p {
        font-size: 16px;
    }
}

.link-primary {
    color: #388e3c;
}

.link-primary:hover {
    color: #2d7230;
} 