/* Basic Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif; /* Or a more specific font from the image */
    background-color: #f0f2f5; /* Light grey background */
    color: #333;
}

/* HEADER BASE */
header {
    display: flex;
    justify-content: space-around;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

/* GRUPO DA LOGO E TEXTO */
.left-group {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.logoDf {
    border-radius: 25px;
    height: 50px;
    width: 50px;
}
/* MENU */
.navMenu {
    justify-content: space-around;
    display: flex;
}
nav {
    width: 100%;
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

/* HAMBURGER */
/* .hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    margin-left: 20px;
} */
/* RESPONSIVO: manter tudo em uma linha */
/* @media (max-width: 768px) {
    nav {
        display: none;
    }

    nav.active {
        display: flex;
        top: 60px;
        right: 20px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        border-radius: 6px;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hamburger {
        display: block;
    }

    header {
        flex-wrap: nowrap;
    }
} */
/* Você precisará usar background-image para a imagem grande do fone de ouvido */
/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/large-headphone-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.8; 
} */
/* ---------------------------- */

/* Responsividade */
@media (max-width: 768px) {
    header {
        display: flex;
        justify-content: space-around;
    }

    nav ul {
        display: flex;
        justify-content: end;
        width: 100%;
    }
}
.hero-section {
    display: flex;
    justify-content: center;
}
/* 
.carousel-inner {
    display: flex;
    flex-wrap: nowrap;
} */

.carousel-item {
    flex: 0 0 100%;
    text-align: center;
}

.carousel-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Estilos para o contêiner do carrossel/imagem de fundo */

/* Estilos para o conteúdo do texto */
.hero-content {
    position: relative; /* Mantém o fluxo normal do conteúdo, mas fica acima da imagem */
    z-index: 2; /* Garante que o texto fique por cima da imagem */
    text-align: center;
    color: white; /* Cor do texto para contraste com a imagem escura */
    padding: 20px;
    max-width: 900px; /* Limita a largura do conteúdo para melhor leitura */
}

.features-section {
    display: flex;
    justify-content: center;
    padding: 40px 5%;
    flex-wrap: wrap; /* Permite que os cartões sejam encapsulados em telas menores */
    gap: 20px;
}

.feature-card {
    flex: 1;
    min-width: 220px; /* Minimum width for each card */
    max-width: 280px; /* Max width for each card */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.icon-placeholder {
    width: 50px;
    height: 50px;
    background-color: #ddd; /* Placeholder for icon */
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em; /* For icon fonts */
    color: #555;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
}

.feature-card p {
    font-size: 0.9em;
    color: #666;
}
/* Responsive adjustments can be added with media queries */
@media (max-width: 768px) {
    .hero-content {
        margin-bottom: 30px;
    }

    .hero-carousel {
        justify-content: center;
    }

    .features-section {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 90%; /* Take more width on small screens */
        max-width: 400px;
    }
}

/* ---------------CATEGORIAS-------------------- */
/* Estilos para a seção principal de categorias */
.categories-section {
    max-width: 1200px; /* Largura máxima da seção */
    margin: 40px auto; /* Centraliza e adiciona margem superior/inferior */
    padding: 20px;
    border-radius: 12px;
}

/* Estilos para o cabeçalho da seção (Categorias e Ver Tudo) */
.categories-header {
    display: flex; /* Para alinhar título e link na mesma linha */
    justify-content: space-between; /* Espaça o título e o link */
    align-items: center; /* Alinha verticalmente no centro */
    margin-bottom: 30px; /* Espaçamento abaixo do cabeçalho */
    padding: 0 10px; /* Pequeno padding para alinhar com os cards */
}

.section-title {
    font-size: 1.8em;
    font-weight: 700; /* Mais negrito */
    color: #333;
    margin: 0;
}

.view-all-link {
    text-decoration: none; /* Remove sublinhado */
    color: #2f00ff; /* Cor laranja para o link */
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #aaa; /* Cor mais escura no hover */
}

.view-all-link .arrow {
    margin-left: 5px;
    font-size: 1.1em;
}

/* Estilos para a grade de categorias */
.categories-grid {
    display: grid;
    /* Colunas responsivas:
       - minmax(150px, 1fr): Cada coluna terá no mínimo 150px, e o restante do espaço será distribuído igualmente.
       - repeat(auto-fit, ...): Cria o máximo de colunas possível que caibam no contêiner. */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px; /* Espaçamento entre os cards */
}

/* Estilos para cada card de categoria */
.category-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none; /* Remove sublinhado do link */
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Sombra leve */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave para hover */
    display: flex; /* Para centralizar o conteúdo verticalmente */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-5px); /* Efeito de "levantar" no hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); /* Sombra mais pronunciada no hover */
}

/* Estilos para o wrapper do ícone */
.category-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Faz o círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* Estilos para o placeholder do ícone (se estiver usando emojis ou texto simples) */
.icon-placeholder {
    font-size: 2.2em; /* Tamanho do emoji/ícone */
    color: #665; /* Cor dos ícones (ajuste se usar Font Awesome) */
    line-height: 1; /* Garante que o emoji fique centralizado */
}

/* Se você usar Font Awesome, descomente e ajuste o estilo para os ícones: */
/* .category-icon-wrapper i {
    font-size: 2em;
    color: #666;
} */

.category-name {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.product-count {
    font-size: 0.9em;
    color: #888; /* Cor mais clara para a contagem de produtos */
    margin: 0;
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(
            auto-fit,
            minmax(130px, 1fr)
        ); /* Reduz o min-width dos cards */
        gap: 15px;
    }

    .section-title {
        font-size: 1.5em;
    }

    .view-all-link {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 15px;
        margin: 20px auto;
    }

    .categories-grid {
        grid-template-columns: repeat(
            auto-fit,
            minmax(100px, 1fr)
        ); /* Ainda menores para telas pequenas */
        gap: 10px;
    }

    .category-card {
        padding: 20px 10px;
    }

    .category-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .icon-placeholder {
        font-size: 1.8em;
    }

    .category-name {
        font-size: 1em;
    }

    .product-count {
        font-size: 0.8em;
    }
}
/* ----------------------------------- */
/* Featured Products Section */
.featured-products-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 8px;
}

