@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --purple: #9f55f7;
    --purple-dark: #7e22ce;
    --dark: #0a0a0c;
    --gray: #1a1a1c;
    --text-gray: #a0a3af;
    --text-light: #f0f0f0;
    --green: #4ade80;
}

body {
    background-color: var(--dark);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Conteneur principal du fond */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505; /* Noir profond du site */
    z-index: -1;
    overflow: hidden;
}

/* Style de base des tâches (blobs) */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--purple);
    filter: blur(120px); /* L'effet de flou crucial */
    border-radius: 50%;
    opacity: 0.15; /* Très léger pour ne pas gêner la lecture */
}

/* Positionnement et animation des différentes tâches */
.blob-1 {
    top: -100px;
    right: 10%;
    width: 500px;
    height: 500px;
    animation: move1 25s infinite alternate;
}

.blob-2 {
    top: 40%;
    left: -150px;
    background: #7d2ae8;
    animation: move2 30s infinite alternate;
}

.blob-3 {
    bottom: -100px;
    right: 5%;
    width: 450px;
    height: 450px;
    animation: move3 22s infinite alternate;
}

@keyframes move1 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(80px, -40px) scale(1.1) rotate(90deg); }
}

@keyframes move2 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-60px, 80px) scale(0.9) rotate(-45deg); }
}

@keyframes move3 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, -20px) scale(1.2) rotate(45deg); }
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */ /* Commenting out shadow to make it cleaner */
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 8%;
    max-width: 1200px; 
    margin: 0 auto;
    position: relative;
    gap: 1rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-decoration: none;
    color: white;
}

.logo span {
    color: var(--purple);
}

.nav-links {
    display: flex;
    align-items: center;
    position: relative; /* For the bubble */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-bubble {
    position: absolute;
    background: var(--purple);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
    opacity: 0;
    box-shadow: 0 0 20px rgba(159, 85, 247, 0.5);
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative; /* To be on top of the bubble */
    z-index: 1;
}

.nav-links a:hover {
    color: var(--text-light);
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin: 0.2em 0;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 50%, var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.badge {
    background: rgba(74, 222, 128, 0.1);
    color: var(--green);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeIn 1s ease-out;
}

.cta-group {
    display: flex;
    gap: 15px;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.btn {
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--purple);
    color: white;
    box-shadow: 0 0 25px rgba(159, 85, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(159, 85, 247, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.dash-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}


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

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: rgba(10, 10, 12, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        overflow: hidden;
    }

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

    .nav-links {
        position: static;
        transform: none;
        flex-direction: column;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 10px;
    }

    .nav-links a {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .btn.dash-nav {
        width: calc(100% - 40px);
        margin: 20px;
        text-align: center;
    }

    .hero {
        padding: 0 10%;
    }

    h1 {
        font-size: 2.8rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }
    
}

@media (max-width: 480px) {
    nav {
    padding: 10px 5%;
    }

    .nav-links a {
        padding: 8px 10px;
       
        font-size: 0.85rem;
    }
    .btn.dash-nav {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .detail-view {
        padding: 30px 5%;
    }

    .p-title {
        font-size: 2rem; 
    }

    .detail-layout .thumbs {
        grid-template-columns: repeat(2, 1fr); 
    }
}


.products-section {
    padding: 60px 8%;
    text-align: center;
}

.search-container {
    margin-bottom: 20px;
}

.search-badge {
    background: rgba(159, 85, 247, 0.1);
    color: var(--purple);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.products-section h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
}


.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active, .tab:hover {
    background: var(--purple);
    color: white;
}


.payment-alert {
    background: rgba(159, 85, 247, 0.05);
    border: 1px solid rgba(159, 85, 247, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: left;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.alert-content i {
    color: var(--purple);
}

.btn-discord-small {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}


.category-title {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 30px;
}


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

.product-grid a { /* Ensure links within product cards are not blue */
    color: var(--text-light);
}

.product-card {
    background: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}



.card-image img {
    width: 100%;
    height: auto; /* Set a fixed height for the image container */
    object-fit: cover; /* Ensure the image covers the area, potentially cropping */
    display: block;
}

.card-info {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d0d0f;
}

.card-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: var(--green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--green);
}

/* Valorant-Elevate.html specific styles */

.detail-view {
    padding: 60px 8%;
}

.detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.p-title {
    font-size: 3rem;
    margin: 10px 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Réduction de la taille de l'image principale */
.gallery .main-img {
    max-width: 450px; /* Ajustez cette valeur selon vos besoins */
    margin: 0 auto;
}

.gallery .main-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.gallery .thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
    justify-content: center; /* Center grid tracks */
    align-items: center; /* Center items vertically */
}

/* Taille normale des miniatures */
.gallery .thumbs img {
    width: 100%; /* Make image responsive within its grid cell */
    height: auto; /* Maintain aspect ratio */
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    border: 2px solid transparent;
}

.gallery .thumbs img:hover {
    transform: scale(1.1);
    border-color: rgba(159, 85, 247, 0.5);
}

.gallery .thumbs img.active {
    transform: scale(1.2);
    border-color: var(--purple);
    box-shadow: 0 0 15px rgba(159, 85, 247, 0.5);
}



.btn-video {
    width: 100%;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
}

.purchase-box {
    background: var(--gray);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plans .plan {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

.plans .plan:last-child {
    border-bottom: none;
}

.plans .plan.selected {
    color: var(--text-light);
    font-weight: 600;
}

.plans .plan strong {
    color: white;
}

.btn-buy {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: var(--purple);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
}

/* Featured Section */
.featured-section {
    padding: 80px 10%;
    text-align: center;
}
.badge-mini {
    background: rgba(159, 85, 247, 0.2);
    color: var(--purple);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.featured-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.f-card {
    background: #0f0f12;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s; 
}

.f-card:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
}

.f-card-img {
    padding: 40px;
    background: radial-gradient(circle, rgba(159,85,247,0.15) 0%, transparent 70%);
}

.f-card-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.f-card-content {
    padding: 25px;
    background: #0d0d0f;
    text-align: left;
}

.f-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.f-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

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

.price-tag {
    color: var(--text-gray);
    font-size: 0.9rem;
}
.price-tag strong { 
    color: white;
    background: rgba(255,255,255,0.05);
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 5px;
}

.btn-buy-now {
    background: #1a1a1c;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.btn-buy-now:hover {
    background: var(--purple);
    border-color: var(--purple);
}

.btn-all-products {
    display: inline-block;
    margin-top: 50px;
    background: var(--purple);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(159, 85, 247, 0.3);
}


.scroll-down-arrow {
    position: absolute;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%);
    color: white; 
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 10;
    text-decoration: none; 
}

.scroll-down-arrow:hover {
    color: var(--purple); 
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Video Modal */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  position: relative;
  background-color: #0d0d0d;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
}

.close {
  color: #aaa;
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}


.modal-content-img {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-img {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  z-index: 1001;
}

.close-img:hover,
.close-img:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#payment-page-wrapper {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
}

#payment-page-wrapper .container {
    max-width: 900px;
    width: 100%;
}

#payment-page-wrapper .badge {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid blueviolet;
    color: blueviolet;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto 15px;
}

#payment-page-wrapper h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#payment-page-wrapper .subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 50px;
}

#payment-page-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #eee;
}

#payment-page-wrapper .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

#payment-page-wrapper .card {
    background: white;
    width: 65px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#payment-page-wrapper .card:hover {
    transform: scale(1.05)
 }

#payment-page-wrapper .card img {
    max-width: 80%;
    max-height: 80%;
}


#payment-page-wrapper .card.amex {
    background: #007bc1;
}

