body{
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        linear-gradient(#b4b4b4, #eeede8);
    min-height: 100vh;
    margin: 0;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.8s ease-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-top {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #3d3d3d;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 40px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: "Red Hat Display", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d3d3d;
}

.search-bar {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(61, 61, 61, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    font-family: "Red Hat Display", sans-serif;
    font-size: 0.9rem;
    color: #3d3d3d;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(61, 61, 61, 0.6);
}

.search-input:focus {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: #927908;
    box-shadow: 0 0 0 2px rgba(146, 121, 8, 0.2);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(61, 61, 61, 0.3);
    border-radius: 25px;
    font-family: "Red Hat Display", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #3d3d3d;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: #927908;
    transform: translateY(-2px);
}

.nav-btn:active {
    transform: translateY(0);
}

.btn-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.btn-text {
    font-weight: 500;
}

.nav-links-container {
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        rgba(61, 61, 61, 0.95);
    width: 100%;
    padding: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
    padding: 1rem 0;
    justify-content: center;
    max-width: 1200px;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

.nav-links a {
    font-family: "Red Hat Display", sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #927908;
}

h1{
    font-family:"Red Hat Display", sans-serif;
    color: #3d3d3d;
    font-size: 3rem;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.popular-products {
    padding: 2rem 0;
    background-color: #ffffff;
}

.popular-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.popular-products-header {
    font-family:"Red Hat Display", sans-serif;
    color: #3d3d3d;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.product-title {
    font-family:"Red Hat Display", sans-serif;
    color: #3d3d3d;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.current-price {
    font-family:"Red Hat Display", sans-serif;
    color: #927908;
    font-size: 1.25rem;
    font-weight: 700;
}

.original-price {
    font-family:"Red Hat Display", sans-serif;
    color: #999;
    font-size: 1rem;
    text-decoration: line-through;
}

.add-to-cart-btn {
    font-family:"Red Hat Display", sans-serif;
    background-color: #3d3d3d;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.add-to-cart-btn:hover {
    background-color: #927908;
    color: #ffffff;
}

/* Cart Badge */
.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: "Red Hat Display", sans-serif;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: flex-end;
    animation: fadeIn 0.3s ease;
}

.cart-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cart-modal-content {
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        linear-gradient(#b4b4b4, #eeede8);
    width: 100%;
    max-width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
    overflow-y: auto;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cart-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(61, 61, 61, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cart-modal-header h2 {
    font-family: "Red Hat Display", sans-serif;
    color: #3d3d3d;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #3d3d3d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cart-close-btn:hover {
    background-color: #e0e0e0;
}

.cart-modal-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-empty-message {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
    font-family: "Red Hat Display", sans-serif;
}

.cart-empty-message p {
    margin: 0.5rem 0;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(61, 61, 61, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-family: "Red Hat Display", sans-serif;
    color: #3d3d3d;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.cart-item-category {
    font-family: "Red Hat Display", sans-serif;
    color: #927908;
    font-size: 0.85rem;
    margin: 0;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 0.25rem;
}

.quantity-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1.2rem;
    color: #3d3d3d;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #f0f0f0;
}

.quantity-value {
    font-family: "Red Hat Display", sans-serif;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    color: #3d3d3d;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.remove-item-btn:hover {
    background-color: #ffe0e0;
}

.cart-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(61, 61, 61, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-family: "Red Hat Display", sans-serif;
}

.cart-total-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3d3d3d;
}

.cart-total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #927908;
}

.cart-checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: #927908;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-family: "Red Hat Display", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-checkout-btn:hover {
    background-color: #7a6506;
}

.cart-checkout-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: "Red Hat Display", sans-serif;
    font-weight: 500;
    z-index: 10001;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .cart-modal-content {
        max-width: 100%;
    }
}

.products-header {
    font-family:"Red Hat Display", sans-serif;
    color: #3d3d3d;
    font-size: 2.5rem;
    text-align: left;
    margin: 3rem 0 2rem 0;
    padding: 0 2rem;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.products-carousel-container,
.services-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 700px;
    margin: 0 auto;
    overflow: hidden;
    border: none;
}

.products-carousel,
.services-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #3d3d3d;
    border: none;
    padding: 1rem 1.2rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-nav-btn:hover {
    background-color: #927908;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev-btn {
    left: 0.5rem;
}

.carousel-nav-btn.next-btn {
    right: 0.5rem;
}

.services-header {
    font-family:"Red Hat Display", sans-serif;
    color: #3d3d3d;
    font-size: 2.5rem;
    text-align: left;
    margin: 4rem 0 2rem 0;
    padding: 0 2rem;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 0.8s ease-out 1s both;
}


.footer {
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        rgba(61, 61, 61, 0.95);
    color: #ffffff;
    margin-top: 4rem;
    padding: 0.5rem 0 0 0;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.footer-logo img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: "Red Hat Display", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.footer-links a {
    font-family: "Red Hat Display", sans-serif;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #927908;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 1;
    white-space: nowrap;
}

.footer-contact li {
    font-family: "Red Hat Display", sans-serif;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    white-space: nowrap;
}

.footer-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #927908;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.75rem;
    padding: 0.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-family: "Red Hat Display", sans-serif;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

p{
    color: #3d3d3d;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 700px;
    margin: 0 auto;
    overflow: hidden;
    border: none;
    opacity: 1;
    visibility: visible;
    background-color: #f5f5f5;
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    opacity: 1;
    visibility: visible;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    background-color: #f5f5f5;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.no-image-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.no-image-placeholder {
    font-family: "Red Hat Display", sans-serif;
    font-size: 2rem;
    color: #999;
    text-align: center;
    font-weight: 500;
}

.no-image-card .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.no-image-card .product-image .no-image-placeholder {
    font-size: 1.5rem;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-top {
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-content {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(61, 61, 61, 0.2);
        margin-top: 1rem;
    }

    .nav-content.active {
        display: flex;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .nav-actions {
        width: 100%;
        justify-content: space-between;
    }

    .nav-btn {
        flex: 1;
        justify-content: center;
        padding: 0.5rem 1rem;
    }

    .btn-text {
        display: none;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo {
        height: 35px;
    }

    .nav-links-container {
        padding: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .carousel-container {
        height: 300px;
    }

    h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .popular-products {
        padding: 2rem 0;
    }

    .popular-products-header {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-image {
        height: 220px;
    }

    .products-header {
        font-size: 2rem;
        margin: 2rem 0 1.5rem 0;
        padding: 0 1rem;
        text-align: left;
    }

    .products-carousel-container,
    .services-carousel-container {
        height: 300px;
    }

    .carousel-nav-btn {
        padding: 0.8rem 1rem;
        font-size: 1.2rem;
    }

    .services-header {
        font-size: 2rem;
        margin: 3rem 0 1.5rem 0;
        padding: 0 1rem;
        text-align: left;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer {
        margin-top: 2rem;
        padding: 0.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.9rem;
    }

    .logo {
        height: 30px;
        gap: 0.5rem;
    }

    .carousel-container {
        height: 250px;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .popular-products {
        padding: 1.5rem 0;
    }

    .popular-products-header {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .products-header {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem 0;
        text-align: left;
    }

    .products-carousel-container,
    .services-carousel-container {
        height: 250px;
    }

    .carousel-nav-btn {
        padding: 0.6rem 0.8rem;
        font-size: 1rem;
    }

    .services-header {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
        text-align: left;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .footer {
        margin-top: 2rem;
        padding: 0.5rem 0 0 0;
    }

    .footer-logo-text {
        font-size: 1rem;
    }

    .footer-social {
        justify-content: flex-start;
    }
}