.section-header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px; /* For the slight line under "Produtos em Destaque" */
    border-bottom: 1px solid #eee; /* The subtle line */
}

.section-header h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
}

.view-all {
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: gold; /* Darker blue on hover */
}

.view-all .arrow-right {
    margin-left: 5px;
    font-weight: bold;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(250px, 1fr)
    ); /* Responsive grid */
    gap: 25px;
    justify-content: center; /* Center items if grid doesn't fill entire width */
}

/* Product Card Styling */
.product-card {
    border-radius: 8px;
    overflow: hidden; /* Ensures discount badge is clipped properly */
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation for hover */
}

.product-card:hover {
    transform: translateY(-5px); /* Lift effect */
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    z-index: 2; /* Above image */
}

.product-image-wrapper {
    width: 100%;
    padding-top: 100%; /* Creates a square aspect ratio */
    position: relative;
    overflow: hidden;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 1000%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: transform 0.5s ease; /* Animation for image zoom on hover */
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.product-details {
    padding: 15px;
    flex-grow: 1; /* Allows details to take available space */
}

.category {
    font-size: 0.85em;
    color: #665;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 2.6em; /* Ensure consistent height for titles across cards */
    overflow: hidden; /* Hide overflow if text is too long */
    text-overflow: ellipsis; /* Add ellipsis for long titles */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
}

.prices {
    margin-top: 10px;
    display: flex;
    flex-direction: column; /* Stack prices vertically */
    align-items: flex-start;
}

.old-price {
    font-size: 0.9em;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.current-price {
    font-size: 1.25em;
    font-weight: bold;
    color: #333; /* Darker color for current price */
}

.add-to-cart {
    padding: 10px 15px 15px;
    text-align: right;
    border-top: 1px solid #eee;
}

.cart-button {
    border: 1px solid #ddd;
    border-radius: 50%; /* Make it round */
    width: 40px;
    height: 40px;
    display: inline-flex; /* Use flex to center the icon */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease,
        transform 0.2s ease;
}

.cart-button:hover {
    transform: scale(1.05); /* Slight bounce effect */
}

.cart-icon {
    width: 20px; /* Size of the SVG icon */
    height: 20px;
    fill: #555; /* Color of the SVG icon */
    transition: fill 0.3s ease;
}

.cart-button:hover .cart-icon {
    fill: #333; /* Darker icon on hover */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 20px;
    }
    .section-header h2 {
        margin-bottom: 10px;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    .product-card {
        margin: 0 auto; /* Center cards if they don't fill a row */
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 20px;
    }
    .product-card {
        max-width: 300px; /* Limit width of single column cards */
        margin: 0 auto;
    }
    .section-header h2 {
        font-size: 1.5em;
    }
}
/* ------------------------------------- */
/* Estilos para a seção principal da promoção */
.special-promotion-section {
    position: relative; /* FUNDAMENTAL: Define o contexto de posicionamento para os filhos */
    width: 100%;
    max-width: 1159px; /* Largura máxima da sua seção de promoção */
    margin: 50px auto; /* Centraliza a seção na página e adiciona margem superior/inferior */
    height: 400px; /* Altura da seção. Ajuste conforme a imagem e o conteúdo */
    overflow: hidden; /* Garante que nada saia dos limites, útil para a imagem */
    border-radius: 10px; /* Borda arredondada para a seção */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */

    /* Usamos flexbox para centralizar o promotion-overlay, se a imagem fosse um background-image */
    /* Mas com a imagem dentro de um contêiner, vamos ajustar o positioning do overlay */
    display: flex; /* Para centralizar o overlay */
    align-items: center; /* Centraliza verticalmente o overlay */
    justify-content: center; /* Centraliza horizontalmente o overlay */
}

/* Contêiner da imagem para ocupar todo o espaço e ser o "fundo" */
.promotion-image-container {
    position: absolute; /* Posiciona a imagem em relação ao .special-promotion-section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Coloca a imagem na camada de baixo */
}

.promotion-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem cobrir todo o contêiner, cortando se necessário */
    object-position: center; /* Centraliza a imagem no contêiner */
    filter: brightness(
        0.6
    ); /* Escurece a imagem para melhorar a legibilidade do texto (ajuste o valor se quiser mais ou menos escuro) */
    display: block; /* Remove possíveis espaços em branco abaixo da imagem */
}

/* Estilos para a camada de texto (overlay) */
.promotion-overlay {
    position: relative; /* Relativo ao seu pai (.special-promotion-section), mas acima da imagem */
    z-index: 2; /* Coloca o texto na camada de cima */
    text-align: center; /* Centraliza o texto */
    color: white; /* Cor do texto para contraste */
    padding: 20px;
    background-color: rgba(
        0,
        0,
        0,
        0.3
    ); /* Um fundo semi-transparente para o texto para maior legibilidade */
    border-radius: 8px; /* Bordas arredondadas para o fundo do texto */
}

.promotion-title {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Sombra para o título */
}

.promotion-text {
    font-size: 1.2em;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Sombra para o parágrafo */
}

/* Estilos para o botão "Ver Ofertas" */
.btn-offers {
    display: inline-block; /* Para que o padding e margin funcionem corretamente */
    background-color: #ff5722; /* Laranja vibrante para o botão */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    text-decoration: none; /* Remove sublinhado do link */
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-offers:hover {
    background-color: #e64a19; /* Laranja mais escuro no hover */
    transform: translateY(-2px); /* Pequeno efeito de elevação no hover */
}
/* ----------------------- */
/* Partner Stores Section */
.partner-stores-section {
    max-width: 1200px;
    margin: 60px auto; /* Margin above and below */
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
}
.partner-text {
    color: #222;
    list-style: none;
    padding-top: 0.2em;
}
.partner-texte {
    text-decoration: none;
    color: #000;
}
.romeu {
    display: flex;
    justify-content: space-around;
}

.section-title {
    font-size: 2em;
    margin-bottom: 40px;
    color: #222;
    font-weight: 600;
}
.title-paragrafo {
    color: #222;
}
.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(190px, 3fr)
    ); /* Responsive grid for logos */
    gap: 50px; /* Space between logos */
    justify-content: center; /* Center logos if they don't fill the row */
    align-items: center; /* Align logos vertically */
}