#payment-page-wrapper .card.diners {
    background: #004a97;
}
#payment-page-wrapper .card.dark {
    background: #000;
    border: 1px solid #333;
}

#payment-page-wrapper .card.paysafe { 
    background: #00abe7;
}

#payment-page-wrapper .card.cashapp {
    background: #00d632;
}

#payment-page-wrapper .card.dark img {
    filter: invert(1) brightness(2);
}


.container { 
    max-width: 800px; 
    margin: 4rem auto; 
    padding: 0 1rem; 
}

.faq-header { 
    text-align: center; 
    margin-bottom: 3rem; 
}

.faq-header span { 
    color: var(--purple); 
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--gray);
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--purple);
}

.faq-question { 
    display: flex; 
    justify-content: space-between; 
    padding: 1.5rem; 
    align-items: center; 
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--purple);
    transition: transform 0.3s ease;
}

.faq-answer { 
    padding: 0 1.5rem; 
    max-height: 0; 
    transition: all 0.4s ease; 
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* État actif pour le JS */
.faq-item.active {
    border-color: var(--purple);
    background: rgba(159, 85, 247, 0.05);
}

.faq-item.active .faq-answer { 
    padding-bottom: 1.5rem; 
    max-height: 500px; /* Augmenté pour éviter que le texte soit coupé */
    opacity: 1;
}

.faq-item.active i { 
    transform: rotate(180deg); 
}

.main-footer {
    background: transparent;
    padding: 4rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo span { color: var(--purple); }

.footer-info p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badges span {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
}

.badge-green { color: #2ecc71; border: 1px solid rgba(46, 204, 113, 0.2); }
.badge-blue { color: #3498db; border: 1px solid rgba(52, 152, 219, 0.2); }
.badge-yellow { color: #f1c40f; border: 1px solid rgba(241, 196, 15, 0.2); }

.footer-links {
    display: flex;
    justify-content: space-between;
}

.link-group h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.link-group ul { list-style: none; }

.link-group ul li { margin-bottom: 0.6rem; }

.link-group ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.link-group ul li a:hover { color: var(--purple); }

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.status-online { color: #2ecc71; font-weight: bold; }

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

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}


@media (max-width: 768px) {
    .products-section {
        padding: 40px 5%;
    }

    .payment-alert {
        flex-direction: column;
        gap: 15px;
    }

    .btn-discord-small {
        width: 100%;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info, .footer-links {
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .link-group ul {
        padding: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

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

    .category-title {
        font-size: 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card-info h4 {
        font-size: 0.9rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}