.partner-logo {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex; /* For centering the image */
    justify-content: center;
    align-items: center;
    background-color: #fcfcfc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100px; /* Ensure a minimum height for all logo boxes */
}

.partner-logo:hover {
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
}
.partner-log {
    width: 1200px;
    background-color: #222;
}
.partner-logo img {
    max-width: 80%; /* Ensure logos fit within their container */
    max-height: 70px; /* Limit height to prevent large logos */
    height: auto;
}

.partner-logo:hover img {
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1; /* Fully opaque on hover */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .promotion-overlay {
        margin-left: 5%;
        max-width: 90%;
        text-align: center;
        margin-right: 5%; /* For centering on smaller screens */
    }
    .special-promotion-section {
        padding: 60px 0;
    }
    .promotion-title {
        font-size: 2em;
    }
    .promotion-text {
        font-size: 1em;
    }

    .partner-stores-section {
        margin: 40px auto;
        padding: 30px 15px;
    }
    .section-title {
        font-size: 1.7em;
        margin-bottom: 30px;
    }
    .partner-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    .partner-logo {
        min-height: 80px;
    }
    .partner-logo img {
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .special-promotion-section {
        padding: 50px 0;
    }
    .promotion-overlay {
        margin: 0 auto; /* Center text box */
        padding: 15px;
    }
    .promotion-title {
        font-size: 1.8em;
    }
    .promotion-text {
        font-size: 0.9em;
    }

    .partner-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    .partner-logo {
        min-height: 70px;
    }
    .partner-logo img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .special-promotion-section {
        min-height: 300px;
        padding: 40px 0;
    }
    .promotion-title {
        font-size: 1.5em;
    }
    .promotion-text {
        font-size: 0.85em;
    }
    .btn-offers {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .section-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }
    .partner-logos-grid {
        grid-template-columns: repeat(
            2,
            1fr
        ); /* 2 columns on very small screens */
        gap: 10px;
    }
    .partner-logo {
        min-height: 60px;
    }

    .partner-log {
        min-height: 60px;
        background-color: #222;
    }
    .partner-logo img {
        max-height: 40px;
    }
}
.new-arrivals-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 8px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.section-header h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
}

.view-all {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #0056b3;
}

.view-all .arrow-right {
    margin-left: 5px;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(250px, 1fr)
    ); /* Responsive grid */
    gap: 25px;
    justify-content: center;
}

/* Product Card Styling (similar to previous product grid) */
.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Stronger shadow */
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c; /* Red color for discount */
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    z-index: 2;
}

.product-image-wrapper {
    width: 100%;
    padding-top: 100%; /* Creates a square aspect ratio */
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.product-details {
    padding: 15px;
    flex-grow: 1;
}

.category {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 2.6em; /* Ensure consistent height for titles across cards */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
}

.prices {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.old-price {
    font-size: 0.9em;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.current-price {
    font-size: 1.25em;
    font-weight: bold;
    color: #333;
}

.add-to-cart {
    padding: 10px 15px 15px;
    text-align: right;
    border-top: 1px solid #eee;
}

.cart-button {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease,
        transform 0.2s ease;
}

.cart-button:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
    transform: scale(1.05);
}

.cart-button .fas {
    /* Styling for Font Awesome icon */
    font-size: 1.2em;
    color: #555;
    transition: color 0.3s ease;
}

.cart-button:hover .fas {
    color: #333;
}

/* Footer Styling */
.site-footer {
    background-color: #222; /* Dark background as in image */
    color: #bbb; /* Light grey text */
    padding: 50px 20px 20px;
    font-size: 0.95em;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(200px, 1fr)
    ); /* Responsive columns */
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444; /* Separator line */
}

.footer-column {
    padding: 10px 0;
}

.footer-logo {
    font-weight: bold;
    font-size: 1.6em;
    color: #fff; /* White logo text */
    margin-bottom: 15px;
}

.about-us p {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #bbb;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff; /* White on hover */
}

.footer-column h3 {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact p .fas {
    margin-right: 10px;
    color: #ffaa00; /* Orange icon color */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85em;
    color: #888;
}

/* Responsive Adjustments for Product Grid (similar to previous section) */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    .section-header h2 {
        margin-bottom: 10px;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    .product-card {
        margin: 0 auto;
    }
    .footer-container {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        text-align: center;
    }
    .footer-column {
        padding: 15px 0;
        border-bottom: 1px solid #444; /* Add border for separation */
    }
    .footer-column:last-child {
        border-bottom: none; /* No border for the last column */
    }
    .social-icons {
        justify-content: center;
    }
    .contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-card {
        max-width: 250px;
    }
    .section-header h2 {
        font-size: 1.5em;
    }
    .site-footer {
        padding: 30px 15px 15px;
    }
    .footer-logo {
        font-size: 1.4em;
    }
    .footer-column h3 {
        font-size: 1.1em;
    }
    .footer-column ul li a,
    .contact p {
        font-size: 0.85em;
    }
}
